/* ===================================
   KAZINO666 - Premium Casino Theme
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.08);
  
  --text-primary: #f0f0f5;
  --text-secondary: #8a8a9a;
  --text-muted: #55556a;
  
  --accent-primary: #ff3e6c;
  --accent-secondary: #7b2ff7;
  --accent-tertiary: #00d4ff;
  --accent-gold: #ffd700;
  --accent-green: #00e676;
  
  --gradient-primary: linear-gradient(135deg, #ff3e6c 0%, #7b2ff7 50%, #00d4ff 100%);
  --gradient-hero: linear-gradient(135deg, #ff3e6c 0%, #ff6b35 100%);
  --gradient-cta: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
  --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
  
  --shadow-neon: 0 0 20px rgba(255, 62, 108, 0.3), 0 0 60px rgba(123, 47, 247, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-cta: 0 4px 24px rgba(255, 215, 0, 0.3);
  
  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent-tertiary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

/* --- Background Animation --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(123, 47, 247, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 62, 108, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  position: relative;
  z-index: 1;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-base);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  position: relative;
}

.logo span {
  color: var(--accent-gold);
  -webkit-text-fill-color: var(--accent-gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav a:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.nav a.active {
  color: var(--accent-primary);
}

/* --- Hero Section --- */
.hero {
  padding: 140px 0 var(--space-4xl);
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 62, 108, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -1.5px;
  position: relative;
  z-index: 1;
}

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

.hero h1 .highlight-gold {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* --- CTA Buttons --- */
.cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #1a1a00;
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.45);
  color: #1a1a00;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

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

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.btn-neon {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  box-shadow: 0 0 15px rgba(255, 62, 108, 0.2);
}

.btn-neon:hover {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 62, 108, 0.4);
  transform: translateY(-2px);
}

/* --- Rating Stars --- */
.rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.rating .star {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.rating .score {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-left: var(--space-sm);
}

/* --- Feature Cards --- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  padding: var(--space-3xl) 0;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  display: block;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Info Table --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-2xl) 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.info-table th,
.info-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
}

.info-table th {
  background: rgba(123, 47, 247, 0.1);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-tertiary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-table td {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* --- Blog / Content Section --- */
.content-section {
  padding: var(--space-3xl) 0;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-md);
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.content-section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--text-primary);
}

.content-section p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  line-height: 1.8;
}

.content-section ul,
.content-section ol {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.content-section li {
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.content-section blockquote {
  border-left: 3px solid var(--accent-secondary);
  padding: var(--space-md) var(--space-xl);
  margin: var(--space-xl) 0;
  background: rgba(123, 47, 247, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* --- FAQ Section --- */
.faq-section {
  padding: var(--space-3xl) 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --- Bonus Banner --- */
.bonus-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  text-align: center;
  margin: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
}

.bonus-banner h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
}

.bonus-banner .bonus-amount {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin: var(--space-md) 0;
}

.bonus-banner p {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

/* --- Footer --- */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--border-glass);
  margin-top: var(--space-4xl);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
  display: inline-block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

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

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.disclaimer {
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.7;
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  text-align: center;
  padding: var(--space-lg);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  background: rgba(255, 62, 108, 0.03);
}

/* --- Game Links Grid --- */
.game-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
  padding: var(--space-xl) 0;
}

.game-link-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
  text-decoration: none;
  display: block;
}

.game-link-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
  color: var(--text-primary);
}

.game-link-card .game-emoji {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.game-link-card .game-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

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

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

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

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* --- Responsive --- */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .header-inner {
    padding: 0 var(--space-md);
  }
  
  .nav {
    gap: var(--space-sm);
  }
  
  .hero {
    padding: 120px 0 var(--space-2xl);
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .features {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .bonus-banner {
    padding: var(--space-xl);
  }
  
  .bonus-banner .bonus-amount {
    font-size: 2.5rem;
  }
  
  .game-links {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .nav a {
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-sm);
  }
  
  .info-table th,
  .info-table td {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.85rem;
  }
}

/* --- 18+ Warning Badge --- */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 62, 108, 0.15);
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-primary);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* --- Selection --- */
::selection {
  background: rgba(255, 62, 108, 0.3);
  color: #fff;
}

/* ===================================
   1WIN LANDING PAGE STYLES
   =================================== */

/* --- Fullscreen Hero --- */
.hero-fullscreen {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 80px 20px 40px;
  gap: 32px;
}

/* --- Logo Card --- */
.logo-card {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  border-radius: 24px;
  padding: 48px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 133, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-base);
  width: 320px;
  max-width: 85vw;
  aspect-ratio: 3 / 2;
}

.logo-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(0, 133, 255, 0.12);
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* --- Neon Green Play Button --- */
.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 80px;
  background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 0 20px rgba(0, 230, 118, 0.25),
    0 0 60px rgba(0, 230, 118, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
  position: relative;
  z-index: 10;
  overflow: hidden;
  min-width: 280px;
  max-width: 85vw;
}

