* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
  /* RICH DARK PURPLE GRADIENT BACKGROUND */
  background: linear-gradient(135deg, #0b0712 0%, #150a22 40%, #0b0712 100%);
  background-attachment: fixed;
  color: #f0f0f0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Purple glow effects on top of the background */
body::before {
  content: '';
  position: fixed;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle 800px at 20% 30%, rgba(180, 80, 255, 0.15), transparent 100%),
              radial-gradient(circle 600px at 80% 70%, rgba(180, 80, 255, 0.10), transparent 100%),
              radial-gradient(circle 700px at 50% 80%, rgba(120, 20, 200, 0.10), transparent 100%);
  animation: moveGlows 18.8s linear infinite alternate;
  z-index: -1;
  pointer-events: none;
}

@keyframes moveGlows {
  0% { transform: translate(0%, 0%) scale(1); }
  25% { transform: translate(-5%, -5%) scale(1.1); }
  50% { transform: translate(5%, -10%) scale(0.9); }
  75% { transform: translate(-10%, 5%) scale(1.05); }
  100% { transform: translate(0%, 0%) scale(1); }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; margin-top: 10px; }

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.navbar { animation: fadeInDown 0.6s ease-out; }
.hero h1 { animation: fadeInUp 0.8s ease-out; }
.hero .subtitle { animation: fadeInUp 0.8s ease-out 0.2s both; }
.hero p { animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero-actions { animation: fadeInUp 0.8s ease-out 0.4s both; }

/* Thinner Floating Header */
.navbar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  padding: 0.5rem 1.8rem; 
  margin: 1rem 0; 
  border-radius: 60px;
  border: 1px solid rgba(120, 20, 200, 0.4); 
  gap: 1rem;
  background: rgba(10, 0, 20, 0.85); 
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  animation: fadeInDown 0.6s ease-out;
}
.logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.6rem; font-weight: 800; text-decoration: none; }
.logo i { color: #c084fc; font-size: 2rem; }
.nav-links { display: flex; gap: 1.5rem; font-weight: 600; flex-wrap: wrap; }
.nav-links a {
  color: #d1d5db; text-decoration: none; transition: 0.3s ease;
  padding: 0.2rem 0; border-bottom: 2px solid transparent; display: flex; align-items: center; font-size: 0.95rem;
}
.nav-links a:hover { color: #c084fc; border-bottom-color: #c084fc; }
.nav-links a i { margin-right: 6px; }

.btn { 
  display: inline-block; padding: 0.4rem 1.6rem; border-radius: 40px; font-weight: 700; 
  color: white; text-decoration: none; border: none; cursor: pointer; 
  background: #7c3aed; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3); 
  font-size: 0.95rem;
}
.btn:hover { background: #a855f7; transform: scale(1.05); }
.btn-outline {
  border: 2px solid #c084fc; color: #c084fc; background: transparent;
}
.btn-outline:hover { background: #c084fc; color: #0b0d15; }

.glow-text, .logo span, .server-ip .ip, .stat-item .number, .section-title span, .hero h1 {
  background: linear-gradient(135deg, #c084fc, #7c3aed, #c084fc);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

/* Thinner Footer */
footer { margin-top: auto; background: rgba(10, 0, 20, 0.9); backdrop-filter: blur(10px); padding: 1.2rem 0; border-top: 1px solid #2a1e30; }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; color: #7c879b; font-size: 0.9rem; }
.footer-content .socials { display: flex; gap: 1.5rem; font-size: 1.3rem; }
.footer-content .socials a { color: #7c879b; transition: 0.3s ease; }
.footer-content .socials a:hover { color: #c084fc; transform: scale(1.1) rotate(5deg); }
.footer-content .copy span { color: #7c3aed; }

/* Stats & Cards */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 2rem 0;
  background: rgba(20, 20, 30, 0.7); backdrop-filter: blur(10px);
  padding: 1.5rem 1rem; border-radius: 40px; border: 1px solid #2a1e30;
}
.stat-item { text-align: center; }
.stat-item i { font-size: 2rem; color: #c084fc; margin-bottom: 0.2rem; }
.stat-item .number { font-size: 1.8rem; font-weight: 800; }
.stat-item .label { color: #9ba3b3; font-weight: 500; text-transform: uppercase; font-size: 0.75rem; }

.section-title { font-size: 2.5rem; font-weight: 800; margin: 2rem 0 1.5rem; text-align: center; }

.feature-card {
  background: rgba(20, 20, 30, 0.7); backdrop-filter: blur(10px);
  padding: 1.5rem; border-radius: 30px; border: 1px solid #2a1e30;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card:hover { transform: translateY(-8px); border-color: #c084fc; box-shadow: 0 15px 30px -10px rgba(124, 58, 237, 0.4); }
.feature-card i { font-size: 2.2rem; color: #c084fc; margin-bottom: 0.6rem; }
.feature-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; }
.feature-card p { color: #a4adb9; font-size: 0.95rem; }

.pvp-card {
  background: rgba(17, 17, 25, 0.7); backdrop-filter: blur(10px); border-radius: 30px;
  padding: 1.5rem; flex: 1 1 220px; border: 1px solid #2a1e30; text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pvp-card:hover { transform: translateY(-8px); border-color: #c084fc; box-shadow: 0 15px 30px -10px rgba(124, 58, 237, 0.4); }
.pvp-card i { font-size: 2.5rem; color: #7c3aed; }
.pvp-card h4 { font-size: 1.3rem; margin: 0.3rem 0; }
.pvp-card .small-text { color: #919db0; font-size: 0.9rem; }

@media (max-width: 750px) { .navbar { flex-direction: column; gap: 0.8rem; padding: 1rem; } .stats-grid { grid-template-columns: repeat(2, 1fr); } }
