/* style.css — Brand Identity Design System for getcoral.co.uk */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --accent:       #00a4e4;   /* Coral Light Blue */
  --accent-light: #48c6f7;
  --accent-hover: #0081b4;
  --accent-gold:  #f5b800;   /* Gold/Yellow for High-Priority CTA */
  --accent-gold-hover: #e0a700;
  --bg-primary:   #061121;   /* Deep Dark Blue */
  --bg-secondary: rgba(9, 25, 48, 0.85);   /* Medium Navy Translucent Header/Footer */
  --bg-card:      rgba(12, 27, 48, 0.65);   /* Glassmorphic Card Background */
  --border-color: rgba(26, 52, 84, 0.6);   /* Border lines */
  --border-glow:  rgba(0, 164, 228, 0.25);
  --text-main:    #e2e8f0;
  --text-muted:   #94a3b8;
  --text-white:   #ffffff;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at 50% 0%, #0c1f38 0%, var(--bg-primary) 70%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.25s, text-shadow 0.25s; }
a:hover { color: var(--accent-light); text-decoration: none; text-shadow: 0 0 8px rgba(0, 164, 228, 0.3); }
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 500;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--accent-gold);
  color: #061121;
  font-weight: 800;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}

/* Typography */
h1, h2, h3, h4 { color: var(--text-white); font-weight: 800; margin-bottom: 12px; letter-spacing: 0; }
h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); color: var(--accent); text-shadow: 0 0 15px rgba(0, 164, 228, 0.2); }
h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.85rem);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
  margin-top: 36px;
  margin-bottom: 20px;
  position: relative;
}
h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
h3 { font-size: 1.25rem; color: var(--accent-light); margin-top: 24px; }
p { margin-bottom: 20px; font-size: 1.02rem; color: #cbd5e1; text-align: left; font-weight: 400; line-height: 1.72; }
strong { color: var(--text-white); font-weight: 600; }

/* Lists & Tables */
ul, ol { margin-bottom: 20px; padding-left: 28px; }
li { margin-bottom: 10px; color: #cbd5e1; }

/* Layout & Containers */
header {
  background: var(--bg-secondary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border-color);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo-container { display: flex; align-items: center; }
.logo-container img { height: 38px; width: auto; transition: transform 0.3s; }
.logo-container img:hover { transform: scale(1.03); }

/* Nav links desktop */
.main-nav { display: flex; align-items: center; }
.nav-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text-main); font-size: 0.95rem; font-weight: 600; text-decoration: none; padding: 8px 0; border-bottom: 2px solid transparent; transition: all 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-light); border-bottom: 2px solid var(--accent); text-shadow: 0 0 8px rgba(0, 164, 228, 0.4); }

