
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0a;
  overflow-x: hidden;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b5cf6, #a855f7, #c084fc, transparent);
  opacity: 0.7;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #8b5cf6;
  position: relative;
}

.nav-logo svg {
  color: #8b5cf6;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.nav-logo:hover svg {
  transform: rotate(360deg) scale(1.1);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-links a:hover {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-2px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 80%;
}

.nav-cta {
  background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
  background-size: 200% 200%;
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  color: white !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
  animation: gradientShift 3s ease-in-out infinite;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
  background-position: 100% 100%;
}

.nav-cta::after {
  display: none;
}


.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #8b5cf6;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(196, 132, 252, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(139, 92, 246, 0.03) 2px,
      rgba(139, 92, 246, 0.03) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(139, 92, 246, 0.03) 2px,
      rgba(139, 92, 246, 0.03) 4px
    );
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(4px, 4px); }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  animation: float 8s ease-in-out infinite;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(196, 132, 252, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(1deg);
  }
  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  text-align: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc, #e879f9);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 300%;
  animation: gradientShift 4s ease-in-out infinite;
  position: relative;
}

.text-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.3));
  filter: blur(20px);
  z-index: -1;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes glow {
  from {
    opacity: 0.5;
    transform: scale(0.8);
  }
  to {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

.hero-description {
  font-size: 1.25rem;
  color: #d1d5db;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary::before, .btn-secondary::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.6s;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
  background-size: 200% 200%;
  color: white;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  animation: gradientShift 3s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
  background-position: 100% 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(139, 92, 246, 0.5);
  backdrop-filter: blur(15px);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: #8b5cf6;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3);
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.stat {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #a855f7, #c084fc);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.stat:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.stat-label {
  color: #d1d5db;
  font-weight: 600;
  font-size: 1.1rem;
}

.about, .community-info, .team, .leaderboard, .reviews, .faq {
  padding: 8rem 0;
  position: relative;
}

.about {
  background: 
    radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.community-info {
  background: 
    radial-gradient(circle at 70% 30%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #111111 0%, #1a1a2e 50%, #111111 100%);
}

.team {
  background: 
    radial-gradient(circle at 20% 80%, rgba(196, 132, 252, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #111111 100%);
}

.leaderboard {
  background: 
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #111111 0%, #1a1a2e 50%, #16213e 100%);
}

.reviews {
  background: 
    radial-gradient(circle at 50% 50%, rgba(196, 132, 252, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #16213e 0%, #111111 50%, #0a0a0a 100%);
}

.faq {
  background: 
    radial-gradient(circle at 40% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.section-header::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #a855f7, #c084fc);
  border-radius: 2px;
}

.section-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #d1d5db, #8b5cf6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.2rem;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b5cf6, #a855f7, #c084fc, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
}

.feature-card:hover::before,
.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
  border-radius: 24px;
  margin-bottom: 2rem;
  color: white;
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 45px rgba(139, 92, 246, 0.6);
}

.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.feature-card p {
  color: #d1d5db;
  line-height: 1.7;
  font-size: 1.05rem;
}


.community-content {
  max-width: 1000px;
  margin: 0 auto;
}

.info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
  transform: translateY(-5px);
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-header svg {
  color: #8b5cf6;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.info-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.info-card p {
  color: #d1d5db;
  font-size: 1.1rem;
  line-height: 1.7;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
}

.activity-item svg {
  color: #8b5cf6;
  flex-shrink: 0;
}

.activity-item span {
  color: #ffffff;
  font-weight: 600;
}

.goal-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
  border: 2px solid rgba(139, 92, 246, 0.4);
}

.goal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.goal-header h3 {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.goal-progress {
  margin-bottom: 1.5rem;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #a855f7, #c084fc);
  border-radius: 6px;
  position: relative;
  animation: progressGlow 2s ease-in-out infinite alternate;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressGlow {
  from { box-shadow: 0 0 10px rgba(139, 92, 246, 0.5); }
  to { box-shadow: 0 0 20px rgba(139, 92, 246, 0.8); }
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-text {
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #8b5cf6;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.team-container {
  display: flex;
  justify-content: center;  
  gap: 3rem;                
  padding: 2rem 0;
  flex-wrap: nowrap;        
  overflow-x: auto;         
}


.team-card {
  position: relative;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 1rem;
  padding: 2.5rem 2rem;     
  width: 350px;            
  min-width: 350px;         
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); 
  transition: all 0.3s ease;
  flex-shrink: 0;          
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }


.team-card.owner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff0004, #ff4757, #ff0004);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card.owner:hover {
  background: rgba(255, 0, 4, 0.1);
  border-color: rgba(255, 0, 4, 0.6);
  box-shadow: 0 35px 70px rgba(255, 0, 4, 0.4);
}

.team-card.owner .team-avatar img {
  border: 4px solid #ff0004;
  box-shadow: 0 18px 40px rgba(255, 0, 4, 0.5);
}

.team-card.owner .team-role {
  color: #ff4757;
  text-shadow: 0 0 22px rgba(255, 0, 4, 0.6);
}

.team-card.admin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1700ff, #3742fa, #1700ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}



.team-card.admin:hover {
  background: rgba(23, 0, 255, 0.1);
  border-color: rgba(23, 0, 255, 0.6);
  box-shadow: 0 35px 70px rgba(23, 0, 255, 0.4);
}

.team-card.admin .team-avatar img {
  border: 4px solid #1700ff;
  box-shadow: 0 18px 40px rgba(23, 0, 255, 0.5);
}

.team-card.admin .team-role {
  color: #3742fa;
  text-shadow: 0 0 22px rgba(23, 0, 255, 0.6);
}


.team-card:hover::before {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-15px) scale(1.05);
}

.team-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin-bottom: 2.5rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team-avatar::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.15);
}

.team-card:hover .team-avatar::after {
  opacity: 1;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.team-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.team-role {
  font-weight: 700;
  margin-bottom: 1.75rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.team-description {
  color: #d1d5db;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.team-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.4);
}

.stat-item .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #8b5cf6;
  margin-bottom: 0.25rem;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: #9ca3af;
}

.leaderboard-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  color: #d1d5db;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tab-btn:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.5);
  color: #8b5cf6;
}

.tab-btn.active {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-color: #8b5cf6;
  color: white;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.leaderboard-content {
  position: relative;
  min-height: 400px;
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.tab-content.active {
  display: block;
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.leaderboard-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.leaderboard-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.leaderboard-item:hover {
  transform: translateX(10px);
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

.leaderboard-item:hover::before {
  opacity: 1;
}

.rank-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.rank-1 .rank-badge {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.rank-2 .rank-badge {
  background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
  color: #000;
  box-shadow: 0 10px 30px rgba(192, 192, 192, 0.5);
}

.rank-3 .rank-badge {
  background: linear-gradient(135deg, #cd7f32, #daa520);
  color: #000;
  box-shadow: 0 10px 30px rgba(205, 127, 50, 0.5);
}

.rank-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.2);
  border: 2px solid #8b5cf6;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.2rem;
  color: #8b5cf6;
}

.player-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(139, 92, 246, 0.5);
  transition: all 0.3s ease;
}

.player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leaderboard-item:hover .player-avatar {
  border-color: #8b5cf6;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.5);
}

.player-info {
  flex: 1;
}

.player-info h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.player-info p {
  color: #9ca3af;
  font-size: 1rem;
}

.player-stats {
  text-align: right;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: #9ca3af;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b5cf6, #a855f7, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
}

.review-card:hover::before {
  opacity: 1;
}

.review-stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: #fbbf24;
}

.review-stars svg {
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
  transition: all 0.2s ease;
}

.review-card:hover .review-stars svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.8));
}

.review-text {
  color: #e5e7eb;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-style: italic;
  position: relative;
}

.review-text::before,
.review-text::after {
  content: '"';
  font-size: 3rem;
  color: #8b5cf6;
  position: absolute;
  opacity: 0.3;
}

.review-text::before {
  top: -20px;
  left: -10px;
}

.review-text::after {
  bottom: -40px;
  right: -10px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(139, 92, 246, 0.5);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card:hover .author-avatar {
  border-color: #8b5cf6;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.author-name {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.author-role {
  color: #9ca3af;
  font-size: 0.95rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-category h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.faq-category h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
  border-radius: 2px;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-question:hover {
  background: rgba(139, 92, 246, 0.1);
}

.faq-question svg:first-child {
  color: #8b5cf6;
  flex-shrink: 0;
}

.faq-question span {
  flex: 1;
  font-weight: 600;
  color: #ffffff;
  font-size: 1.1rem;
}

.faq-question .chevron {
  color: #9ca3af;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question .chevron {
  transform: rotate(180deg);
  color: #8b5cf6;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(139, 92, 246, 0.05);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 1rem;
}

.cta {
  padding: 8rem 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
  animation: float 10s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #8b5cf6, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.cta p {
  font-size: 1.3rem;
  color: #d1d5db;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(139, 92, 246, 0.3);
  padding: 4rem 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b5cf6, #a855f7, #c084fc, transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #8b5cf6;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo svg {
  color: #8b5cf6;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.footer-text {
  color: #9ca3af;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .features-grid, .team-grid, .reviews-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card, .team-card, .review-card {
    margin: 0 auto;
    max-width: 420px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about, .community-info, .team, .leaderboard, .reviews, .faq, .cta {
    padding: 5rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .leaderboard-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .player-stats {
    text-align: center;
  }
  
  .activities-grid {
    grid-template-columns: 1fr;
  }
  
  .team-stats {
    grid-template-columns: 1fr;
  }
  
  .leaderboard-tabs {
    gap: 0.5rem;
  }
  
  .tab-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .feature-card, .team-card, .review-card, .info-card {
    padding: 2rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .leaderboard-item {
    padding: 1.5rem;
  }
  
  .team-avatar {
    width: 100px;
    height: 100px;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.bounce {
  animation: bounce 2s infinite;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 6px;
  border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #a855f7, #c084fc);
}

a:focus, button:focus {
  outline: 3px solid #8b5cf6;
  outline-offset: 3px;
  border-radius: 8px;
}

a:focus-visible, button:focus-visible {
  outline: 3px solid #8b5cf6;
  outline-offset: 3px;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.hero-title:hover .text-gradient {
  animation-duration: 1s;
}

.stat:hover .stat-number {
  animation: bounce 1s ease-in-out;
}

.feature-icon:hover {
  animation: bounce 0.6s ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.8));
  pointer-events: none;
}

.about::before,
.community-info::before,
.team::before,
.leaderboard::before,
.reviews::before,
.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

h1, h2, h3 {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.team-card:hover h3 {
  color: #8b5cf6;
  transition: color 0.3s ease;
}

.review-stars svg:nth-child(1) { animation-delay: 0.1s; }
.review-stars svg:nth-child(2) { animation-delay: 0.2s; }
.review-stars svg:nth-child(3) { animation-delay: 0.3s; }
.review-stars svg:nth-child(4) { animation-delay: 0.4s; }
.review-stars svg:nth-child(5) { animation-delay: 0.5s; }

.review-card:hover .review-stars svg {
  animation: bounce 0.6s ease-in-out both;
}

.leaderboard-item:hover .rank-badge {
  animation: pulse 1s ease-in-out infinite;
}