/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1e90ff;
  --secondary-color: #4169e1;
  --accent-color: #00bfff;
  --dark-bg: #0a0a0f;
  --darker-bg: #050508;
  --card-bg: rgba(30, 144, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
  --gradient-primary: linear-gradient(135deg, #1e90ff 0%, #4169e1 50%, #00bfff 100%);
  --gradient-secondary: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
  --neon-glow: 0 0 20px rgba(30, 144, 255, 0.6);
  --neon-glow-strong: 0 0 40px rgba(30, 144, 255, 0.9);
  --border-glow: 1px solid rgba(30, 144, 255, 0.3);
}

body {
  font-family: "Rajdhani", sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(var(--neon-glow));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  z-index: -2;
}

/* Enhanced Grid Animation */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(30, 144, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 144, 255, 0.15) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
}

/* Pulsing Background Effect */
.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(65, 105, 225, 0.08) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--neon-glow);
}

.floating-particles::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.floating-particles::after {
  top: 60%;
  right: 20%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  text-align: center;
  z-index: 1;
}

.hero-logo img {
  height: 120px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(var(--neon-glow-strong));
  animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from {
    filter: drop-shadow(var(--neon-glow));
  }
  to {
    filter: drop-shadow(var(--neon-glow-strong));
  }
}

.hero-title {
  font-family: "Orbitron", monospace;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  animation: glitch-1 0.5s infinite;
  color: #ff0040;
  z-index: -1;
}

.glitch::after {
  animation: glitch-2 0.5s infinite;
  color: #00ffff;
  z-index: -2;
}

@keyframes glitch-1 {
  0%,
  14%,
  15%,
  49%,
  50%,
  99%,
  100% {
    transform: translate(0);
  }
  15%,
  49% {
    transform: translate(-2px, -1px);
  }
}

@keyframes glitch-2 {
  0%,
  20%,
  21%,
  62%,
  63%,
  99%,
  100% {
    transform: translate(0);
  }
  21%,
  62% {
    transform: translate(2px, 1px);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--neon-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--neon-glow-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.server-ip {
  font-family: "Orbitron", monospace;
  color: var(--text-secondary);
}

.server-ip code {
  background: rgba(0, 212, 255, 0.1);
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--primary-color);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

/* Section Styles */
.section-title {
  font-family: "Orbitron", monospace;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--darker-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: var(--border-glow);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover::before {
  opacity: 0.12;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow-strong), 0 20px 40px rgba(30, 144, 255, 0.2);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: var(--neon-glow);
}

.feature-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 100px 0;
  background: var(--dark-bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.stat-value {
  display: block;
  font-family: "Orbitron", monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-shadow: var(--neon-glow);
}

.stat-desc {
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Rules Section */
.rules {
  padding: 100px 0;
  background: var(--darker-bg);
}

.rules-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.rule-category {
  background: var(--card-bg);
  padding: 40px 35px;
  border-radius: 20px;
  border: var(--border-glow);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.rule-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow);
}

.rule-category h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 15px;
  text-shadow: var(--neon-glow);
}

.rule-item {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(30, 144, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.rule-item:hover {
  background: rgba(30, 144, 255, 0.08);
  transform: translateX(5px);
}

.rule-item h4 {
  font-family: "Orbitron", monospace;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.rule-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.punishment {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 10px;
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.punishment.severe {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Special styling for different rule types */
.warning-item {
  border-left-color: #ffc107;
}

.danger-item {
  border-left-color: #dc3545;
}

.info-item {
  border-left-color: #17a2b8;
}

.blacklisted-words {
  border: 2px solid rgba(220, 53, 69, 0.3);
  background: rgba(220, 53, 69, 0.05);
}

.blacklisted-words h3 {
  color: #dc3545;
}

/* Enhanced Team Section */
.team {
  padding: 100px 0;
  background: var(--dark-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.team-member {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: var(--border-glow);
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.team-member:hover::before {
  opacity: 0.08;
}

.team-member:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow-strong), 0 20px 40px rgba(30, 144, 255, 0.2);
}

.member-avatar {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: white;
  box-shadow: var(--neon-glow);
  transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
  transform: scale(1.1);
  box-shadow: var(--neon-glow-strong);
}

.team-member h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.member-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
  padding: 0 10px;
}

.member-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.discord-profile-btn {
  background: linear-gradient(135deg, #7289da, #5865f2);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(114, 137, 218, 0.3);
  position: relative;
  overflow: hidden;
}

.discord-profile-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.discord-profile-btn:hover::before {
  left: 100%;
}

.discord-profile-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(114, 137, 218, 0.5);
  background: linear-gradient(135deg, #5865f2, #7289da);
}

.discord-profile-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.discord-profile-btn i {
  font-size: 1.1rem;
}

.member-social a {
  color: var(--text-secondary);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 50%;
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid rgba(30, 144, 255, 0.2);
}

.member-social a:hover {
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  background: rgba(30, 144, 255, 0.2);
  border-color: var(--primary-color);
  transform: translateY(-2px) scale(1.1);
}

.celestial-link {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px #00ff88);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.celestial-link:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px #00ff88);
}


/* Team Info Box */
.team-info {
  background: var(--card-bg);
  border-radius: 20px;
  border: var(--border-glow);
  backdrop-filter: blur(15px);
  overflow: hidden;
  position: relative;
}

.team-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.team-info-content {
  padding: 40px;
  text-align: center;
}

.team-info h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.team-info p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.team-stat {
  text-align: center;
  padding: 20px;
  background: rgba(30, 144, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(30, 144, 255, 0.1);
  transition: all 0.3s ease;
}

.team-stat:hover {
  background: rgba(30, 144, 255, 0.08);
  border-color: rgba(30, 144, 255, 0.3);
  transform: translateY(-5px);
}

.team-stat-number {
  display: block;
  font-family: "Orbitron", monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  margin-bottom: 8px;
}

.team-stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--darker-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--neon-glow);
}

.contact-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: var(--neon-glow);
}

.contact-card h3 {
  font-family: "Orbitron", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--darker-bg);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(var(--neon-glow));
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: var(--text-secondary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.footer-bottom p {
  margin-bottom: 5px;
}

/* Server Status Styles */
.server-status {
  margin-top: 20px;
  padding: 15px 25px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.server-status.online {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.server-status.offline {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.status-online {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #28a745;
  font-weight: 600;
}

.status-offline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #dc3545;
  font-weight: 600;
}

.status-online i,
.status-offline i {
  font-size: 0.8rem;
  animation: pulse 2s infinite;
}

.refresh-btn {
  margin-top: 10px;
  font-size: 0.9rem;
  padding: 10px 20px;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    padding: 30px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid,
  .stats-grid,
  .rules-container,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .team-stats {
    grid-template-columns: 1fr;
  }

  .member-social {
    flex-direction: column;
    gap: 10px;
  }

  .discord-profile-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-logo img {
    height: 80px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .feature-card,
  .stat-card,
  .rule-category,
  .team-member,
  .contact-card {
    padding: 30px 20px;
  }

  .team-info-content {
    padding: 30px 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