/* Burger button mobile */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--text-main); }
.burger span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
@media (max-width: 768px) {
  .burger { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 70px; left: 0; right: 0;
    background: #091930; padding: 12px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 1.05rem; border-bottom: none !important; }
  .nav-links a:hover { background: #12243d; color: var(--accent-light); }
}

main { max-width: 1100px; margin: 0 auto; padding: 32px 20px; }
.breadcrumb {
  margin: 0 0 18px;
  font-size: 0.88rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumb li {
  margin: 0;
  color: var(--text-muted);
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: #5f738b;
}
.breadcrumb a {
  color: var(--accent-light);
  font-weight: 700;
}
section {
  margin-bottom: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
section:hover {
  border-color: var(--border-glow);
  box-shadow: 0 10px 40px rgba(0, 164, 228, 0.08);
}
section.hero {
  text-align: center;
  padding: 60px 32px;
  background: linear-gradient(135deg, rgba(6, 17, 33, 0.8) 0%, rgba(6, 17, 33, 0.95) 100%), url('/foto/banner.jpg');
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  border-left: none;
  border-right: none;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;

  /* Full-width breakout */
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}
section.hero > h1,
section.hero > p,
section.hero > div,
section.hero > .promo-badge,
section.hero > .verified-badge {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
section.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; color: #ffffff; font-weight: 900; letter-spacing: 0; }
section.hero p { font-size: 1.05rem; color: #cbd5e1; max-width: 800px; margin: 20px auto 30px; text-align: center; line-height: 1.7; }

/* Custom Badge Tags (Verde design style) */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid #2ecc71;
  color: #2ecc71;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin: 0 auto 16px;
  letter-spacing: 0.02em;
}
.promo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(12, 27, 48, 0.85);
  border-left: 4px solid var(--accent-gold);
  border-radius: 4px;
  padding: 12px 24px;
  margin: 16px auto;
  text-align: center;
  max-width: fit-content;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.promo-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.promo-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

/* CTAs with Glow and Hover scale */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #d49f00 100%);
  color: #061121;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px rgba(245, 184, 0, 0.4);
  letter-spacing: 0;
}
.hero .cta-btn {
  border-radius: 50px; /* pill shape */
  border: 2px solid #ffffff; /* white outline */
  padding: 14px 44px;
  font-weight: 900;
}
.cta-btn:hover {
  background: linear-gradient(135deg, #ffd000 0%, var(--accent-gold) 100%);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 184, 0, 0.6);
  color: #061121;
  text-shadow: none;
}
.cta-btn:active,
.cta-btn:focus,
.cta-btn:visited {
  transform: translateY(0);
  color: #061121;
  text-shadow: none;
}

/* Fast conversion path */
.money-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -18px;
  padding: 18px;
  border-color: rgba(245, 184, 0, 0.32);
  background: rgba(6, 17, 33, 0.72);
}
.money-path a {
  display: block;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(245, 184, 0, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(245, 184, 0, 0.12), rgba(12, 27, 48, 0.72));
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.money-path a:hover {
  border-color: var(--accent-gold);
  background: linear-gradient(180deg, rgba(245, 184, 0, 0.2), rgba(12, 27, 48, 0.82));
  color: #ffffff;
  transform: translateY(-2px);
}
.money-path strong {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-gold);
  font-size: 0.88rem;
  text-transform: uppercase;
}
.money-path span {
  display: block;
  color: #d9e3ee;
  font-size: 0.92rem;
  line-height: 1.35;
}

/* Tables */
table { width: 100%; border-collapse: collapse; margin-bottom: 30px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-color); }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border-color); font-size: 0.95rem; }
th { background: #091930; color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; }
td { background: rgba(12, 27, 48, 0.4); color: #cbd5e1; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(0, 164, 228, 0.04); }
td strong { color: #ffffff; }

/* Custom Box for Pros & Cons */
.pros-cons-container { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 30px; }
.pros-box, .cons-box { background: rgba(12, 27, 48, 0.5); border: 1px solid var(--border-color); border-radius: 8px; padding: 20px; transition: border-color 0.3s; }
.pros-box:hover { border-color: rgba(46, 204, 113, 0.3); }
.cons-box:hover { border-color: rgba(231, 76, 60, 0.3); }
.pros-box ul, .cons-box ul { list-style: none; padding-left: 0; }
.pros-box li, .cons-box li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 12px; font-size: 0.95rem; }
.pros-box li::before { content: "✓"; color: #2ecc71; font-weight: 900; }
.cons-box li::before { content: "✗"; color: #e74c3c; font-weight: 900; }

@media (max-width: 600px) {
  table {
    border: none;
    overflow: visible;
    background: transparent;
  }
  table, thead, tbody, th, td, tr { display: block; }
  thead tr { display: none; }
  tbody { display: grid; gap: 14px; }
  tr {
    border: 1px solid rgba(0, 164, 228, 0.22);
    border-radius: 8px;
    margin: 0;
    overflow: hidden;
    background: rgba(12, 27, 48, 0.58);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }
  td {
    padding: 14px 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
    position: relative;
    min-height: 0;
    background: transparent;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  td:last-child { border-bottom: none; }
  td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--accent-light);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
  }
  td strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.35;
  }
  .pros-cons-container { grid-template-columns: 1fr; }
}

/* Brand Banner */
.brand-banner { width: 100%; max-width: 900px; margin: 0 auto 36px; display: block; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05); }
.brand-banner img { width: 100%; height: auto; display: block; border-radius: 12px; }

/* Game Cards Grid */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px; align-items: start; }
.game-card {
  background: rgba(12, 27, 48, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(0, 164, 228, 0.15);
}
.game-card a { display: block; overflow: hidden; }
.game-card img { width: 100%; aspect-ratio: 226 / 338; object-fit: cover; display: block; transition: transform 0.5s; }
.game-card:hover img { transform: scale(1.03); }
.game-card-info { padding: 14px; }
.game-card p { padding: 0; margin-bottom: 6px; font-size: 0.88rem; text-align: center; }
.game-card p.game-title { font-weight: 700; color: #ffffff; font-size: 0.95rem; line-height: 1.3; }
.game-card p.game-provider { color: var(--accent-light); font-size: 0.8rem; font-weight: 500; }
.game-card p.game-specs { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 0; }

/* Homepage Slot Showcase */
.featured-slots {
  border-color: rgba(0, 164, 228, 0.28);
  background: radial-gradient(circle at 50% 0%, rgba(0, 164, 228, 0.16), rgba(12, 27, 48, 0.72) 42%, rgba(12, 27, 48, 0.62));
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.section-heading h2 {
  margin-bottom: 10px;
}
.section-heading p {
  margin-bottom: 0;
  text-align: center;
}
.home-slots-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.home-slot-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(6, 17, 33, 0.58);
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.home-slot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 164, 228, 0.75);
  box-shadow: 0 18px 34px rgba(0, 164, 228, 0.14);
}
.home-slot-card img {
  width: 100%;
  aspect-ratio: 226 / 338;
  object-fit: cover;
  display: block;
}
.home-slot-card span {
  display: block;
  padding: 12px 10px 3px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}
.home-slot-card small {
  display: block;
  padding: 0 10px 13px;
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}
.featured-slots-cta {
  max-width: 340px;
  margin: 28px auto 0;
  text-align: center;
}

/* KYC / Help page overview cards */
.kyc-overview {
  border-color: rgba(245, 184, 0, 0.26);
  background: linear-gradient(180deg, rgba(245, 184, 0, 0.09), rgba(12, 27, 48, 0.68));
}
.kyc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.kyc-card {
  min-height: 190px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(6, 17, 33, 0.58);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}
.kyc-card-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(245, 184, 0, 0.14);
  color: var(--accent-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.kyc-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.12rem;
}
.kyc-card p {
  margin: 0;
  color: #b9c7d8;
  text-align: left;
  font-size: 0.94rem;
  line-height: 1.6;
}

/* FAQ Accordions */
details { border: 1px solid var(--border-color); border-radius: 8px; margin-bottom: 14px; overflow: hidden; background: rgba(12, 27, 48, 0.5); transition: border-color 0.3s; }
details:hover { border-color: rgba(0, 164, 228, 0.3); }
summary { padding: 18px 24px; cursor: pointer; font-weight: 700; background: rgba(9, 25, 48, 0.4); list-style: none; display: flex; justify-content: space-between; align-items: center; color: #ffffff; transition: background 0.25s, color 0.25s; font-size: 1.05rem; }
summary:hover { background: rgba(0, 164, 228, 0.08); color: var(--accent-light); }
summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; font-weight: bold; transition: transform 0.2s; }
details[open] summary::after { content: "−"; }
details p { padding: 20px 24px; background: rgba(6, 17, 33, 0.5); margin-bottom: 0; font-size: 0.98rem; color: #cbd5e1; text-align: left; border-top: 1px solid var(--border-color); }

/* Sportsbook Cards & Lists */
.sports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-bottom: 30px; }
.sport-card {
  background: rgba(12, 27, 48, 0.7);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.sport-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 164, 228, 0.12);
}
.sport-card h3 { margin-top: 0; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; margin-bottom: 16px; font-size: 1.2rem; }

/* Entity-first internal links */
.internal-links {
  border-color: rgba(0, 164, 228, 0.35);
  background: linear-gradient(180deg, rgba(0, 164, 228, 0.12), rgba(12, 27, 48, 0.7));
}
.internal-links h2 { margin-bottom: 10px; }
.internal-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}
.internal-link-list li { margin: 0; }
.internal-link-list a {
  display: block;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}
