/* =====================================================
   CRYPTO CASINO — Premium Conversion-Focused Design
   ===================================================== */

/* CSS Variables */
:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2234;
  --bg-card-hover: #232f45;

  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  --accent-blue: #3b82f6;
  --accent-cyan: #22d3ee;
  --accent-green: #10b981;
  --accent-gold: #f59e0b;
  --accent-red: #ef4444;
  --accent-purple: #a855f7;
  --accent-pink: #ec4899;

  --gradient-primary: linear-gradient(135deg, #3b82f6, #22d3ee);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24);
  --gradient-fire: linear-gradient(135deg, #ef4444, #f59e0b);
  --gradient-neon: linear-gradient(135deg, #a855f7, #ec4899, #f59e0b);
  --gradient-dark: linear-gradient(180deg, #0a0e17, #111827);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(59, 130, 246, 0.3);
  --border-gold: rgba(245, 158, 11, 0.4);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow-blue: 0 0 30px rgba(59, 130, 246, 0.3);
  --shadow-glow-gold: 0 0 30px rgba(245, 158, 11, 0.4);
  --shadow-glow-cyan: 0 0 20px rgba(34, 211, 238, 0.3);

  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* =====================================================
   KEYFRAME ANIMATIONS
   ===================================================== */

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

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

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; }
}

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

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

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

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

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

/* =====================================================
   REDUCED MOTION & PERFORMANCE
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .starfield { display: none !important; }
  .ticker-track { animation: none !important; }
}

/* =====================================================
   BACKGROUND
   ===================================================== */

.bg-grad {
  position: fixed;
  inset: -10% -10% -10% -10%;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 75% -10%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(900px 600px at -10% 10%, rgba(34, 211, 238, 0.18), transparent 45%),
    radial-gradient(800px 500px at 50% 100%, rgba(168, 85, 247, 0.12), transparent 50%),
    radial-gradient(600px 400px at 80% 80%, rgba(236, 72, 153, 0.08), transparent 50%),
    linear-gradient(180deg, #050a12, #0a0e17 60%, #070d15);
  filter: saturate(130%) blur(0.3px);
}

.starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  display: block;
}

/* =====================================================
   RESET & BASE
   ===================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #050a12;
}

body {
  font-family: var(--font-family);
  background: #050a12;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-blue);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   HEADER
   ===================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 10, 18, 0.9);
  backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  gap: 20px;
}

.logo-link {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 16px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

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

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

.nav-link.highlight {
  color: var(--accent-gold);
  animation: pulseScale 3s infinite;
}

.nav-link.highlight:hover {
  background: rgba(245, 158, 11, 0.1);
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.btn-login, .btn-signup {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-login {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.btn-signup {
  color: #000;
  background: var(--gradient-gold);
  background-size: 200% auto;
  border: none;
  animation: pulseGlow 2.5s infinite;
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  color: #000;
  background-position: right center;
}

/* =====================================================
   MOBILE MENU
   ===================================================== */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 10, 18, 0.97);
  backdrop-filter: blur(16px);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 500;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.mobile-nav-link.highlight {
  color: var(--accent-gold);
  border-color: var(--border-gold);
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mobile-buttons .btn-login,
.mobile-buttons .btn-signup {
  text-align: center;
  padding: 16px 20px;
  font-size: 16px;
}

/* =====================================================
   LIVE WINS TICKER
   ===================================================== */

.live-ticker {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.08), rgba(34, 211, 238, 0.04), rgba(16, 185, 129, 0.08));
  border-bottom: 1px solid rgba(16, 185, 129, 0.12);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
}

.live-ticker::before, .live-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.live-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 10, 18, 0.95), transparent);
}

.live-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(5, 10, 18, 0.95), transparent);
}

.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: tickerScroll 320s linear infinite;
  will-change: transform;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.ticker-item .win-amount {
  color: var(--accent-green);
  font-weight: 700;
}

.ticker-item .win-game {
  color: var(--accent-cyan);
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: countPulse 1.5s infinite;
}

/* =====================================================
   HERO BANNER
   ===================================================== */

