/* ============================================================
   VelvetH0ur — Main Stylesheet
   Premium Casino Guide | Croatia
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* === CSS Variables — нова палета: сапфір + мед + нефрит === */
:root {
  --accent:       #E8A045;   /* мед / бурштин */
  --accent2:      #2EC4B6;   /* нефрит/тіл */
  --accent3:      #7B5EA7;   /* приглушений індіго */
  --bg-dark:      #070B12;
  --bg-card:      #0C1220;
  --bg-card2:     #101828;
  --bg-card3:     #162035;
  --border-soft:  rgba(232, 160, 69, 0.18);
  --text-primary: #D4C9B8;
  --text-muted:   #6B7A8F;
  --text-bright:  #F5F0E8;
  --transition:   0.3s ease;
  --radius:       14px;
  --shadow-amber: 0 0 24px rgba(232,160,69,0.35), 0 0 60px rgba(232,160,69,0.12);
  --shadow-teal:  0 0 24px rgba(46,196,182,0.3),  0 0 60px rgba(46,196,182,0.1);
  --shadow-indigo:0 0 24px rgba(123,94,167,0.35), 0 0 60px rgba(123,94,167,0.12);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

/* === Scrollbar === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ============================================================
   AGE VERIFICATION POPUP
   ============================================================ */
#age-popup {
  position: fixed; inset: 0;
  background: rgba(4, 6, 10, 0.98);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
}
.age-popup__inner {
  background: linear-gradient(160deg, var(--bg-card2), var(--bg-card));
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 52px 44px;
  max-width: 500px; width: 92%;
  text-align: center;
  box-shadow: var(--shadow-amber), inset 0 0 60px rgba(232,160,69,0.03);
  animation: popupIn 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.82) translateY(28px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.age-popup__badge {
  width: 86px; height: 86px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #c47e20);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Syne', sans-serif;
  font-size: 30px; font-weight: 800; color: #fff;
  box-shadow: var(--shadow-amber);
}
.age-popup__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; font-weight: 400;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.age-popup__title {
  font-family: 'Syne', sans-serif;
  font-size: 21px; font-weight: 700;
  color: var(--text-bright); margin-bottom: 14px;
}
.age-popup__text { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.age-popup__buttons { display: flex; gap: 14px; justify-content: center; }
.btn-age-yes {
  background: linear-gradient(135deg, var(--accent), #c47e20);
  color: #fff; border: none; padding: 14px 34px;
  border-radius: 10px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  font-family: 'Syne', sans-serif;
  box-shadow: 0 4px 20px rgba(232,160,69,0.38);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,160,69,0.58); }
.btn-age-no {
  background: transparent; color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; cursor: pointer; transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.btn-age-no:hover { border-color: rgba(255,255,255,0.3); color: #ccc; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(10, 14, 22, 0.97);
  border-top: 1px solid var(--border-soft);
  padding: 16px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  z-index: 999; backdrop-filter: blur(12px);
  transform: translateY(100%); transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
.cookie-text { flex: 1; font-size: 13px; color: var(--text-muted); min-width: 200px; }
.cookie-text a { color: var(--accent); }
.cookie-text a:hover { text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.btn-cookie-accept {
  background: var(--accent); color: #0a0a0a;
  border: none; padding: 9px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all var(--transition); font-family: 'Syne', sans-serif;
}
.btn-cookie-accept:hover { background: #f0b356; }
.btn-cookie-decline {
  background: transparent; color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.1); padding: 9px 18px;
  border-radius: 8px; font-size: 13px; cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.3); color: #aaa; }

/* ============================================================
   TOP WARNING BAR
   ============================================================ */
.top-warning {
  background: linear-gradient(90deg, #08100e, #0a1210, #08100e);
  border-bottom: 1px solid rgba(46,196,182,0.15);
  padding: 8px 24px;
  text-align: center; font-size: 12px;
  color: var(--text-muted); letter-spacing: 0.5px;
}
.top-warning span { color: var(--accent); font-weight: 700; }
.top-warning a { color: var(--accent2); }
.top-warning a:hover { text-decoration: underline; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(7, 11, 18, 0.96);
  border-bottom: 1px solid rgba(232,160,69,0.1);
  backdrop-filter: blur(20px);
  padding: 0 24px;
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 24px;
}
.site-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'DM Serif Display', serif;
  font-size: 22px; text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent), #a06018);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff;
  box-shadow: 0 0 18px rgba(232,160,69,0.45);
}
.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-velvet { color: var(--accent); font-size: 20px; letter-spacing: -0.5px; }
.logo-hour   { color: var(--accent2); font-size: 20px; letter-spacing: -0.5px; }
.logo-club   { color: var(--text-muted); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; margin-top: 3px; font-family: 'DM Sans', sans-serif; font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: all var(--transition); white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-bright);
  background: rgba(232,160,69,0.1);
}
.header-cta {
  background: linear-gradient(135deg, var(--accent), #c47e20);
  color: #0a0a0a; padding: 10px 22px; border-radius: 10px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 0 18px rgba(232,160,69,0.3);
  transition: all var(--transition); font-family: 'Syne', sans-serif;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 0 32px rgba(232,160,69,0.5); color: #0a0a0a; }

.burger-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; flex-direction: column; gap: 5px;
}
.burger-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 1px;
  transition: all var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(232,160,69,0.09) 0%, transparent 58%),
    radial-gradient(ellipse at 85% 25%, rgba(46,196,182,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 55% 95%, rgba(123,94,167,0.07) 0%, transparent 50%),
    var(--bg-dark);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,160,69,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,69,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-particle {
  position: absolute; border-radius: 50%;
  animation: float linear infinite; opacity: 0.5;
}
@keyframes float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,69,0.1);
  border: 1px solid rgba(232,160,69,0.3);
  border-radius: 100px; padding: 6px 18px;
  font-size: 11px; color: var(--accent); font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}
.hero-badge::before { content: '◆'; font-size: 10px; }
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400; line-height: 1.1;
  color: var(--text-bright); margin-bottom: 22px;
}
.hero-title .neon-word {
  color: var(--accent);
  text-shadow: 0 0 28px rgba(232,160,69,0.6), 0 0 60px rgba(232,160,69,0.25);
  font-style: italic;
}
.hero-title .gold-word {
  color: var(--accent2);
  text-shadow: 0 0 20px rgba(46,196,182,0.5);
}
.hero-subtitle {
  font-size: 16px; color: var(--text-muted);
  max-width: 480px; margin-bottom: 36px; line-height: 1.8;
  font-family: 'DM Sans', sans-serif;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #c47e20);
  color: #0a0a0a; padding: 16px 34px; border-radius: 12px;
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
  box-shadow: 0 0 28px rgba(232,160,69,0.4);
  transition: all var(--transition); display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 48px rgba(232,160,69,0.6); color: #0a0a0a; }
.btn-secondary {
  background: transparent;
  color: var(--text-primary); padding: 16px 32px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.13);
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  transition: all var(--transition); display: inline-block;
}
.btn-secondary:hover { border-color: var(--accent2); background: rgba(46,196,182,0.07); color: #fff; }

.hero-stats { display: flex; gap: 32px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--accent);
  text-shadow: 0 0 14px rgba(232,160,69,0.45);
}
.stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Hero Right — Cards visual */
.hero-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center;
  min-height: 420px;
}
.hero-card {
  position: absolute;
  width: 200px; height: 280px;
  background: var(--bg-card2);
  border-radius: 18px;
  border: 1px solid rgba(232,160,69,0.2);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  transition: all var(--transition);
}
.hero-card:nth-child(1) { transform: rotate(-12deg) translate(-80px, 10px); }
.hero-card:nth-child(2) { transform: rotate(-4deg) translate(-10px, -20px); z-index: 2; }
.hero-card:nth-child(3) { transform: rotate(8deg) translate(70px, 5px); }
.hero-card:hover { transform: scale(1.05) rotate(0deg) translateY(-10px) !important; z-index: 10; box-shadow: var(--shadow-amber); }
.card-inner {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--bg-card3), var(--bg-card));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 20px;
}
.card-logo-wrap {
  width: 100%; display: flex; justify-content: center; align-items: center;
  background: rgba(255,255,255,0.05); border-radius: 12px; padding: 14px; margin-bottom: 8px;
  min-height: 70px;
}
.card-logo-wrap img { max-height: 44px; width: auto; }
.card-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; color: var(--text-bright); }
.card-tag {
  font-size: 10px; background: rgba(232,160,69,0.15);
  color: var(--accent); padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(232,160,69,0.3);
}
.card-stars { color: var(--accent); font-size: 12px; }

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section { padding: 80px 24px; position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--accent2); margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400; color: var(--text-bright);
  margin-bottom: 16px; line-height: 1.2;
}
.section-title .neon-text {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(232,160,69,0.45);
  font-style: italic;
}
.section-desc { font-size: 15px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ============================================================
   CASINO CARDS
   ============================================================ */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.casino-card {
  background: var(--bg-card);
  border: 1px solid rgba(232,160,69,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
}
.casino-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,160,69,0.04), transparent);
  opacity: 0; transition: opacity var(--transition);
  pointer-events: none;
}
.casino-card:hover {
  border-color: rgba(232,160,69,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-amber);
}
.casino-card:hover::before { opacity: 1; }