.internal-link-list a:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: rgba(0, 164, 228, 0.12);
}

/* Footer with Trust Logos and Clear Layout */
footer {
  background: #040b15;
  border-top: 1px solid var(--border-color);
  text-align: center;
  padding: 54px 24px 64px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 60px;
}
footer > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
footer a { color: var(--text-main); transition: color 0.25s; font-weight: 500; }
footer a:hover { color: var(--accent-light); text-decoration: none; }
.footer-disclaimer {
  max-width: 920px;
  margin: 0 auto 28px;
  font-size: 0.82rem;
  color: #91a6bc;
  line-height: 1.7;
  text-align: center;
  background: rgba(12, 27, 48, 0.42);
  padding: 22px 26px;
  border-radius: 8px;
  border: 1px solid rgba(0, 164, 228, 0.2);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}
footer > p {
  max-width: 920px;
  margin-bottom: 14px;
}
.footer-nav {
  max-width: 760px;
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}
.footer-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 700;
  font-size: 0.9rem;
}
.footer-nav a:hover {
  border-color: rgba(0, 164, 228, 0.55);
  background: rgba(0, 164, 228, 0.1);
}
.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}
.footer-link-group {
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(12, 27, 48, 0.34);
}
.footer-link-group h2 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 13px;
  color: #ffffff;
  font-size: 0.95rem;
}
.footer-link-group h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 164, 228, 0.65);
  transform: translateX(-50%);
}
.footer-link-group a {
  display: block;
  margin: 0 0 10px;
  color: #b7c5d8;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.35;
}
.footer-link-group a:hover { color: var(--accent-light); }