.btn-play::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-play:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 30px rgba(0, 230, 118, 0.4),
    0 0 80px rgba(0, 230, 118, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #00ff84 0%, #00e676 100%);
  color: #0a0a0f;
}

.btn-play:hover::before {
  left: 100%;
}

.btn-play:active {
  transform: translateY(-1px) scale(0.98);
}

/* --- Blog Article --- */
.blog-article {
  padding: var(--space-3xl) 0 var(--space-4xl);
  position: relative;
  z-index: 1;
}

.blog-article > h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: var(--space-3xl) 0 var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid rgba(255, 62, 108, 0.3);
  position: relative;
}

.blog-article > h2:first-child {
  margin-top: 0;
}

.blog-article > h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--gradient-primary);
}

.blog-article h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--space-2xl) 0 var(--space-md);
}

.blog-article h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-tertiary);
  margin: var(--space-xl) 0 var(--space-md);
}

.blog-article p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}

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

.blog-article ul,
.blog-article ol {
  color: var(--text-secondary);
  padding-left: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.blog-article li {
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.blog-article blockquote {
  border-left: 3px solid var(--accent-secondary);
  padding: var(--space-md) var(--space-xl);
  margin: var(--space-xl) 0;
  background: rgba(123, 47, 247, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-secondary);
  font-style: italic;
}

.blog-article blockquote strong {
  color: var(--accent-primary);
}

.blog-article table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-xl) 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  font-size: 0.95rem;
}

.blog-article th,
.blog-article td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border-glass);
}

.blog-article th {
  background: rgba(123, 47, 247, 0.1);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-tertiary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-article td {
  color: var(--text-secondary);
}

.blog-article tr:last-child td {
  border-bottom: none;
}

.blog-article tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.blog-article hr {
  border: none;
  height: 1px;
  background: var(--border-glass);
  margin: var(--space-3xl) 0;
}

/* Blog CTA inline */
.blog-cta {
  text-align: center;
  padding: var(--space-2xl);
  margin: var(--space-2xl) 0;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
}

.blog-cta p {
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
  color: var(--text-primary);
}

/* --- FAQ Styles for Blog --- */
.blog-faq-item {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border-glass);
}

.blog-faq-item:last-child {
  border-bottom: none;
}

.blog-faq-item .faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.blog-faq-item .faq-a {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* --- Mobile Responsive for 1Win Pages --- */
@media (max-width: 768px) {
  .hero-fullscreen {
    padding: 60px 16px 30px;
    gap: 24px;
  }

  .logo-card {
    width: 260px;
    padding: 36px 48px;
    border-radius: 20px;
  }

  .btn-play {
    padding: 16px 60px;
    font-size: 1.1rem;
    min-width: 240px;
  }

  .blog-article > h2 {
    font-size: 1.4rem;
  }

  .blog-article h3 {
    font-size: 1.15rem;
  }

  .blog-article table {
    font-size: 0.85rem;
  }

  .blog-article th,
  .blog-article td {
    padding: var(--space-sm) var(--space-md);
  }
}

@media (max-width: 480px) {
  .logo-card {
    width: 220px;
    padding: 28px 36px;
    border-radius: 16px;
  }

  .btn-play {
    padding: 14px 48px;
    font-size: 1rem;
    min-width: 200px;
    letter-spacing: 1.5px;
  }

  .blog-article > h2 {
    font-size: 1.25rem;
  }

  .blog-article p {
    font-size: 0.95rem;
  }
}

/* ===================================
   AVIATOR TRIPLE-CARD HERO STYLES
   =================================== */

/* Hero section for aviator - allows scrolling past 3 cards */
.hero-aviator {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding: 100px 20px 60px;
  gap: 24px;
}

.hero-aviator h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aviator-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 400px;
  align-items: center;
}

.aviator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.aviator-card .logo-card {
  width: 280px;
}

.aviator-card .btn-play {
  min-width: 240px;
  padding: 14px 60px;
  font-size: 1.1rem;
}

.aviator-card .platform-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: -8px;
}

/* Separator between cards */
.aviator-cards .card-divider {
  width: 60%;
  height: 1px;
  background: var(--border-glass);
  margin: 4px 0;
}

@media (max-width: 768px) {
  .hero-aviator {
    padding: 80px 16px 40px;
    gap: 20px;
  }

  .aviator-card .logo-card {
    width: 240px;
    padding: 32px 40px;
  }

  .aviator-card .btn-play {
    min-width: 200px;
    padding: 12px 48px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .aviator-card .logo-card {
    width: 200px;
    padding: 24px 32px;
    border-radius: 16px;
  }

  .aviator-card .btn-play {
    min-width: 180px;
    padding: 12px 40px;
    font-size: 0.95rem;
  }
}
