/* ============================================================
   PIRATEPOTS — Master Design System
   Theme: Black & Blood Red · Pirate Adventure
   Font: Pirata One + Poppins (Google)
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: #0A0A0A;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: #FF2020; text-decoration: none; transition: color 0.3s; }
a:hover { color: #FF6060; }

/* ---------- CSS Custom Properties ---------- */
:root {
  --c-primary:    #0A0A0A;
  --c-secondary:  #1A0000;
  --c-accent:     #2D0000;
  --c-red:        #CC0000;
  --c-red-bright: #FF2020;
  --c-red-dark:   #8B0000;
  --c-gold:       #DAA520;
  --c-gold-light: #FFD700;
  --c-white:      #FFFFFF;
  --c-text-muted: #B08080;
  --c-card:       rgba(100,0,0,0.15);
  --c-card-hover: rgba(150,0,0,0.25);
  --c-border:     rgba(204,0,0,0.3);
  --gradient-bg:   linear-gradient(160deg, #0A0A0A 0%, #1A0000 55%, #0A0A0A 100%);
  --gradient-red:  linear-gradient(135deg, #8B0000 0%, #CC0000 50%, #FF2020 100%);
  --gradient-gold: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #FFD700 100%);
  --gradient-card: linear-gradient(145deg, rgba(100,0,0,0.5) 0%, rgba(10,0,0,0.9) 100%);
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-red:   0 0 24px rgba(204,0,0,0.5);
  --shadow-card:  0 8px 32px rgba(0,0,0,0.6);
  --transition:   0.3s ease;
}

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 { font-family: 'Pirata One', 'Poppins', cursive; font-weight: 700; line-height: 1.2; letter-spacing: 0.03em; }
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.5rem,3.5vw,2.5rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.75rem); }
p  { margin-bottom: 1rem; }
.text-red   { color: var(--c-red-bright); }
.text-gold  { color: var(--c-gold); }
.text-muted { color: var(--c-text-muted); }
.gold { color: var(--c-gold); }

/* ---------- Layout ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(5,0,0,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  padding: 0.75rem 0;
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(204,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; flex-shrink: 0; }
.site-logo img { height: 48px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.main-nav a {
  color: #C0A0A0; font-size: 0.875rem; font-weight: 600;
  padding: 0.45rem 0.85rem; border-radius: 8px;
  transition: all 0.25s; white-space: nowrap;
  font-family: 'Pirata One', cursive; letter-spacing: 0.05em;
}
.main-nav a:hover,
.main-nav a.active { color: var(--c-gold); background: rgba(204,0,0,0.15); }
.main-nav a.active { color: var(--c-red-bright); font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.btn-header-login {
  padding: 0.45rem 1rem;
  background: transparent; border: 1.5px solid var(--c-red);
  color: var(--c-red-bright); border-radius: 8px;
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
  transition: all 0.25s; font-family: 'Poppins',sans-serif;
  text-decoration: none; display: inline-block;
}
.btn-header-login:hover { background: rgba(204,0,0,0.2); color: var(--c-red-bright); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; border-radius: 6px; transition: background 0.2s; }
.hamburger:hover { background: rgba(204,0,0,0.15); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--c-red-bright); border-radius: 2px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,0,0,0.98); backdrop-filter: blur(16px);
  z-index: 999; flex-direction: column; justify-content: center;
  align-items: center; gap: 1.5rem; list-style: none; padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #fff; font-size: 1.4rem; font-weight: 700; padding: 0.6rem 1.5rem; border-radius: 12px; transition: all 0.25s; font-family: 'Pirata One', cursive; }
.mobile-nav a:hover { color: var(--c-gold); background: rgba(204,0,0,0.15); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--c-red-bright); font-size: 2rem; cursor: pointer; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  transition: all 0.3s; text-decoration: none; font-family: 'Poppins',sans-serif;
  letter-spacing: 0.03em; position: relative; overflow: hidden;
}
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0); transition: background 0.3s; border-radius: inherit; }
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-primary {
  background: var(--gradient-red); color: #fff;
  box-shadow: 0 4px 18px rgba(204,0,0,0.6);
  animation: redGlow 2.5s ease-in-out infinite;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(204,0,0,0.8); color: #fff; }
.btn-secondary { background: transparent; color: var(--c-red-bright); border: 2px solid var(--c-red); }
.btn-secondary:hover { background: rgba(204,0,0,0.15); color: var(--c-red-bright); transform: translateY(-2px); }
.btn-gold { background: var(--gradient-gold); color: #1a0000; font-weight: 800; box-shadow: 0 4px 18px rgba(218,165,32,0.5); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(218,165,32,0.7); color: #1a0000; }

.btn-lg  { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-sm  { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg); animation: shimmerSweep 3s ease-in-out infinite;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top; background-repeat: no-repeat; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,0,0,0.92) 0%, rgba(30,0,0,0.75) 50%, rgba(5,0,0,0.88) 100%);
  z-index: 1;
}
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-container { position: relative; z-index: 3; padding-top: 3rem; padding-bottom: 3.5rem; }
.hero-content { max-width: 720px; }

/* Pirate banner badge */
.hero-exclusive-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(204,0,0,0.25), rgba(255,32,32,0.15), rgba(204,0,0,0.25));
  border: 1.5px solid var(--c-red);
  color: var(--c-red-bright);
  font-size: 0.72rem; font-weight: 800; font-family: 'Pirata One', cursive;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.45rem 1.25rem; border-radius: 4px;
  margin-bottom: 1.25rem;
  animation: flashBadge 2.5s ease-in-out infinite, fadeInUp 0.6s ease both;
  clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0% 50%);
}