@media (max-width: 980px) {
  .footer-sitemap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .money-path { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-slots-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .kyc-card-grid { grid-template-columns: 1fr; }
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .hero { padding: 40px 16px; }
  .cta-btn { width: 100%; display: block; padding: 18px; }
  main { padding: 20px 12px; }
  section { padding: 20px 16px; }
  .money-path {
    grid-template-columns: 1fr;
    margin-top: -12px;
    padding: 12px;
  }
  .money-path a { min-height: 74px; }
  section.hero h1 { font-size: clamp(1.65rem, 9vw, 2.15rem); }
  section.hero p { font-size: 0.98rem; }
  .home-slots-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .home-slot-card span { font-size: 0.82rem; }
  .home-slot-card small { font-size: 0.72rem; }
  .kyc-card { min-height: 0; padding: 18px 16px; }
  footer { padding: 40px 14px 54px; }
  .footer-disclaimer { padding: 18px 16px; }
  .footer-sitemap { grid-template-columns: 1fr; gap: 12px; }
  .footer-link-group { padding: 18px 14px; }
  .footer-nav { gap: 10px; }
  .footer-nav a { width: 100%; }
  body { padding-bottom: 86px; }
}

/* Mobile Sticky CTA Bar with modern styling */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #d49f00 100%);
  padding: 14px 20px 16px;
  z-index: 300;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.6);
  border-top: 1px solid #ffd000;
}
.mobile-cta-bar a {
  color: #061121; font-weight: 900; font-size: 1.05rem;
  text-decoration: none; display: block; line-height: 1.35;
}
.mobile-cta-bar a:hover,
.mobile-cta-bar a:active,
.mobile-cta-bar a:focus,
.mobile-cta-bar a:visited {
  color: #061121;
  text-decoration: none;
  text-shadow: none;
}
.mobile-cta-bar .mcta-bonus {
  font-size: 1.1rem; font-weight: 900; display: block; letter-spacing: 0;
}
.mobile-cta-bar .mcta-sub {
  font-size: 0.75rem; color: rgba(6,17,33,0.85); display: block; margin-top: 4px; font-weight: 700;
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 85px; } /* prevents content overlap under bottom sticky bar */
}