.hero-banner {
  position: relative;
  padding: 70px 0 50px;
  text-align: center;
  overflow: hidden;
  background: url('hero-bg.jpeg') center center / cover no-repeat;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(5, 10, 18, 0.3) 0%, rgba(5, 10, 18, 0.7) 70%, rgba(5, 10, 18, 0.92) 100%),
    linear-gradient(180deg, transparent 0%, rgba(5, 10, 18, 0.85) 100%);
  pointer-events: none;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, #050a12);
  pointer-events: none;
}

.hero-banner > .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 24px;
  animation: bounceIn 0.8s ease;
  backdrop-filter: blur(8px);
}

.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: countPulse 1.5s infinite;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: slideUp 0.6s ease;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 3s ease infinite;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
  animation: slideUp 0.6s ease 0.1s both;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideUp 0.6s ease 0.2s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 800;
  color: #000;
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% auto;
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  animation: pulseGlow 2s infinite;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.5);
  color: #000;
}

.hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.2);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 45px;
  animation: slideUp 0.6s ease 0.3s both;
}

.hero-stat {
  text-align: center;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 110px;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
}

.hero-stat-value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

/* =====================================================
   MYSTERY PROMO GIFT
   ===================================================== */

.mystery-promo {
  margin-top: 28px;
  text-align: center;
  animation: slideUp 0.6s ease 0.3s both;
}

.mystery-promo--revealed {
  animation: none;
  padding: 24px;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 20px;
}

.mystery-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 44px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #ef4444, #a855f7, #f59e0b);
  background-size: 300% 300%;
  animation: gradientShift 3s ease infinite, pulseScale 2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 60px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
    0 0 30px rgba(245, 158, 11, 0.5),
    0 0 60px rgba(239, 68, 68, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  overflow: hidden;
}

.mystery-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  animation: shimmerSlide 2.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes shimmerSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.mystery-btn:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 50px rgba(245, 158, 11, 0.7),
    0 0 80px rgba(239, 68, 68, 0.4),
    0 12px 48px rgba(0, 0, 0, 0.5);
}

.mystery-btn-icon {
  font-size: 28px;
  animation: shake 1.5s ease-in-out infinite;
}

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

@keyframes btnShakeGlow {
  0%   { transform: translateX(0);    box-shadow: 0 0 30px rgba(245,158,11,0.5), 0 0 60px rgba(239,68,68,0.3); }
  10%  { transform: translateX(-8px); }
  20%  { transform: translateX(8px);  box-shadow: 0 0 50px rgba(245,158,11,0.8), 0 0 80px rgba(168,85,247,0.5); }
  30%  { transform: translateX(-6px); }
  40%  { transform: translateX(6px);  box-shadow: 0 0 60px rgba(245,158,11,0.9), 0 0 100px rgba(239,68,68,0.6); }
  50%  { transform: translateX(-5px); }
  60%  { transform: translateX(5px); }
  70%  { transform: translateX(-3px); box-shadow: 0 0 70px rgba(245,158,11,1), 0 0 120px rgba(168,85,247,0.7); }
  80%  { transform: translateX(2px); }
  90%  { transform: translateX(-1px); opacity: 0.6; }
  100% { transform: translateX(0) scale(0); opacity: 0; }
}

.mystery-btn--shaking {
  animation: btnShakeGlow 1.5s ease-in-out forwards;
  pointer-events: none;
}

.mystery-revealed {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: scale(0.5);
}

.mystery-revealed--visible {
  display: flex;
  animation: mysteryAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes mysteryAppear {
  0%   { opacity: 0; transform: scale(0.5); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

.mystery-congrats {
  font-size: 22px;
  font-weight: 800;
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
  animation: pulseScale 1.5s ease-in-out infinite;
}

.mystery-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mystery-code-display {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(168, 85, 247, 0.1));
  border: 2px solid rgba(245, 158, 11, 0.5);
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.2), inset 0 0 20px rgba(245, 158, 11, 0.05);
}

.mystery-code-value {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 6px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: all;
}

.mystery-copy {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.1);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mystery-copy:hover {
  background: rgba(245, 158, 11, 0.25);
  transform: scale(1.1);
}

.mystery-hint {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.5;
}

.mystery-claim-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 800;
  color: #000;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow:
    0 0 25px rgba(245, 158, 11, 0.5),
    0 6px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulseGlow 2s ease-in-out infinite;
}