.hero-title {
  font-size: clamp(2.2rem,5.5vw,4rem); font-weight: 900; font-family: 'Pirata One', cursive;
  line-height: 1.1; margin-bottom: 0.75rem;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero-title .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-tagline { font-size: 1.1rem; color: var(--c-text-muted); margin-bottom: 1.5rem; animation: fadeInUp 0.7s 0.2s ease both; }

/* Pirate Bonus Showcase */
.hero-bonus-showcase {
  position: relative;
  display: inline-flex; align-items: center; gap: 1.25rem;
  background: linear-gradient(135deg, rgba(204,0,0,0.18) 0%, rgba(139,0,0,0.12) 50%, rgba(204,0,0,0.15) 100%);
  border: 2px solid var(--c-red);
  border-radius: 4px;
  padding: 1.5rem 2rem; margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.7s 0.3s ease both, redGlowStrong 3s ease-in-out infinite;
  overflow: hidden;
  clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0% 50%);
}
.hero-bonus-showcase::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,32,32,0.08), transparent);
  transform: translateX(-100%) skewX(-20deg);
  animation: showcaseShimmer 3s 1s ease-in-out infinite;
}

/* CSS Pirate Skull in bonus box */
.hbs-skull {
  font-size: 3.5rem; flex-shrink: 0;
  animation: skullBob 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(204,0,0,0.9));
  font-style: normal;
}
@keyframes skullBob {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-8px) rotate(5deg); }
}
.hbs-body { position: relative; z-index: 2; }
.hbs-top-line { font-size: 0.68rem; font-weight: 800; font-family: 'Pirata One', cursive; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-red-bright); margin-bottom: 0.3rem; }
.hbs-amount {
  font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 900; font-family: 'Pirata One', cursive;
  background: var(--gradient-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.05; animation: goldPulse 2s ease-in-out infinite;
}
.hbs-up { font-size: 0.55em; font-weight: 600; opacity: 0.85; }
.hbs-spins { font-size: 1.35rem; font-weight: 800; color: #fff; margin-top: 0.25rem; }
.hbs-spins span { color: var(--c-red-bright); }
.hbs-tag { font-size: 0.7rem; color: var(--c-text-muted); margin-top: 0.4rem; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeInUp 0.7s 0.4s ease both; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.25rem; font-size: 0.8rem; color: var(--c-text-muted); font-weight: 600; animation: fadeInUp 0.7s 0.6s ease both; }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.3rem; }
.hero-scroll-arrow { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; animation: bounceDown 2s ease-in-out infinite; cursor: pointer; color: var(--c-red-bright); font-size: 1.5rem; opacity: 0.8; }

/* ── Floating coins (red/gold) ────────────────────────────────────────────── */
.coin {
  position: absolute;
  background: radial-gradient(circle at 35% 35%, #FFD700 0%, #DAA520 50%, #8B6914 100%);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(204,0,0,0.7), inset 0 0 4px rgba(255,215,0,0.4);
  animation: floatCoin var(--dur,4s) var(--delay,0s) ease-in-out infinite;
  opacity: 0.8; pointer-events: none;
}
/* Skull particles */
.skull-particle {
  position: absolute; font-size: 1.2rem;
  animation: floatSkull var(--dur,5s) var(--delay,0s) ease-in-out infinite;
  opacity: 0.4; pointer-events: none;
}
@keyframes floatSkull {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50%      { transform: translateY(-30px) rotate(15deg); opacity: 0.7; }
}

/* ============================================================
   CSS PIRATE CHARACTER (decorative)
   ============================================================ */
.pirate-figure {
  position: absolute; right: 5%; bottom: 0; z-index: 3;
  width: 200px; height: 320px;
  display: none; /* shown on larger screens */
  pointer-events: none;
}
@media (min-width: 1100px) { .pirate-figure { display: block; } }

/* Pirate built from CSS */
.pirate-hat {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 50px;
  background: #1a1a1a;
  clip-path: polygon(10% 100%, 0% 40%, 20% 0%, 80% 0%, 100% 40%, 90% 100%);
  filter: drop-shadow(0 0 6px rgba(204,0,0,0.6));
}
.pirate-hat::after {
  content: '☠';
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  color: var(--c-red-bright); font-size: 1rem;
}
.pirate-head {
  position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 70px; border-radius: 45%;
  background: #C49A6C;
  box-shadow: inset -4px 0 8px rgba(0,0,0,0.3);
}
.pirate-eye-patch {
  position: absolute; top: 55px; left: calc(50% - 28px);
  width: 20px; height: 14px;
  background: #0A0A0A;
  border-radius: 50%;
  border: 2px solid #333;
}
.pirate-eye-patch::before {
  content: '';
  position: absolute; top: 50%; left: 100%;
  width: 10px; height: 2px; background: #0A0A0A;
  transform: translateY(-50%) rotate(-30deg);
}
.pirate-body {
  position: absolute; top: 105px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 120px;
  background: linear-gradient(180deg, #1a0000 0%, #2d0000 100%);
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
}
.pirate-body::after {
  content: '';
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 60px;
  background: #8B0000;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.pirate-arm-left {
  position: absolute; top: 115px; left: calc(50% - 65px);
  width: 30px; height: 90px;
  background: #1a0000;
  border-radius: 15px;
  transform: rotate(30deg);
  transform-origin: top center;
  animation: armSwing 2s ease-in-out infinite;
}
.pirate-arm-left::after {
  content: '⚔';
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  font-size: 1.4rem; color: var(--c-gold);
}
.pirate-arm-right {
  position: absolute; top: 115px; right: calc(50% - 65px);
  width: 30px; height: 80px;
  background: #1a0000;
  border-radius: 15px;
  transform: rotate(-20deg);
  transform-origin: top center;
}
.pirate-leg-left, .pirate-leg-right {
  position: absolute; bottom: 0;
  width: 28px; height: 100px;
  background: linear-gradient(180deg, #1a0000 0%, #0a0a0a 100%);
  border-radius: 8px;
}
.pirate-leg-left { left: calc(50% - 30px); }
.pirate-leg-right { right: calc(50% - 30px); }
.pirate-boot-left, .pirate-boot-right {
  position: absolute; bottom: 0;
  width: 40px; height: 22px;
  background: #0a0a0a;
  border-radius: 0 50% 50% 0;
}
.pirate-boot-left  { left: calc(50% - 32px); }
.pirate-boot-right { right: calc(50% - 38px); border-radius: 50% 0 0 50%; }

@keyframes armSwing { 0%,100% { transform: rotate(30deg); } 50% { transform: rotate(50deg); } }

/* ============================================================
   USP STRIP
   ============================================================ */
.usp-strip {
  background: rgba(204,0,0,0.08);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 1.25rem 0;
}
.usp-strip-inner { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.usp-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 600; color: #fff; white-space: nowrap; }
.usp-item .usp-icon { font-size: 1.3rem; }
.usp-item span:last-child { color: var(--c-red-bright); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow { display: inline-block; color: var(--c-red-bright); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.6rem; font-family: 'Pirata One', cursive; }
.section-title { color: #fff; margin-bottom: 0.75rem; }
.section-desc { color: var(--c-text-muted); max-width: 600px; margin: 0 auto; font-size: 1rem; }
.section-divider { width: 60px; height: 3px; background: var(--gradient-red); border-radius: 2px; margin: 1rem auto 0; }

/* ============================================================
   GAMES GRID
   ============================================================ */
.games-section { background: var(--c-primary); }
.games-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }
a.game-card, .game-card {
  display: block; text-decoration: none;
  position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; background: var(--c-secondary);
  border: 1px solid var(--c-border);
  transition: transform 0.3s, box-shadow 0.3s;
}
a.game-card:hover, .game-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(204,0,0,0.4);
  border-color: var(--c-red); z-index: 2;
}
.game-card-img-wrap { aspect-ratio: 3/4; overflow: hidden; }
.game-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
a.game-card:hover .game-card-img, .game-card:hover .game-card-img { transform: scale(1.08); }
.game-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,0,0,0.95) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 0.75rem;
  opacity: 0; transition: opacity 0.3s;
}
a.game-card:hover .game-card-overlay, .game-card:hover .game-card-overlay { opacity: 1; }
.game-card-play-btn {
  display: block; background: var(--gradient-red); color: #fff;
  font-weight: 700; font-size: 0.8rem; text-align: center;
  padding: 0.4rem; border-radius: 6px; text-transform: uppercase;
  letter-spacing: 0.05em; text-decoration: none;
}
.game-card-info { padding: 0.6rem 0.75rem 0.75rem; background: rgba(15,0,0,0.8); }
.game-card-title { font-size: 0.8rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card-provider { font-size: 0.7rem; color: var(--c-red-bright); font-weight: 500; }
.game-badge {
  position: absolute; top: 0.5rem; left: 0.5rem;
  background: var(--gradient-red); color: #fff;
  font-size: 0.65rem; font-weight: 800; padding: 0.2rem 0.5rem;
  border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.games-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   FEATURE & BONUS CARDS
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--gradient-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--c-red); }
.feature-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.feature-title { font-size: 1.1rem; font-weight: 700; color: var(--c-red-bright); margin-bottom: 0.5rem; font-family: 'Pirata One', cursive; }
.feature-desc { font-size: 0.9rem; color: var(--c-text-muted); margin: 0; }

.bonus-card {
  background: var(--gradient-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center;
  position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.bonus-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-red); }
.bonus-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(204,0,0,0.25); }
.bonus-card.featured { border-color: var(--c-red); box-shadow: 0 0 40px rgba(204,0,0,0.2); }
.bonus-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-red-bright); margin-bottom: 0.75rem; font-family: 'Pirata One', cursive; }
.bonus-amount { font-size: 2.5rem; font-weight: 900; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1; margin-bottom: 0.5rem; font-family: 'Pirata One', cursive; }
.bonus-desc { color: var(--c-text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.bonus-tag { display: inline-block; background: rgba(204,0,0,0.15); border: 1px solid rgba(204,0,0,0.4); color: var(--c-red-bright); font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 1.5rem; }

/* ============================================================
   PROVIDERS
   ============================================================ */
.providers-strip { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; padding: 2rem 0; }
.provider-pill { background: var(--gradient-card); border: 1px solid var(--c-border); border-radius: 50px; padding: 0.5rem 1.25rem; font-size: 0.85rem; font-weight: 700; color: #fff; white-space: nowrap; transition: all 0.25s; }
.provider-pill:hover { border-color: var(--c-red); color: var(--c-red-bright); background: rgba(204,0,0,0.12); }

/* ============================================================
   CONTENT / ARTICLE
   ============================================================ */
.content-section { max-width: 900px; }
.content-section h2 { color: var(--c-red-bright); margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; }
.content-section h3 { color: var(--c-gold); margin-top: 1.75rem; margin-bottom: 0.75rem; }
.content-section p  { color: var(--c-text-muted); margin-bottom: 1rem; }
.content-section ul { color: var(--c-text-muted); padding-left: 1.5rem; margin-bottom: 1rem; }
.content-section ul li { margin-bottom: 0.4rem; }
.content-section strong { color: #fff; }

/* ============================================================
   TWO-COL LAYOUT + SIDEBAR
   ============================================================ */
.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.sidebar-card { background: var(--gradient-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 1.75rem; position: sticky; top: 90px; }
.sidebar-cta { margin-top: 1.25rem; }

/* ============================================================
   TABLE
   ============================================================ */
.styled-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; border-radius: var(--radius); overflow: hidden; }
.styled-table thead { background: #2D0000; }
.styled-table th { padding: 0.85rem 1rem; text-align: left; font-weight: 700; color: var(--c-red-bright); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }
.styled-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--c-text-muted); }
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: rgba(204,0,0,0.05); }
.styled-table tbody tr:nth-child(even) { background: rgba(204,0,0,0.04); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--gradient-card); border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; }
.faq-question { padding: 1.1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-weight: 600; color: #fff; transition: color 0.25s; user-select: none; }
.faq-question:hover { color: var(--c-red-bright); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--c-red-bright); flex-shrink: 0; margin-left: 0.75rem; transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; color: var(--c-text-muted); font-size: 0.9rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.25rem 1.25rem; }

/* ============================================================
   PAYMENT GRID
   ============================================================ */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 1rem; }
