/* ============================================================
   Awintura Casino Chile — Main Stylesheet
   Domain: awintura-oficial.cl  |  Lang: es-CL
   Brand: Gold #F5A623 / Dark #0A0A14
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Montserrat:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ---- CSS Variables ---------------------------------------- */
:root {
  --gold:          #F5A623;
  --gold-dark:     #C97B00;
  --gold-light:    #FFDD66;
  --gold-grad:     linear-gradient(135deg, #FFDD66 0%, #F5A623 50%, #C97B00 100%);
  --gold-grad2:    linear-gradient(90deg, #C97B00 0%, #F5A623 100%);
  --gold-text:     linear-gradient(135deg, #FFDD66, #F5A623, #C97B00);
  --bg:            #080812;
  --bg-card:       #0E0E1C;
  --bg-card2:      #151528;
  --bg-nav:        rgba(6, 6, 16, 0.96);
  --text:          #EEEEF6;
  --text-muted:    #7878A0;
  --text-dim:      #44445C;
  --border:        rgba(245, 166, 35, 0.11);
  --border-gold:   rgba(245, 166, 35, 0.42);
  --green:         #00CCAA;
  --red:           #FF4757;
  --blue:          #3D7FFF;
  --purple:        #9B6FFF;
  --radius:        10px;
  --radius-lg:     18px;
  --radius-xl:     26px;
  --shadow:        0 10px 40px rgba(0,0,0,0.55);
  --shadow-gold:   0 0 28px rgba(245,166,35,0.22);
  --trans:         0.24s ease;
  --header-h:      68px;
}

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ---- Custom Scrollbar -------------------------------------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---- Typography -------------------------------------------- */
h1, h2, h3 { font-family: 'Cinzel', Georgia, serif; line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; }
h2 { font-size: clamp(1.35rem, 3.5vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.4rem); font-weight: 600; }
p { margin-bottom: 0.9em; }
p:last-child { margin-bottom: 0; }

.gold-text {
  background: var(--gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
  display: block;
}

/* ---- Layout ----------------------------------------------- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 22px; }
.section     { padding: 82px 0; }
.section-sm  { padding: 52px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flex         { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-col     { display: flex; flex-direction: column; }
.gap-1  { gap: 8px; }
.gap-2  { gap: 16px; }
.gap-3  { gap: 24px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 28px; }
.mt-4 { margin-top: 44px; }
.mb-3 { margin-bottom: 24px; }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px; font-weight: 700; font-size: 0.88rem;
  cursor: pointer; transition: all var(--trans); border: none; white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-gold {
  background: var(--gold-grad); color: #050505;
  box-shadow: 0 4px 22px rgba(245,166,35,0.38);
}
.btn-gold:hover {
  transform: translateY(-2px); color: #050505;
  box-shadow: 0 8px 34px rgba(245,166,35,0.54);
}
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #050505; }
.btn-dark { background: var(--bg-card2); color: var(--text); border: 1px solid var(--border); }
.btn-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-green { background: linear-gradient(135deg, #009977, #00CCAA); color: #050505; font-weight: 700; }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,204,170,0.35); color: #050505; }
.btn-lg  { padding: 16px 44px; font-size: 1rem; }
.btn-sm  { padding: 8px 18px; font-size: 0.78rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Cards ------------------------------------------------- */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: all var(--trans);
}
.card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.card-glass {
  background: rgba(255,255,255,0.028);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
}

/* ---- Header / Navigation ---------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1280px; margin: 0 auto; padding: 0 22px; gap: 16px;
}
.header-logo {
  flex-shrink: 0; display: flex; align-items: center;
  text-decoration: none;
}
.logo-svg { height: 36px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.header-nav a {
  padding: 8px 13px; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted); transition: all var(--trans); white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active { color: var(--gold); background: rgba(245,166,35,0.08); }
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.tracker-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold-grad); color: #050505 !important;
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.03em;
  padding: 10px 22px; border-radius: 50px;
  box-shadow: 0 4px 18px rgba(245,166,35,0.4);
  transition: all var(--trans); white-space: nowrap;
}
.tracker-btn:hover { transform: translateY(-2px); box-shadow: 0 7px 26px rgba(245,166,35,0.55); color: #050505 !important; }
.btn-nav-login {
  padding: 8px 18px; border-radius: 50px;
  border: 1.5px solid var(--border-gold); color: var(--gold);
  font-weight: 700; font-size: 0.78rem; transition: all var(--trans);
}
.btn-nav-login:hover { background: rgba(245,166,35,0.1); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border: none; background: none;
}
.hamburger span {
  display: block; width: 23px; height: 2px; background: var(--gold);
  border-radius: 2px; transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--bg-nav); z-index: 998;
  border-bottom: 1px solid var(--border);
  padding: 16px 22px 22px; flex-direction: column; gap: 4px;
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px; border-radius: 10px; color: var(--text-muted);
  font-weight: 600; font-size: 0.9rem; transition: all var(--trans);
}
.mobile-nav a:hover { background: rgba(245,166,35,0.08); color: var(--gold); }
.mobile-cta-zone {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.mobile-tracker-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold-grad); color: #050505 !important;
  font-weight: 800; font-size: 0.92rem; padding: 15px;
  border-radius: 12px; text-align: center;
}
.mobile-login-btn {
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border-gold); color: var(--gold) !important;
  font-weight: 700; font-size: 0.88rem; padding: 12px;
  border-radius: 12px; text-align: center;
}

/* ---- Hero -------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(245,166,35,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(61,127,255,0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 85%, rgba(155,111,255,0.06) 0%, transparent 40%),
    var(--bg);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.035;
  background-image:
    linear-gradient(rgba(245,166,35,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,1) 1px, transparent 1px);
  background-size: 66px 66px;
}
.hero-visual {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  width: 44%; max-width: 560px; z-index: 1; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.1); border: 1px solid rgba(245,166,35,0.32);
  color: var(--gold); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 22px; text-transform: uppercase;
}
.hero-badge::before { content: '★'; }
.hero-title { margin-bottom: 18px; }
.hero-desc { font-size: 1.02rem; color: var(--text-muted); max-width: 500px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 0.05em;
  background: var(--gold-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.hero-stat-label { font-size: 0.73rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px; }

/* ---- Page Hero (inner pages) ------------------------------ */
.page-hero {
  padding: calc(var(--header-h) + 52px) 0 52px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(245,166,35,0.12) 0%, transparent 60%),
    var(--bg);
}
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,18,0.96) 0%, rgba(8,8,18,0.78) 48%, rgba(8,8,18,0.46) 100%),
    url('/img/hero-awintura-casino.webp') center right / cover no-repeat;
  opacity: 0.72;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 18% 32%, rgba(245,166,35,0.16), transparent 52%);
}
.page-hero .pos { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.76rem; color: var(--text-dim); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .cur { color: var(--gold); }

/* ---- Section Headers -------------------------------------- */
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head h2 { margin-top: 6px; }
.section-subtitle { color: var(--text-muted); font-size: 0.92rem; margin-top: 10px; }
.section-subtitle.center { max-width: 560px; margin: 10px auto 0; }

/* ---- Stats Row -------------------------------------------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 18px; text-align: center;
  transition: all var(--trans);
}
.stat-box:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.stat-box-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.3rem; letter-spacing: 0.05em;
  background: var(--gold-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.stat-box-label { font-size: 0.74rem; color: var(--text-muted); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---- Game Cards ------------------------------------------- */
.game-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--trans); cursor: pointer;
}
.game-card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.game-thumb { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.game-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--trans);
}
.game-card:hover .game-overlay { opacity: 1; }
.play-circle {
  width: 52px; height: 52px; border-radius: 50%; background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #050505;
}
.game-body { padding: 13px 15px; }
.game-name { font-weight: 700; font-size: 0.86rem; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-info { display: flex; justify-content: space-between; font-size: 0.73rem; color: var(--text-muted); }
.rtp-val { color: var(--green); font-weight: 600; }

/* ---- Game thumbnail CSS art ------------------------------- */
.gt-fire    { background: linear-gradient(135deg, #0d0605 0%, #3a0a00 40%, #770f00 70%, #cc2200 100%); }
.gt-irish   { background: linear-gradient(135deg, #020e04 0%, #073a10 45%, #0e6b20 80%, #12900a 100%); }
.gt-ocean   { background: linear-gradient(135deg, #020814 0%, #062240 45%, #093b6e 80%, #0a4d8c 100%); }
.gt-fantasy { background: linear-gradient(135deg, #0d0520 0%, #220a50 45%, #3d0f88 80%, #5c1dc2 100%); }
.gt-egypt   { background: linear-gradient(135deg, #100900 0%, #3a2200 45%, #7a4d00 80%, #c27700 100%); }
.gt-fruit   { background: linear-gradient(135deg, #060d04 0%, #1a3a0a 30%, #2e6012 60%, #5a9e1c 90%); }
.gt-shark   { background: linear-gradient(135deg, #020c18 0%, #04234a 40%, #063d7a 70%, #0855a8 100%); }
.gt-greek   { background: linear-gradient(135deg, #100c00 0%, #382800 35%, #6e5200 65%, #b07d00 100%); }
.gt-icon { font-size: 3rem; text-shadow: 0 0 20px rgba(255,255,255,0.2); pointer-events: none; }



/* ---- Raster brand photography ----------------------------- */
.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 26px 80px rgba(0,0,0,0.58), var(--shadow-gold);
}
.hero-photo img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.game-thumb.photo-thumb { background: #080812; }
.game-thumb.photo-thumb img,
.blog-thumb img,
.testi-avatar img,
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-thumb.photo-thumb .game-overlay { z-index: 2; }
.game-thumb.photo-thumb::after,
.blog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.24));
  pointer-events: none;
}
.testi-avatar { overflow: hidden; }
.testi-avatar img { border-radius: 50%; }

/* ---- Tables ----------------------------------------------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
table { width: 100%; min-width: 540px; border-collapse: collapse; }
thead th {
  background: var(--bg-card2); color: var(--gold); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 13px 16px; text-align: left; white-space: nowrap;
  border-bottom: 1px solid var(--border-gold);
}
tbody tr { border-bottom: 1px solid var(--border); transition: background var(--trans); }
tbody tr:hover { background: rgba(245,166,35,0.04); }
tbody td { padding: 12px 16px; font-size: 0.86rem; vertical-align: middle; }
.td-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--gold); letter-spacing: 0.05em; }
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
}
.badge-gold   { background: rgba(245,166,35,0.14); color: #FFDD66; }
.badge-green  { background: rgba(0,204,170,0.14); color: var(--green); }
.badge-red    { background: rgba(255,71,87,0.14); color: var(--red); }
.badge-blue   { background: rgba(61,127,255,0.14); color: var(--blue); }
.badge-purple { background: rgba(155,111,255,0.14); color: var(--purple); }

/* ---- Charts (CSS-based) ----------------------------------- */
.chart-box {
  padding: 24px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.chart-box-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 22px; color: var(--text); }

/* Horizontal bar chart */
.hbar { display: flex; flex-direction: column; gap: 13px; }
.hbar-row { display: flex; align-items: center; gap: 12px; }
.hbar-lbl { font-size: 0.78rem; color: var(--text-muted); min-width: 115px; flex-shrink: 0; }
.hbar-track { flex: 1; height: 9px; background: rgba(255,255,255,0.05); border-radius: 5px; overflow: hidden; }
.hbar-fill   { height: 100%; border-radius: 5px; background: var(--gold-grad2); transition: width 1.2s ease; }
.hbar-fill.c-green  { background: linear-gradient(90deg, #009977, #00CCAA); }
.hbar-fill.c-blue   { background: linear-gradient(90deg, #1a50cc, #3D7FFF); }
.hbar-fill.c-purple { background: linear-gradient(90deg, #6b3fcc, #9B6FFF); }
.hbar-fill.c-red    { background: linear-gradient(90deg, #bb1a28, #FF4757); }
.hbar-val  { font-size: 0.76rem; font-weight: 700; color: var(--gold); min-width: 38px; text-align: right; }

/* CSS donut chart */
.donut-wrap { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.donut {
  width: 148px; height: 148px; border-radius: 50%;
  flex-shrink: 0; position: relative;
}
.donut-hole {
  position: absolute; inset: 26px; border-radius: 50%;
  background: var(--bg-card); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.donut-hole-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem;
  background: var(--gold-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.donut-hole-lbl { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.donut-legend { display: flex; flex-direction: column; gap: 10px; flex: 1; min-width: 160px; }
.dl-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; }
.dl-dot { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.dl-name { color: var(--text-muted); flex: 1; }
.dl-val  { color: var(--text); font-weight: 700; }

/* SVG line chart */
.svg-chart-wrap { overflow: hidden; }

/* ---- Bonus Cards ------------------------------------------ */
.bonus-card {
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; position: relative; overflow: hidden;
}
.bonus-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.1), transparent);
  pointer-events: none;
}
.bonus-card.featured { border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.bonus-emoji { font-size: 2.2rem; margin-bottom: 14px; }
.bonus-amount {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; letter-spacing: 0.05em;
  background: var(--gold-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.bonus-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 5px; }
.bonus-desc { font-size: 0.84rem; color: var(--text-muted); margin-top: 14px; line-height: 1.6; }

/* ---- Jackpot Bar ------------------------------------------ */
.jackpot-bar {
  background: linear-gradient(135deg, #160330, #0a0118);
  border: 1px solid rgba(245,166,35,0.28); border-radius: var(--radius-lg);
  padding: 22px 28px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.jackpot-icon { font-size: 2.4rem; flex-shrink: 0; }
.jackpot-lbl { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.jackpot-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; letter-spacing: 0.08em;
  background: var(--gold-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}

/* ---- Testimonials ----------------------------------------- */
.testimonial {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; height: 100%;
}
.testi-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { font-size: 0.87rem; color: var(--text-muted); font-style: italic; margin-bottom: 18px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flexshrink: 0;
  background: var(--bg-card2); border: 2px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.testi-name { font-weight: 700; font-size: 0.84rem; }
.testi-loc  { font-size: 0.73rem; color: var(--text-muted); }

/* ---- FAQ -------------------------------------------------- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 9px; overflow: hidden; }
.faq-q {
  padding: 15px 20px; cursor: pointer; font-weight: 600; font-size: 0.88rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--bg-card); transition: background var(--trans); user-select: none;
}
.faq-q:hover { background: var(--bg-card2); }
.faq-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; font-style: normal; font-weight: 400; line-height: 1; }
.faq-a {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-muted); font-size: 0.86rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 14px 20px 18px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ---- Forms ------------------------------------------------ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-input {
  width: 100%; padding: 14px 16px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-size: 0.9rem; transition: border-color var(--trans);
}
.form-input:focus { outline: none; border-color: var(--gold); background: var(--bg-card2); }
.form-input::placeholder { color: var(--text-dim); }
.form-hint { font-size: 0.74rem; color: var(--text-dim); margin-top: 6px; }
.form-divider { display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-size: 0.8rem; margin: 22px 0; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ---- Footer ----------------------------------------------- */
.site-footer { background: var(--bg-nav); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px;
}
.footer-brand-desc { color: var(--text-muted); font-size: 0.83rem; margin-top: 16px; line-height: 1.75; }
.footer-col h4 {
  color: var(--gold); font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 18px; font-family: 'Montserrat', sans-serif;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.84rem; transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: 0.76rem; color: var(--text-dim); }
.social-row { display: flex; gap: 9px; }
.social-btn {
  width: 35px; height: 35px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; color: var(--text-muted); transition: all var(--trans);
}
.social-btn:hover { border-color: var(--border-gold); color: var(--gold); background: rgba(245,166,35,0.08); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 14px; }
.resp-badge {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 6px; font-size: 0.68rem; color: var(--text-dim);
}
.footer-disclaimer { font-size: 0.72rem; color: var(--text-dim); line-height: 1.6; margin-top: 8px; }

/* ---- SEO Text Section ------------------------------------- */
.seo-section { background: var(--bg-card); border-top: 1px solid var(--border); padding: 52px 0; }
.seo-text { color: var(--text-muted); font-size: 0.86rem; line-height: 1.85; }
.seo-text h2 { color: var(--text); margin: 28px 0 12px; font-size: 1.08rem; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.seo-text h3 { color: var(--text); margin: 20px 0 10px; font-size: 0.96rem; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.seo-text a { color: var(--gold); }
.seo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }

/* ---- Live Winners Ticker ---------------------------------- */
.winners-bar {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 18px;
}
.winners-lbl { font-size: 0.7rem; color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.winner-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.winners-list { display: flex; gap: 24px; overflow: hidden; flex-wrap: wrap; }
.winner-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; white-space: nowrap; }
.winner-user { color: var(--text-muted); }
.winner-game { color: var(--text); font-weight: 600; }
.winner-amount { color: var(--green); font-weight: 800; }

/* ---- Provider Pills --------------------------------------- */
.providers-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.prov-pill {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 9px 18px; border-radius: 8px; font-size: 0.78rem; font-weight: 700;
  color: var(--text-muted); transition: all var(--trans); cursor: default;
}
.prov-pill:hover { border-color: var(--border-gold); color: var(--gold); }

/* ---- Author Card ------------------------------------------ */
.author-card {
  display: flex; align-items: flex-start; gap: 34px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px; flex-wrap: wrap;
}
.author-photo-wrap {
  width: 150px; height: 196px; border-radius: var(--radius-lg); flex-shrink: 0;
  border: 2px solid var(--border-gold); overflow: hidden;
  background: linear-gradient(160deg, #1a0e2e 0%, #0e1a2e 100%);
  display: flex; align-items: flex-end; justify-content: center;
}
.author-name { font-size: 1.45rem; margin-bottom: 4px; }
.author-role { color: var(--gold); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.author-bio  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; }
.author-social { display: flex; gap: 10px; margin-top: 20px; }

/* ---- App Section ------------------------------------------ */
.app-phone {
  width: 210px; height: 380px; border-radius: 28px;
  border: 2px solid var(--border-gold); overflow: hidden;
  flex-shrink: 0; position: relative;
  background: linear-gradient(160deg, #0a0814, #10082c);
  box-shadow: 0 20px 60px rgba(0,0,0,0.65), var(--shadow-gold);
}
.app-phone-notch {
  width: 80px; height: 18px; background: #050505; border-radius: 0 0 12px 12px;
  margin: 0 auto; position: relative; z-index: 2;
}
.app-phone-screen { padding: 10px 12px; }
.app-dl-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--bg-card2); border: 1px solid var(--border-gold);
  padding: 13px 22px; border-radius: var(--radius); transition: all var(--trans); cursor: pointer;
}
.app-dl-btn:hover { background: rgba(245,166,35,0.1); transform: translateY(-2px); }
.app-dl-icon { font-size: 2rem; flex-shrink: 0; }
.app-dl-sub  { font-size: 0.68rem; color: var(--text-muted); display: block; }
.app-dl-name { font-weight: 800; font-size: 0.92rem; display: block; }

/* ---- Tournament Cards ------------------------------------- */
.tourn-card {
  background: linear-gradient(135deg, #170330 0%, #0d1a38 100%);
  border: 1px solid var(--border-gold); border-radius: var(--radius-lg);
  padding: 24px; position: relative; overflow: hidden;
}
.tourn-card::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.08), transparent);
  pointer-events: none;
}
.tourn-status { display: flex; align-items: center; gap: 7px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; animation: blink 1.5s infinite; }
.pulse-dot.live    { background: var(--red); }
.pulse-dot.soon    { background: var(--blue); }
.pulse-dot.finish  { background: var(--text-muted); animation: none; }
.tourn-prize {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.1rem; letter-spacing: 0.05em;
  background: var(--gold-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.tourn-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.tourn-info { font-size: 0.78rem; color: var(--text-muted); }

/* ---- VIP Tier Cards --------------------------------------- */
.vip-tier {
  border-radius: var(--radius-lg); padding: 26px 20px; text-align: center;
  border: 1px solid var(--border); transition: all var(--trans);
}
.vip-tier:hover { transform: translateY(-4px); }
.vip-tier.featured { border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.t-bronze   { background: linear-gradient(160deg, #1a1108, #0f0b04); }
.t-silver   { background: linear-gradient(160deg, #111318, #0b0c10); }
.t-gold     { background: linear-gradient(160deg, #1c1400, #0f0d00); }
.t-platinum { background: linear-gradient(160deg, #0d1322, #080e1a); }
.t-diamond  { background: linear-gradient(160deg, #0d1a1a, #07100f); }
.vip-icon  { font-size: 2.4rem; margin-bottom: 12px; }
.vip-name  { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.vip-cb    { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; }
.vip-cb-lbl{ font-size: 0.74rem; color: var(--text-muted); margin-top: 2px; }
.vip-perks { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
.vip-perk  { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.vip-perk::before { content: '✓'; color: var(--green); font-weight: 800; }

/* ---- Blog Cards ------------------------------------------- */
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--trans); display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.blog-thumb { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 8px; }
.blog-title { font-size: 0.98rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; flex: 1; }
.blog-excerpt { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.73rem; color: var(--text-dim); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.blog-thumb-art { width: 100%; height: 100%; }

/* Unique blog thumb themes */
.bt1 { background: linear-gradient(135deg, #0d0520 0%, #3d0a6e 60%, #5c1dc2 100%); }
.bt2 { background: linear-gradient(135deg, #07140d 0%, #0d3a1a 60%, #1a6e34 100%); }
.bt3 { background: linear-gradient(135deg, #12060a 0%, #3a0a1a 60%, #7a0f3a 100%); }
.bt4 { background: linear-gradient(135deg, #060c14 0%, #0d2640 60%, #1a4a7a 100%); }
.bt5 { background: linear-gradient(135deg, #0e0900 0%, #382400 60%, #7a4800 100%); }
.bt6 { background: linear-gradient(135deg, #0a0e18 0%, #1a2a50 60%, #2a4480 100%); }

/* ---- Sidebar (Blog) --------------------------------------- */
.blog-layout   { display: grid; grid-template-columns: 1fr 300px; gap: 34px; align-items: start; }
.blog-sidebar  { position: sticky; top: calc(var(--header-h) + 20px); }
.sidebar-box   { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 20px; }
.sidebar-title { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; }

/* ---- Responsive ------------------------------------------- */

/* ===== ACCESSIBILITY ======================================= */

/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -48px;
  left: 6px;
  padding: 10px 18px;
  background: var(--gold);
  color: #050505;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 0 0 10px 10px;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s ease;
  white-space: nowrap;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #050505;
  outline-offset: 2px;
}

/* Keyboard focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High-contrast mode */
@media (forced-colors: active) {
  .btn-gold,
  .btn-outline {
    forced-color-adjust: none;
    border: 2px solid ButtonText;
  }
}

/* Print styles */
@media print {
  .site-header,
  .mobile-nav,
  .tracker-btn,
  .mobile-tracker-btn,
  .hero-bg,
  .hero-pattern,
  .skip-link {
    display: none !important;
  }
  body {
    color: #000 !important;
    background: #fff !important;
  }
  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
    color: #555;
  }
}

/* ===== END ACCESSIBILITY =================================== */
@media (max-width: 1100px) {
  .header-nav a { padding: 7px 10px; font-size: 0.78rem; }
  .hero-visual  { width: 38%; }
  .blog-layout  { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-visual  { display: none; }
  .hero {
    display: block;
    min-height: auto;
    padding: calc(var(--header-h) + 42px) 0 52px;
  }
  .hero-visual.hero-photo {
    display: block;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: calc(100% - 44px);
    max-width: 560px;
    margin: 30px auto 0;
  }
  .hero-content { max-width: 100%; }
  .page-hero-bg::before {
    background:
      linear-gradient(180deg, rgba(8,8,18,0.94) 0%, rgba(8,8,18,0.84) 56%, rgba(8,8,18,0.66) 100%),
      url('/img/hero-awintura-casino.webp') center / cover no-repeat;
    opacity: 0.82;
  }
}

@media (max-width: 768px) {
  :root { --header-h: 58px; }
  .section   { padding: 58px 0; }
  .section-sm{ padding: 38px 0; }
  .header-inner { padding: 0 12px; gap: 8px; }
  .header-logo { min-width: 0; }
  .logo-svg { height: 27px; max-width: 142px; }
  .header-cta { gap: 6px; min-width: 0; }
  .tracker-btn {
    max-width: 145px;
    padding: 9px 12px;
    font-size: 0.72rem;
    letter-spacing: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-nav, .btn-nav-login { display: none; }
  .hamburger {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .seo-cols  { grid-template-columns: 1fr; gap: 6px; }
  .donut-wrap { flex-direction: column; }
  .author-card { flex-direction: column; }
  .jackpot-bar { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns   { flex-direction: column; }
  .hero-stats  { gap: 22px; }
  table { min-width: 480px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 10px; gap: 6px; }
  .logo-svg { height: 24px; max-width: 132px; }
  .tracker-btn { max-width: 132px; padding: 9px 11px; font-size: 0.68rem; }
  .hamburger { width: 34px; height: 34px; padding: 6px; }
  .hamburger span { width: 20px; }
  .grid-3  { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: 1fr 1fr; }
  .hero-badge { font-size: 0.66rem; }
  .btn-lg  { padding: 14px 30px; }
  .jackpot-num { font-size: 2.2rem; }
  .bonus-amount { font-size: 2.2rem; }
  h1 { font-size: 1.75rem; }
}
