.mouse-follower {
  position: fixed;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0.02) 60%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
  transition: transform 0.12s ease-out, opacity 0.3s ease;
  opacity: 0;
  box-shadow: 
    0 0 30px rgba(255, 255, 255, 0.1),
    0 0 60px rgba(255, 255, 255, 0.05),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
}

.mouse-follower.active {
  opacity: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  --dark-bg: #0f0f23;
  --darker-bg: #0a0a1a;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --success-green: #10b981;
  --error-red: #ef4444;
  --gold-primary: #fbbf24;
  --gold-secondary: #f59e0b;
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.background-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, #1a1a3a 0%, var(--dark-bg) 70%);
  z-index: -2;
}

.floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  animation: float 20s infinite linear;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--secondary-gradient);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-gradient);
  top: 60%;
  right: 20%;
  animation-delay: -5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  bottom: 30%;
  left: 70%;
  animation-delay: -10s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: var(--secondary-gradient);
  top: 40%;
  left: 50%;
  animation-delay: -15s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: linear-gradient(145deg, rgba(15, 15, 35, 0.9), rgba(15, 15, 35, 0.7));
  backdrop-filter: blur(25px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
      0 4px 24px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 2rem 0;
}

.hero-content {
  max-width: 920px;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeInUp 1.2s ease-out 0.3s forwards;
}

@keyframes heroFadeInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin-bottom: 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(20px);
  animation: badgeFadeIn 0.8s ease-out 0.8s forwards, badgeGlow 2s ease-in-out 2s infinite alternate;
}

@keyframes badgeFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 0 0 rgba(99, 102, 241, 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
  }
}

@keyframes badgeGlow {
  from { box-shadow: 0 0 10px rgba(99, 102, 241, 0.3); }
  to { box-shadow: 0 0 20px rgba(99, 102, 241, 0.6); }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  animation: titleFadeIn 1s ease-out 0.6s forwards;
  word-spacing: 0.1em;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.1;
  }
}

@keyframes titleFadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: descriptionFadeIn 0.8s ease-out 1s forwards;
  line-height: 1.7;
  padding: 2.3rem 2.9rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.1), transparent 60%);
  pointer-events: none;
}

.hero-description::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.hero-description:hover::after {
  transform: translateX(100%);
}

@keyframes descriptionFadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: buttonsFadeIn 0.8s ease-out 1.2s forwards;
}

@keyframes buttonsFadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.gradient-text {
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.verse-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  overflow: hidden;
  animation: verseEntrance 2s ease-out 1.5s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.verse-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%
  );
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform: skew(-15deg);
}

.verse-gradient.shine-active::before {
  animation: shineOverlay 1.2s ease-out 0.5s;
}