.payment-card { background: var(--gradient-card); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 1.25rem 1rem; text-align: center; transition: all 0.3s; }
.payment-card:hover { border-color: var(--c-red); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(204,0,0,0.25); }
.payment-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.payment-name { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.payment-time { font-size: 0.7rem; color: var(--c-red-bright); }

/* ============================================================
   SPORTS CARDS
   ============================================================ */
.sports-card { background: var(--gradient-card); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; transition: all 0.3s; }
.sports-card:hover { border-color: var(--c-red); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.sports-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-box { background: rgba(204,0,0,0.08); border: 1px solid rgba(204,0,0,0.3); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.info-box p { margin: 0; color: var(--c-text-muted); font-size: 0.9rem; }
.info-box strong { color: var(--c-red-bright); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #1A0000 0%, #2D0000 50%, #1A0000 100%);
  border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
  padding: 4rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(204,0,0,0.06)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-band p  { color: var(--c-text-muted); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #030000; border-top: 1px solid var(--c-border); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand-col .site-logo { margin-bottom: 1rem; }
.footer-brand-col p { font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.7; }
.footer-heading { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-red-bright); margin-bottom: 1rem; font-family: 'Pirata One', cursive; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--c-text-muted); font-size: 0.875rem; transition: color 0.25s; }
.footer-links a:hover { color: var(--c-red-bright); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; align-items: center; text-align: center; }
.footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.3); max-width: 860px; line-height: 1.6; }
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-responsible { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.rg-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 0.35rem 0.85rem; font-size: 0.7rem; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 0.05em; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A0000 60%, #2D0000 100%);
  padding: 5rem 0 3.5rem; text-align: center;
  position: relative; overflow: hidden; border-bottom: 1px solid var(--c-border);
}
.page-hero::before {
  content: '☠';
  position: absolute; font-size: 20rem; opacity: 0.03;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: var(--c-red-bright); pointer-events: none;
  font-family: Arial, sans-serif;
}
.page-hero h1 { color: #fff; margin-bottom: 0.5rem; }
.page-hero p  { color: var(--c-text-muted); max-width: 640px; margin: 0.5rem auto 0; font-size: 1.05rem; }
.page-hero .hero-badge { animation: none; margin-bottom: 1rem; }

/* ============================================================
   STATS, BREADCRUMB
   ============================================================ */
.stats-row { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; margin: 2rem 0; }
.stat-pill { background: rgba(204,0,0,0.12); border: 1px solid rgba(204,0,0,0.35); border-radius: 50px; padding: 0.6rem 1.5rem; text-align: center; }
.stat-number { font-size: 1.5rem; font-weight: 900; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; line-height: 1.1; font-family: 'Pirata One', cursive; }
.stat-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-text-muted); }

.breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--c-text-muted); margin-bottom: 2rem; }
.breadcrumb a { color: var(--c-red-bright); }
.breadcrumb span { opacity: 0.5; }

/* ============================================================
   STICKY BOTTOM BANNER
   ============================================================ */
.sticky-bonus-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: linear-gradient(90deg, #030000 0%, #1A0000 25%, #2D0000 50%, #1A0000 75%, #030000 100%);
  border-top: 2px solid var(--c-red);
  box-shadow: 0 -6px 40px rgba(204,0,0,0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
  padding: 0.75rem 1rem;
}
.sticky-bonus-bar.visible { transform: translateY(0); }
.sbb-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.sbb-left { display: flex; flex-direction: column; gap: 0.15rem; }
.sbb-tag { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-red-bright); font-family: 'Pirata One', cursive; }
.sbb-offer { display: flex; align-items: baseline; gap: 0.5rem; }
.sbb-pct { font-size: 1.6rem; font-weight: 900; background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; font-family: 'Pirata One', cursive; }
.sbb-details { font-size: 0.95rem; color: #fff; font-weight: 600; }
.sbb-details strong { color: var(--c-red-bright); }
.sbb-cta { flex-shrink: 0; white-space: nowrap; font-size: 0.9rem !important; padding: 0.65rem 1.5rem !important; }
.sbb-close { flex-shrink: 0; background: none; border: none; color: rgba(255,255,255,0.4); font-size: 1.1rem; cursor: pointer; padding: 0.25rem 0.5rem; border-radius: 6px; transition: color 0.2s; }
.sbb-close:hover { color: #fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes redGlow { 0%,100% { box-shadow: 0 4px 18px rgba(204,0,0,0.5); } 50% { box-shadow: 0 4px 36px rgba(204,0,0,0.9); } }
@keyframes redGlowStrong { 0%,100% { box-shadow: 0 0 30px rgba(204,0,0,0.3), 0 8px 40px rgba(0,0,0,0.5); } 50% { box-shadow: 0 0 60px rgba(204,0,0,0.6), 0 8px 60px rgba(204,0,0,0.15); } }
@keyframes flashBadge { 0%,100% { box-shadow: 0 0 8px rgba(204,0,0,0.4); } 50% { box-shadow: 0 0 22px rgba(204,0,0,0.9), 0 0 40px rgba(204,0,0,0.3); } }
@keyframes shimmerSweep { 0% { left: -100%; } 60%,100% { left: 150%; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes floatCoin { 0% { transform: translateY(0) rotate(0deg); opacity: 0.7; } 50% { transform: translateY(-40px) rotate(180deg); opacity: 1; } 100% { transform: translateY(0) rotate(360deg); opacity: 0.7; } }
@keyframes bounceDown { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes goldPulse { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.3); } }
@keyframes showcaseShimmer { 0% { transform: translateX(-100%) skewX(-20deg); } 60%,100% { transform: translateX(300%) skewX(-20deg); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) { .games-grid { grid-template-columns: repeat(4,1fr); } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } .sidebar-card { position: static; } .main-nav { display: none; } .hamburger { display: flex; } .btn-header-login { display: none; } .games-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) {
  .games-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .usp-strip-inner { gap: 1rem; }
  .hero-ctas { flex-direction: column; }
  .sbb-inner { flex-wrap: wrap; justify-content: center; }
  .sbb-cta { width: 100%; justify-content: center; text-align: center; }
  .hero-bonus-showcase { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

/* Body padding for sticky bar */
body { padding-bottom: 80px; }
