:root {
  --arctic-cyan: #00d4e8;
  --arctic-silver: #a8bcd4;
  --midnight: #050d1a;
  --card-bg: #0b1628;
  --card-border: #1a3050;
  --text-primary: #ddeeff;
  --text-secondary: #8aaabb;
  --frost-white: #e8f4ff;
  --gold: #f0c040;
}

@keyframes frost-float {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-18px) translateX(8px) scale(1.08); opacity: 1; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse-cyan {
  0%, 100% { box-shadow: 0 0 10px rgba(0,212,232,0.4); }
  50% { box-shadow: 0 0 28px rgba(0,212,232,0.9), 0 0 50px rgba(0,212,232,0.3); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes frost-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.frost-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,232,0.35) 0%, transparent 70%);
  pointer-events: none;
  animation: frost-float 6s ease-in-out infinite;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #00d4e8 0%, #0099bb 100%);
  color: #050d1a;
  font-weight: 700;
  padding: 0.85em 2em;
  border-radius: 2em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-cyan 3s ease-in-out infinite;
  letter-spacing: 0.04em;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0,212,232,0.55);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #00d4e8;
  font-weight: 700;
  padding: 0.85em 2em;
  border-radius: 2em;
  border: 2px solid #00d4e8;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: rgba(0,212,232,0.12);
  color: #e8f4ff;
}

.shimmer-text {
  background: linear-gradient(90deg, #a8bcd4 0%, #00d4e8 30%, #e8f4ff 50%, #00d4e8 70%, #a8bcd4 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.card-frost {
  background: linear-gradient(145deg, #0b1628 0%, #0f1e35 100%);
  border: 1px solid #1a3050;
  border-radius: 1rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.card-frost:hover {
  transform: translateY(-4px);
  border-color: #00d4e8;
  box-shadow: 0 12px 40px rgba(0,212,232,0.2);
}

.section-title {
  color: #ddeeff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 0.4em;
}

.section-subtitle {
  color: #8aaabb;
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,13,26,0.72) 0%, rgba(5,13,26,0.88) 60%, #050d1a 100%);
}

.badge-bonus {
  background: linear-gradient(135deg, rgba(0,212,232,0.15) 0%, rgba(0,153,187,0.1) 100%);
  border: 2px solid #00d4e8;
  border-radius: 1.25rem;
  padding: 1.5rem 2rem;
  display: inline-block;
  animation: pulse-cyan 3s ease-in-out infinite;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4e8, #0077aa);
  color: #050d1a;
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0,212,232,0.4);
}

.nav-link {
  color: #a8bcd4;
  text-decoration: none;
  font-weight: 600;
  padding: 0.4em 0.8em;
  border-radius: 0.5em;
  transition: color 0.2s, background 0.2s;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.nav-link:hover {
  color: #00d4e8;
  background: rgba(0,212,232,0.08);
}

.mobile-menu {
  background: #080f1e;
  border-top: 1px solid #1a3050;
}

.game-card img {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  border-radius: 0.75rem 0.75rem 0 0;
}

.faq-item {
  border-bottom: 1px solid #1a3050;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 0;
  color: #ddeeff;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.03rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] summary { color: #00d4e8; }

.faq-answer {
  color: #8aaabb;
  padding-bottom: 1.1rem;
  line-height: 1.75;
  font-size: 0.97rem;
}

.prose {
  color: #c8ddf0;
  max-width: 100%;
  line-height: 1.8;
  font-size: 1rem;
}

.prose h2 {
  color: #ddeeff;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  margin-top: 2.2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid #1a3050;
}

.prose h3 {
  color: #a8d8e8;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  margin-top: 1.6rem;
  margin-bottom: 0.55rem;
}

.prose p {
  margin-bottom: 1.15rem;
  color: #b8ccdd;
}

.prose a {
  color: #00d4e8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover { color: #7ee8f5; }

.prose ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
}

.prose ul li {
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 0.5rem;
  color: #b8ccdd;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: #00d4e8;
}

.prose ol {
  padding-left: 1.5em;
  margin-bottom: 1.2rem;
}

.prose ol li {
  margin-bottom: 0.5rem;
  color: #b8ccdd;
}

.prose blockquote {
  border-left: 4px solid #00d4e8;
  padding-left: 1.2em;
  margin: 1.5rem 0;
  color: #8aaabb;
  font-style: italic;
  background: rgba(0,212,232,0.05);
  border-radius: 0 0.5rem 0.5rem 0;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}

.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.prose table th {
  background: #0f1e35;
  color: #00d4e8;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid #1a3050;
}

.prose table td {
  padding: 0.7rem 1rem;
  border: 1px solid #1a3050;
  color: #b8ccdd;
  background: #080f1e;
}

.prose table tr:nth-child(even) td {
  background: #0b1628;
}

.prose img {
  max-width: 100%;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
  display: block;
}

.payment-table th {
  background: #0f1e35;
  color: #00d4e8;
  font-weight: 700;
  padding: 0.8rem 1rem;
  text-align: left;
  border: 1px solid #1a3050;
}

.payment-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #1a3050;
  color: #b8ccdd;
}

.payment-table tr:nth-child(even) td { background: #0b1628; }

.word-cloud span {
  display: inline-block;
  margin: 0.3em;
  padding: 0.3em 0.85em;
  border-radius: 2em;
  background: rgba(0,212,232,0.08);
  border: 1px solid #1a3050;
  color: #8aaabb;
  font-size: 0.88rem;
  transition: background 0.2s, color 0.2s;
}

.word-cloud span:hover {
  background: rgba(0,212,232,0.18);
  color: #00d4e8;
}

.promo-card {
  background: linear-gradient(145deg, #0b1628, #0f1e35);
  border: 1px solid #1a3050;
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.promo-card:hover {
  border-color: #00d4e8;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,212,232,0.15);
}

.review-tab {
  cursor: pointer;
  padding: 0.65em 1.4em;
  border-radius: 0.5em;
  font-weight: 600;
  color: #8aaabb;
  border: 1px solid transparent;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.review-tab.active, .review-tab:hover {
  color: #00d4e8;
  border-color: #00d4e8;
  background: rgba(0,212,232,0.08);
}

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,13,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1a3050;
}

.disclaimer {
  font-size: 0.78rem;
  color: #607080;
  margin-top: 0.75rem;
  max-width: 30rem;
}

@media (max-width: 640px) {
  .game-card img { height: 8rem; }
}