@keyframes verseEntrance {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shineOverlay {
  0% {
    left: -120%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

.verse-gradient::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #a855f7 100%);
  border-radius: 2px;
  opacity: 0;
  animation: underlineGlow 2s ease-out 1.8s forwards;
}

@keyframes underlineGlow {
  0% {
    opacity: 0;
    transform: scaleX(0);
    box-shadow: 0 0 0 rgba(59, 130, 246, 0);
  }
  30% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
  }
}

.verse-gradient:hover::after {
  box-shadow: 
    0 0 25px rgba(59, 130, 246, 0.8),
    0 0 40px rgba(139, 92, 246, 0.6),
    0 0 60px rgba(168, 85, 247, 0.4);
  animation: pulseGlow 1.5s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 
      0 0 25px rgba(59, 130, 246, 0.8),
      0 0 40px rgba(139, 92, 246, 0.6),
      0 0 60px rgba(168, 85, 247, 0.4);
  }
  100% {
    box-shadow: 
      0 0 35px rgba(59, 130, 246, 1),
      0 0 50px rgba(139, 92, 246, 0.8),
      0 0 80px rgba(168, 85, 247, 0.6);
  }
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.stats-section {
  padding: 6rem 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2.3rem;
  max-width: 1035px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  animation: statsGridFadeIn 1s ease-out 0.5s forwards;
}

@keyframes statsGridFadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.stat-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2.9rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::before {
  transform: translateX(100%);
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-number.error {
  color: var(--error-red);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
}

.reviews-section {
  padding: 6rem 0 3rem;
  background: rgba(0, 0, 0, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.typing-container {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.15rem 1.7rem;
  margin: 0 auto 1.5rem;
  max-width: 460px;
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 
      0 4px 24px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
  gap: 0.75rem;
}

.stars-container {
  display: flex;
  gap: 0.25rem;
  margin-right: 0.5rem;
}

.star-icon {
  color: #fbbf24;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0) rotate(180deg);
  animation: starPop 0.6s ease-out forwards;
}

.star-icon:nth-child(1) { animation-delay: 0.1s; }
.star-icon:nth-child(2) { animation-delay: 0.2s; }
.star-icon:nth-child(3) { animation-delay: 0.3s; }
.star-icon:nth-child(4) { animation-delay: 0.4s; }
.star-icon:nth-child(5) { animation-delay: 0.5s; }

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(180deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(90deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.typing-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  font-weight: 300;
  margin: 0 0.5rem;
  opacity: 0.6;
}

.typing-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  min-height: 1.3em;
  height: 1.3em;
  line-height: 1.3em;
  text-align: center;
  flex: 1;
}

.typing-cursor {
  color: var(--accent-blue);
  font-weight: bold;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.real-text {
  font-weight: 700;
  color: #10b981;
}

.announcement-bar {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.05));
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: 1.7rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  position: relative;
  overflow: hidden;
  box-shadow: 
      0 4px 24px rgba(59, 130, 246, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15), transparent 60%);
  pointer-events: none;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.announcement-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.announcement-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.announcement-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.reviews-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.sort-controls {
  display: flex;
  gap: 0.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.25rem;
}

.sort-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.sort-btn.active {
  color: var(--text-primary);
  background: var(--secondary-gradient);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 1.7rem;
  max-width: 1380px;
  margin: 0 auto;
}

.view-more-container {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 3rem 0 2rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.view-more-btn {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 1.4rem 2.3rem;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  min-width: 322px;
  box-shadow: 
      0 4px 16px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.view-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.view-more-btn:hover::before {
  opacity: 1;
}

.view-more-btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 
      0 8px 24px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.view-more-text {
  position: relative;
  z-index: 1;
}

.view-more-count {
  position: relative;
  z-index: 1;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.view-more-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.view-more-btn:hover .view-more-icon {
  transform: translateY(2px);
}

.loading-more {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.loading-more .loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.loading-more .spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--glass-border);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-more p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.loading-spinner {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.review-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.7rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copy-link-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-link-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.highlight-review {
  border: 3px solid #fbbf24 !important;
  border-radius: 24px !important;
  animation: goldenGlow 3s ease-out;
}

@keyframes goldenGlow {
  0% { 
      box-shadow: 
          0 0 0 0 rgba(251, 191, 36, 0.8),
          0 4px 24px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  25% { 
      box-shadow: 
          0 0 0 8px rgba(251, 191, 36, 0.4),
          0 8px 32px rgba(251, 191, 36, 0.3),
          inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
  100% { 
      box-shadow: 
          0 0 0 0 rgba(251, 191, 36, 0),
          0 4px 24px rgba(0, 0, 0, 0.2),
          inset 0 1px 0 rgba(255, 255, 255, 0.15);
  }
}

.copy-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
}

.copy-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.no-reviews, .error-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
}

.review-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.review-name.discord-user {
  color: #5865f2;
  text-shadow: 0 0 8px rgba(88, 101, 242, 0.4);
  font-weight: 600;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.875rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.review-message {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.15rem;
  font-size: 0.95rem;
  padding: 0.15rem;
}

.review-message .discord-mention {
  background-color: rgba(88, 101, 242, 0.3);
  border-radius: 3px;
  padding: 0 2px;
  color: #dee0fc;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.review-message .discord-mention:hover {
  background-color: rgba(88, 101, 242, 0.5);
}

.review-responses {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.staff-response {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.03));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 1.15rem;
  margin-top: 0.85rem;
  position: relative;
  overflow: hidden;
}

.staff-response::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 2px;
}

.staff-response-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.staff-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.staff-response-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.staff-response-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.staff-response-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: #10b981;
}

.staff-response-date {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  margin-left: auto;
}

.staff-response-message {
  color: var(--text-secondary);
  line-height: 1.4;
  font-size: 0.9rem;
  margin-left: 1rem;
}

.hall-of-fame-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, 
    rgba(251, 191, 36, 0.1) 0%, 
    rgba(245, 158, 11, 0.05) 25%, 
    rgba(0, 0, 0, 0.1) 75%, 
    rgba(0, 0, 0, 0.2) 100%
  );
  position: relative;
  overflow: hidden;
}

.hall-of-fame-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(251, 191, 36, 0.15), transparent 60%);
  pointer-events: none;
}

.hall-of-fame-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.hall-title-container {
  margin-bottom: 2rem;
}

.hall-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
}

.crown-icon {
  font-size: 0.8em;
  margin: 0 0.5rem;
  color: var(--gold-primary);
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
  animation: crownFloat 3s ease-in-out infinite alternate;
}

@keyframes crownFloat {
  0% { transform: translateY(0px) rotate(-5deg); }
  100% { transform: translateY(-10px) rotate(5deg); }
}

.hall-subtitle {
  font-size: 1.25rem;
  color: var(--gold-secondary);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.hall-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.08), rgba(251, 191, 36, 0.02));
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 
      0 8px 32px rgba(251, 191, 36, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hall-description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1), transparent 50%);
  pointer-events: none;
}