.casino-card--featured {
  border-color: rgba(46,196,182,0.25);
  background: linear-gradient(160deg, rgba(46,196,182,0.04), var(--bg-card));
}
.casino-card--featured:hover {
  border-color: var(--accent2);
  box-shadow: var(--shadow-teal);
}
.featured-badge {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--accent2), #1a9e95);
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 1px;
  font-family: 'DM Sans', sans-serif;
}

.casino-card-header {
  padding: 24px 24px 16px;
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.casino-logo-box {
  width: 72px; height: 72px; flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.casino-logo-box img { max-width: 52px; max-height: 52px; width: auto; height: auto; }
.casino-meta { flex: 1; }
.casino-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--text-bright); margin-bottom: 4px;
}
.casino-stars { color: var(--accent); font-size: 13px; margin-bottom: 4px; }
.casino-license { font-size: 11px; color: var(--text-muted); }
.casino-license span { color: #4ade80; }

.casino-card-body { padding: 16px 24px; }
.casino-bonus {
  background: linear-gradient(135deg, rgba(232,160,69,0.12), rgba(232,160,69,0.04));
  border: 1px solid rgba(232,160,69,0.2);
  border-radius: 10px; padding: 12px 16px; margin-bottom: 16px;
}
.bonus-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
.bonus-value {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 800; color: var(--accent);
  text-shadow: 0 0 10px rgba(232,160,69,0.4);
}
.bonus-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.casino-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.feature-tag {
  font-size: 11px; padding: 4px 10px; border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
}

.casino-card-footer { padding: 16px 24px 24px; display: flex; gap: 10px; }
.btn-casino-play {
  flex: 1; text-align: center;
  background: linear-gradient(135deg, var(--accent), #c47e20);
  color: #0a0a0a; padding: 12px; border-radius: 10px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(232,160,69,0.28);
}
.btn-casino-play:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,160,69,0.5); color: #0a0a0a; }
.btn-casino-review {
  padding: 12px 16px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-muted); font-size: 14px;
  transition: all var(--transition);
}
.btn-casino-review:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  background: linear-gradient(180deg, transparent, rgba(232,160,69,0.03) 30%, rgba(232,160,69,0.03) 70%, transparent);
}
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius); padding: 32px 24px;
  text-align: center; transition: all var(--transition);
}
.why-card:hover { border-color: rgba(232,160,69,0.3); transform: translateY(-4px); box-shadow: 0 10px 40px rgba(232,160,69,0.1); }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(232,160,69,0.15), rgba(46,196,182,0.08));
  border: 1px solid rgba(232,160,69,0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
}
.why-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; color: var(--text-bright); margin-bottom: 10px; }
.why-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0; position: relative; }
.steps-grid::before {
  content: ''; position: absolute;
  top: 40px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), var(--accent3), transparent);
}
.step-item { text-align: center; padding: 32px 20px; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 26px; font-weight: 800; color: var(--accent);
  margin: 0 auto 20px;
  box-shadow: 0 0 18px rgba(232,160,69,0.25);
}
.step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--text-bright); margin-bottom: 8px; }
.step-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PROMOTIONS SECTION
   ============================================================ */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.promo-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 30px; transition: all var(--transition);
}
.promo-card:hover { transform: translateY(-4px); border-color: rgba(232,160,69,0.3); box-shadow: var(--shadow-amber); }
.promo-stripe { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.promo-stripe--red    { background: linear-gradient(90deg, var(--accent3), #5e3a8a); }
.promo-stripe--gold   { background: linear-gradient(90deg, var(--accent), #c47e20); }
.promo-stripe--purple { background: linear-gradient(90deg, var(--accent2), #1a9e95); }
.promo-icon { font-size: 36px; margin-bottom: 16px; }
.promo-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-bright); margin-bottom: 8px; }
.promo-value { font-size: 26px; font-weight: 800; color: var(--accent); font-family: 'Syne', sans-serif; margin-bottom: 8px; }
.promo-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.promo-casino { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); }
.promo-casino-name { font-size: 12px; color: var(--text-muted); }
.promo-casino-name span { color: var(--accent); font-weight: 600; }

/* ============================================================
   RESPONSIBLE GAMING HIGHLIGHT
   ============================================================ */
.rg-banner {
  background: linear-gradient(135deg, rgba(46,196,182,0.07), rgba(123,94,167,0.06));
  border: 1px solid rgba(46,196,182,0.18);
  border-radius: 18px; padding: 42px;
  display: flex; gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.rg-banner::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
}
.rg-icon { font-size: 56px; flex-shrink: 0; }
.rg-content { flex: 1; }
.rg-title { font-family: 'DM Serif Display', serif; font-size: 22px; font-weight: 400; color: var(--text-bright); margin-bottom: 10px; }
.rg-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.rg-logos { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.rg-logo-item { height: 36px; opacity: 0.65; filter: grayscale(0.4) brightness(1.2); transition: all var(--transition); }
.rg-logo-item:hover { opacity: 1; filter: none; }
.rg-links { display: flex; gap: 12px; flex-wrap: wrap; }
.rg-link {
  padding: 8px 18px; border-radius: 8px;
  background: rgba(46,196,182,0.1);
  border: 1px solid rgba(46,196,182,0.25);
  color: var(--accent2); font-size: 13px; font-weight: 600;
  transition: all var(--transition); font-family: 'DM Sans', sans-serif;
}
.rg-link:hover { background: rgba(46,196,182,0.18); box-shadow: 0 0 14px rgba(46,196,182,0.25); color: var(--accent2); }

/* ============================================================
   REGULATORS / TRUSTED BY
   ============================================================ */
.trusted-section {
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.regulators-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 32px; }
.regulator-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.6; transition: all var(--transition); text-align: center;
}
.regulator-item:hover { opacity: 1; }
.regulator-item img { height: 40px; width: auto; filter: grayscale(0.4) brightness(1.3); transition: filter var(--transition); }
.regulator-item:hover img { filter: none; }
.regulator-name { font-size: 10px; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #05080f;
  border-top: 1px solid rgba(232,160,69,0.1);
}
.footer-main {
  max-width: 1280px; margin: 0 auto;
  padding: 64px 24px 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'DM Serif Display', serif; font-size: 20px;
  margin-bottom: 16px;
}
.footer-logo .logo-icon { width: 36px; height: 36px; font-size: 17px; }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.footer-regulators { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-reg-logo { height: 32px; width: auto; opacity: 0.55; filter: grayscale(0.5) brightness(1.2); transition: all var(--transition); }
.footer-reg-logo:hover { opacity: 1; filter: none; }
.footer-col h4 {
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--text-bright); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copyright { font-size: 12px; color: var(--text-muted); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: var(--text-muted); }
.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   18+ DISCLAIMER
   ============================================================ */
.disclaimer-section {
  background: #040710;
  border-top: 2px solid rgba(232,160,69,0.2);
  padding: 32px 24px;
}
.disclaimer-inner { max-width: 1280px; margin: 0 auto; }
.disclaimer-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.disclaimer-badge {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px; color: #0a0a0a;
  font-family: 'Syne', sans-serif;
}
.disclaimer-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-bright); }
.disclaimer-text { font-size: 11px; color: var(--text-muted); line-height: 1.8; border-left: 2px solid rgba(232,160,69,0.25); padding-left: 16px; }
.disclaimer-text a { color: var(--accent2); }
.disclaimer-text a:hover { text-decoration: underline; }
.disclaimer-logos { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 16px; }
.disclaimer-logos img { height: 28px; width: auto; opacity: 0.45; filter: grayscale(1); transition: all var(--transition); }
.disclaimer-logos img:hover { opacity: 0.75; filter: grayscale(0.3); }

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 850;
  background: rgba(7, 11, 18, 0.99); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 22px; padding: 14px 24px; }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--text-primary);
  font-size: 28px; cursor: pointer; padding: 8px;
}