.mystery-claim-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 0 40px rgba(245, 158, 11, 0.7),
    0 10px 40px rgba(0, 0, 0, 0.4);
}

/* PROMO INLINE (CTA section) */

.promo-inline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 16px auto;
  padding: 10px 20px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50px;
}

.promo-inline-label {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.promo-inline-code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: all;
}

.promo-inline-copy {
  padding: 6px 16px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 20px;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.promo-inline-copy:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

/* =====================================================
   COUNTDOWN TIMER
   ===================================================== */

.countdown-bar {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.12), rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.12));
  background-size: 200% auto;
  animation: gradientShift 4s ease infinite;
  border-top: 1px solid rgba(239, 68, 68, 0.25);
  border-bottom: 1px solid rgba(239, 68, 68, 0.25);
  padding: 14px 20px;
  text-align: center;
  position: relative;
}

.countdown-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.countdown-label {
  color: var(--text-secondary);
}

.countdown-label .fire-icon {
  animation: shake 1s infinite;
  display: inline-block;
}

.countdown-digits {
  display: inline-flex;
  gap: 6px;
}

.countdown-digits .digit-box {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  padding: 4px 8px;
  min-width: 36px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.countdown-digits .digit-sep {
  color: var(--accent-red);
  font-weight: 800;
  align-self: center;
}

.countdown-bonus {
  color: var(--accent-gold);
  font-weight: 800;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */

.breadcrumb-section {
  background: rgba(10, 14, 23, 0.3);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.page-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--accent-cyan);
}

.breadcrumb .separator {
  color: var(--text-muted);
}

.breadcrumb .current {
  color: var(--accent-cyan);
}

/* =====================================================
   MAIN CONTENT
   ===================================================== */

.main-content {
  flex: 1;
  padding: 30px 0 50px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}

/* Article Main */
.article-main {
  background: rgba(10, 14, 23, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.article-main:hover {
  border-color: rgba(59, 130, 246, 0.15);
}

.hero-image-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.hero-image-link::after {
  content: 'Kliknij aby zagrać →';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-image-link:hover::after {
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-link:hover .hero-image {
  transform: scale(1.05);
}

.text-block {
  padding: 25px 30px;
}

.text-block p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.text-block.highlight-block {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(34, 211, 238, 0.05));
  border-left: 4px solid var(--accent-blue);
  margin: 0 30px 25px;
  padding: 20px 25px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
  overflow: hidden;
}

.text-block.highlight-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.05), transparent);
  pointer-events: none;
}

/* Content Sections */
.content-section {
  padding: 25px 30px;
}

.content-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  position: relative;
  padding-left: 15px;
}

.content-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.content-section p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.7;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: var(--text-secondary);
  font-size: 15px;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.inline-link {
  color: var(--accent-cyan);
  font-weight: 600;
  position: relative;
}

.inline-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: width 0.3s ease;
}

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

.inline-link:hover {
  color: var(--accent-cyan);
}

/* Advantages List */
.advantages-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.advantages-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.advantages-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transition: left 0.6s ease;
}

.advantages-list li:hover::before {
  left: 100%;
}

.advantages-list li:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: var(--border-accent);
  transform: translateX(6px);
}

.advantage-icon {
  font-size: 26px;
  flex-shrink: 0;
}

.advantage-text {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
}

/* Content Images */
.content-image-link, .bonus-banner, .promo-banner-link {
  display: block;
  margin: 0 30px 25px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.content-image-link::after, .bonus-banner::after, .promo-banner-link::after {
  content: 'Zagraj teraz →';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-lg);
}

.content-image-link:hover::after, .bonus-banner:hover::after, .promo-banner-link:hover::after {
  opacity: 1;
}