.hall-of-fame-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hall-member-card {
  background: linear-gradient(145deg, 
    rgba(251, 191, 36, 0.15), 
    rgba(251, 191, 36, 0.05)
  );
  backdrop-filter: blur(25px) saturate(180%);
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  box-shadow: 
      0 12px 40px rgba(251, 191, 36, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(251, 191, 36, 0.1);
}

.hall-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.hall-member-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hall-member-card:hover::before {
  transform: translateX(100%);
}

.hall-member-card:hover::after {
  opacity: 1;
}

.hall-member-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(145deg, 
    rgba(251, 191, 36, 0.25), 
    rgba(251, 191, 36, 0.1)
  );
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 
      0 25px 50px rgba(251, 191, 36, 0.3),
      0 0 0 1px rgba(251, 191, 36, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -1px 0 rgba(251, 191, 36, 0.2);
}

.hall-member-rank {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #000;
  padding: 0.6rem 1.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 
      0 6px 20px rgba(251, 191, 36, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(251, 191, 36, 0.6);
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
  line-height: 1.2;
  z-index: 10;
}

.hall-member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--gold-primary);
  margin: 3rem auto 1.5rem;
  position: relative;
  box-shadow: 
      0 8px 25px rgba(251, 191, 36, 0.4),
      inset 0 2px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hall-member-avatar::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: var(--gold-gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hall-member-card:hover .hall-member-avatar::before {
  opacity: 1;
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hall-member-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.hall-member-name.discord-user {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.hall-member-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 191, 36, 0.3);
}

.hall-stat {
  text-align: center;
}

.hall-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.hall-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hall-member-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-gradient);
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
  0%, 100% { box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(251, 191, 36, 0.8); }
}

.info-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.info-container {
  max-width: 1035px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
  backdrop-filter: blur(25px) saturate(180%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 32px;
  padding: 4.6rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
      0 12px 40px rgba(59, 130, 246, 0.2),
      0 0 0 1px rgba(59, 130, 246, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.info-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.2), transparent 60%);
  pointer-events: none;
}

.info-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.discord-channels {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.channel-row {
  display: flex;
  gap: 1.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.discord-channel {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 16px;
  padding: 1.15rem 1.7rem;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 230px;
  box-shadow: 
      0 4px 16px rgba(59, 130, 246, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.discord-channel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(99, 102, 241, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.discord-channel:hover::before {
  opacity: 1;
}

.discord-channel:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 
      0 8px 24px rgba(59, 130, 246, 0.4),
      0 0 0 2px rgba(59, 130, 246, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.channel-text {
  position: relative;
  z-index: 1;
}

.footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--glass-border);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  width: 28px;
  height: 28px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .nav-menu {
      display: none;
  }

  .hero-title {
      font-size: 2.5rem;
  }

  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }

  .stats-grid {
      grid-template-columns: 1fr;
      gap: 1.15rem;
  }

  .reviews-grid {
      grid-template-columns: 1fr;
  }

  .hall-of-fame-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .hall-member-card {
      padding: 2rem;
  }

  .hall-title {
      font-size: 2.5rem;
  }

  .hall-description {
      padding: 1.5rem 1.8rem;
      font-size: 1rem;
  }

  .info-container {
      padding: 3.5rem 2.3rem;
  }

  .info-title {
      font-size: 2rem;
  }

  .channel-row {
      flex-direction: column;
      align-items: center;
  }

  .discord-channel {
      min-width: 322px;
  }

  .footer-content {
      flex-direction: column;
      gap: 2rem;
      text-align: center;
  }

  .container {
      padding: 0 1rem;
  }

  .announcement-content {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
  }

  .announcement-text {
    font-size: 0.875rem;
  }

  .announcement-bar {
    margin-left: 1rem;
    margin-right: 1rem;
    max-width: calc(100% - 2rem);
  }

  .sort-controls {
    flex-direction: column;
    width: 100%;
    max-width: 345px;
  }

  .view-more-btn {
    min-width: 287px;
    padding: 1.15rem 1.7rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .stat-card {
      padding: 1.7rem;
  }

  .stat-number {
      font-size: 2rem;
  }

  .review-card {
      padding: 1.15rem;
  }

  .hall-member-card {
      padding: 1.5rem;
  }

  .hall-member-avatar {
      width: 60px;
      height: 60px;
  }

  .hall-member-name {
      font-size: 1.2rem;
  }

  .hall-stat-number {
      font-size: 1.5rem;
  }

  .info-container {
      padding: 2.3rem 1.7rem;
  }

  .info-title {
      font-size: 1.75rem;
  }
}
.hall-title {
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Extra ones added on bottom */
.crown-icon {
  text-shadow: none;
  filter: none;
  display: inline-block;
}

@media (max-width: 768px) {
  html {
    font-size: 14px; 
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .section-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }

  .btn-primary, .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .stat-card, .review-card, .hall-member-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }

  .container {
    padding: 0 0.8rem;
  }

  .hero-description {
    padding: 1.8rem 2.2rem;
    font-size: 1rem;
  }

  .btn-primary, .btn-secondary {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .info-container {
    padding: 2.8rem 1.8rem;
  }

  .stat-card {
    padding: 1.3rem;
  }

  .review-card {
    padding: 1rem;
  }

  .hall-member-card {
    padding: 1.3rem;
  }
}