/* ============================================================
   NEON GLOW ANIMATIONS
   ============================================================ */
@keyframes amberPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(232,160,69,0.4), 0 0 28px rgba(232,160,69,0.15); }
  50%       { text-shadow: 0 0 20px rgba(232,160,69,0.8), 0 0 55px rgba(232,160,69,0.35); }
}
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(232,160,69,0.25); }
  50%       { box-shadow: 0 0 30px rgba(232,160,69,0.6), 0 0 60px rgba(232,160,69,0.25); }
}
.neon-pulse { animation: amberPulse 3s ease-in-out infinite; }
.border-glow { animation: borderGlow 2.5s ease-in-out infinite; }

/* ============================================================
   GAMES / GAME TABS (legacy, fallback)
   ============================================================ */
.games-section { background: radial-gradient(ellipse at center, rgba(46,196,182,0.06) 0%, transparent 70%); }
.games-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.game-tab {
  padding: 10px 24px; border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.game-tab.active, .game-tab:hover {
  background: linear-gradient(135deg, var(--accent), #c47e20);
  border-color: transparent; color: #0a0a0a;
  box-shadow: 0 0 20px rgba(232,160,69,0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; margin-bottom: 20px; order: -1; }
  .hero-card { width: 150px; height: 210px; }
  .hero-card:nth-child(1) { transform: rotate(-12deg) translate(-60px, 5px); }
  .hero-card:nth-child(3) { transform: rotate(8deg) translate(50px, 0); }
}
@media (max-width: 768px) {
  .main-nav, .header-cta { display: none; }
  .burger-btn { display: flex; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 24px 24px; }
  .steps-grid::before { display: none; }
  .rg-banner { flex-direction: column; text-align: center; }
  .hero-stats { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .casino-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .age-popup__inner { padding: 36px 22px; }
  .age-popup__buttons { flex-direction: column; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