.content-image-link:hover, .bonus-banner:hover, .promo-banner-link:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow-blue);
}

.bonus-banner {
  animation: borderGlow 3s infinite;
  border: 2px solid rgba(245, 158, 11, 0.3);
}

.bonus-banner::after {
  content: 'Odbierz +500% bonus →';
}

.content-image, .bonus-image, .promo-banner-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.content-image-link:hover img,
.bonus-banner:hover img,
.promo-banner-link:hover img {
  transform: scale(1.08);
}

.brand-link {
  color: var(--accent-cyan);
  font-weight: 600;
}

/* =====================================================
   CRYPTO SECTION
   ===================================================== */

.crypto-section {
  background: rgba(255, 255, 255, 0.02);
  margin: 25px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.crypto-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.crypto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 10px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
}

.crypto-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(168, 85, 247, 0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.crypto-card:hover::before {
  opacity: 1;
}

.crypto-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  color: var(--text-primary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.crypto-icon {
  font-size: 28px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  transition: transform 0.4s ease;
}

.crypto-card:hover .crypto-icon {
  transform: scale(1.15) rotate(5deg);
}

.crypto-icon.btc { background: linear-gradient(135deg, #f7931a, #ffd600); color: #fff; }
.crypto-icon.eth { background: linear-gradient(135deg, #627eea, #c99df6); color: #fff; }
.crypto-icon.usdt { background: linear-gradient(135deg, #26a17b, #50e3c2); color: #fff; }
.crypto-icon.trx { background: linear-gradient(135deg, #ff0013, #ff6b6b); color: #fff; }
.crypto-icon.ltc { background: linear-gradient(135deg, #bfbbbb, #fff); color: #345d9d; }
.crypto-icon.xmr { background: linear-gradient(135deg, #ff6600, #ffa500); color: #fff; }
.crypto-icon.doge { background: linear-gradient(135deg, #c2a633, #e8d362); color: #fff; }
.crypto-icon.bnb { background: linear-gradient(135deg, #f3ba2f, #ffd700); color: #000; }
.crypto-icon.xrp { background: linear-gradient(135deg, #23292f, #4a5568); color: #fff; }
.crypto-icon.dash { background: linear-gradient(135deg, #008ce7, #00bfff); color: #fff; }

.crypto-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
  padding: 50px 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(168, 85, 247, 0.08), rgba(245, 158, 11, 0.06));
  margin: 25px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-accent);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.06) 0%, transparent 50%);
  animation: spin 20s linear infinite;
  will-change: transform;
  pointer-events: none;
}

.cta-section h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-size: 16px;
  position: relative;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 800;
  color: #000;
  background: linear-gradient(135deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% auto;
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  animation: pulseGlow 2.5s infinite;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
  color: #000;
}

.cta-icon {
  font-size: 22px;
  animation: shake 2s infinite;
}

/* =====================================================
   SIDEBAR
   ===================================================== */

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: rgba(10, 14, 23, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.4s ease;
}

.sidebar-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow-blue);
  transform: translateY(-3px);
}

.sidebar-card.featured {
  border-color: rgba(245, 158, 11, 0.4);
  animation: borderGlow 3s infinite;
}

.sidebar-card.featured:hover {
  box-shadow: var(--shadow-glow-gold);
}

.sidebar-card-header {
  padding: 12px 15px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.sidebar-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-gold);
}

.sidebar-card-content {
  display: block;
  position: relative;
  overflow: hidden;
}

.sidebar-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sidebar-card-content:hover .sidebar-image {
  transform: scale(1.08);
}

.sidebar-card-info {
  padding: 15px;
}

.sidebar-card-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.sidebar-card-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.sidebar-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.sidebar-card-content:hover .sidebar-cta {
  gap: 8px;
  color: var(--accent-gold);
}

.sidebar-info {
  background: rgba(10, 14, 23, 0.5);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  padding: 22px;
  transition: all 0.3s ease;
}

.sidebar-info:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.sidebar-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.sidebar-info ul {
  list-style: none;
}

.sidebar-info li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.sidebar-info li:hover {
  color: var(--accent-green);
  padding-left: 6px;
}

.sidebar-info li:last-child {
  border-bottom: none;
}

/* Sidebar Sticky CTA */
.sidebar-sticky-cta {
  position: sticky;
  top: 80px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.1));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
  animation: borderGlow 3s infinite;
  overflow: hidden;
  word-wrap: break-word;
}

.sidebar-sticky-cta h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--accent-gold);
}

.sidebar-sticky-cta p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.sidebar-sticky-cta .cta-button {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 14px 20px;
}

/* =====================================================
   TRUST BADGES
   ===================================================== */

.trust-section {
  padding: 30px 0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.trust-badge .badge-icon {
  font-size: 24px;
}

.trust-badge .badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* =====================================================
   FLOATING MOBILE CTA
   ===================================================== */

.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: #050a12;
  border-top: 1px solid var(--border-gold);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.floating-cta-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.floating-cta-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.floating-cta-text strong {
  display: block;
  font-size: 14px;
  color: var(--accent-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-cta-text span {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.floating-cta .cta-button {
  padding: 12px 22px;
  font-size: 14px;
  white-space: nowrap;
  animation: none;
  flex-shrink: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: rgba(10, 14, 23, 0.3);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 20px;
}

.footer-disclaimer p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-disclaimer a {
  color: var(--accent-cyan);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .sidebar-info, .sidebar-sticky-cta {
    grid-column: span 2;
  }
  .crypto-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .hero-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .nav-menu, .header-buttons {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .floating-cta {
    display: block;
  }
  .header-container {
    padding: 10px 15px;
  }
  .logo-img {
    height: 35px;
  }
  .hero-banner {
    padding: 40px 15px 35px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .hero-cta {
    padding: 16px 30px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
  .hero-secondary-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }
  .mystery-btn {
    padding: 14px 28px;
    font-size: 16px;
    gap: 10px;
  }
  .mystery-btn-icon {
    font-size: 22px;
  }
  .mystery-congrats {
    font-size: 18px;
  }
  .mystery-code-value {
    font-size: 24px;
    letter-spacing: 4px;
  }
  .mystery-code-display {
    padding: 10px 20px;
  }
  .mystery-claim-btn {
    padding: 14px 32px;
    font-size: 15px;
  }
  .mystery-hint {
    font-size: 12px;
  }
  .promo-inline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 16px;
  }
  .promo-inline-label {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
  .header {
    backdrop-filter: blur(8px);
  }
  .hero-stat {
    backdrop-filter: none;
    background: rgba(15, 23, 42, 0.7);
  }
  .sidebar-sticky-cta,
  .cta-section,
  .crypto-section,
  .content-section,
  .text-block,
  .sidebar-card {
    backdrop-filter: none;
  }
  .ticker-track {
    will-change: transform;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stat {
    padding: 12px 10px;
    min-width: 0;
  }
  .hero-stat-value {
    font-size: 20px;
  }
  .hero-stat-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .countdown-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
  }
  .countdown-digits .digit-box {
    padding: 3px 6px;
    min-width: 30px;
    font-size: 14px;
  }
  .countdown-bonus {
    font-size: 12px;
  }
  .page-title {
    font-size: 22px;
  }
  .breadcrumb {
    font-size: 13px;
  }
  .main-content {
    padding: 20px 0 40px;
  }
  .footer {
    padding-bottom: 70px;
  }
  .container {
    padding: 0 15px;
  }
  .text-block {
    padding: 20px;
  }
  .text-block.highlight-block {
    margin: 0 20px 20px;
    padding: 15px 20px;
  }
  .content-section {
    padding: 20px;
  }
  .content-section h2 {
    font-size: 18px;
  }
  .content-image-link, .bonus-banner, .promo-banner-link {
    margin: 0 20px 20px;
  }
  .crypto-section {
    margin: 20px;
    padding: 20px;
  }
  .crypto-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .crypto-card {
    padding: 15px 8px;
  }
  .crypto-icon {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .crypto-name {
    font-size: 11px;
  }
  .cta-section {
    margin: 20px;
    padding: 35px 20px;
  }
  .cta-section h2 {
    font-size: 20px;
  }
  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
  }
  .sidebar {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
  }
  .sidebar-info, .sidebar-sticky-cta {
    grid-column: auto;
  }
  .sidebar-card-content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }
  .sidebar-image {
    width: 120px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
  }
  .sidebar-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px;
  }
  .sidebar-card-info h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .sidebar-card-info p {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .sidebar-sticky-cta {
    position: relative;
    top: auto;
    padding: 20px;
  }
  .sidebar-sticky-cta .cta-button {
    padding: 12px 18px;
    font-size: 14px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto 15px;
  }
  .trust-grid {
    gap: 12px;
  }
  .trust-badge {
    padding: 10px 14px;
  }
  .trust-badge .badge-text {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }
  .hero-stats {
    gap: 6px;
    max-width: 280px;
  }
  .hero-stat {
    padding: 10px 8px;
  }
  .hero-stat-value {
    font-size: 18px;
  }
  .page-title {
    font-size: 20px;
  }
  .breadcrumb {
    flex-wrap: wrap;
    gap: 5px;
  }
  .text-block {
    padding: 15px;
  }
  .text-block p {
    font-size: 14px;
  }
  .content-section {
    padding: 15px;
  }
  .content-section h2 {
    font-size: 16px;
    padding-left: 12px;
  }
  .content-section h2::before {
    width: 3px;
    height: 20px;
  }
  .content-section p, .feature-list li {
    font-size: 14px;
  }
  .advantages-list li {
    padding: 14px 15px;
    gap: 12px;
  }
  .advantage-icon {
    font-size: 22px;
  }
  .advantage-text {
    font-size: 14px;
  }
  .content-image-link, .bonus-banner, .promo-banner-link {
    margin: 0 15px 15px;
  }
  .crypto-section {
    margin: 15px;
    padding: 15px;
  }
  .crypto-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-section {
    margin: 15px;
    padding: 25px 15px;
  }
  .cta-section h2 {
    font-size: 18px;
  }
  .cta-section p {
    font-size: 14px;
  }
  .sidebar-card-info h3 {
    font-size: 15px;
  }
  .footer {
    padding: 30px 0 70px;
  }
  .footer-disclaimer p {
    font-size: 11px;
  }
  .trust-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .floating-cta-text strong {
    font-size: 12px;
  }
  .floating-cta-text span {
    font-size: 10px;
  }
  .floating-cta .cta-button {
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  .text-block, .content-section {
    padding: 12px;
  }
  .content-image-link, .bonus-banner, .promo-banner-link,
  .crypto-section, .cta-section, .text-block.highlight-block {
    margin-left: 12px;
    margin-right: 12px;
  }
  .crypto-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .crypto-name {
    font-size: 10px;
  }
  .cta-button {
    padding: 14px 20px;
    font-size: 14px;
  }
  .floating-cta {
    padding: 8px 12px;
  }
  .floating-cta-inner {
    gap: 8px;
  }
  .floating-cta-text strong {
    font-size: 11px;
  }
  .floating-cta .cta-button {
    padding: 10px 14px;
    font-size: 12px;
  }
  .sidebar-sticky-cta {
    padding: 16px;
  }
  .sidebar-sticky-cta h4 {
    font-size: 15px;
  }
  .sidebar-sticky-cta p {
    font-size: 12px;
  }
}

/* Mobile performance: reduce heavy effects */
@media (max-width: 768px) {
  .bg-grad {
    filter: none;
  }
  .hero-banner::before,
  .hero-banner::after {
    will-change: auto;
  }
  .mystery-btn {
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3);
  }
  .mystery-btn--shaking {
    animation: btnShakeGlow 1.5s ease-in-out forwards;
  }
  .mystery-btn::before {
    animation: none;
  }
  .mystery-congrats {
    animation: none;
  }
}

@media (prefers-contrast: high) {
  :root {
    --border-color: rgba(255, 255, 255, 0.3);
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
  }
}
