@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:       #d4a62a;
  --gold-dark:  #b8891f;
  --gold-light: #f0c84a;
  --dark:       #031315;
  --dark-mid:   #071f21;
  --teal:       #143b33;
  --teal-light: #1e5045;
  --text:       #07191c;
  --text-muted: #5a6e70;
  --surface:    #ffffff;
  --bg:         #f4f5f0;
  --border:     #e2e6e1;
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --shadow-md:  0 12px 40px rgba(0,0,0,0.10);
  --shadow-lg:  0 24px 60px rgba(0,0,0,0.14);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;;
}

.topbar { position: sticky; top: 0; z-index: 100; height: 80px; background: var(--dark); border-bottom: 3px solid var(--gold); display: flex; align-items: center; justify-content: space-between; padding: 0 72px; transition: box-shadow var(--transition); }
.topbar.scrolled { box-shadow: 0 8px 32px rgba(0,0,0,0.35); }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 72px; width: auto; display: block; object-fit: contain; }
nav { display: flex; gap: 42px; }
nav a { color: #b0bfbf; text-decoration: none; font-size: 15px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; transition: color var(--transition); }
nav a:hover { color: var(--gold); }
.btn-cta { background: var(--gold); color: var(--dark); text-decoration: none; font-size: 14px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; padding: 11px 22px; border-radius: var(--radius-sm); transition: background var(--transition), transform var(--transition), box-shadow var(--transition); }
.btn-cta:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,166,42,0.4); }

.hero { position: relative; overflow-x: hidden; padding: 60px 5% 80px; background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10,40,35,0.6) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 100% 50%, rgba(212,166,42,0.04) 0%, transparent 60%), radial-gradient(ellipse 100% 100% at 50% 50%, #071a1c 0%, #020d0e 60%, #010809 100%); display: grid; grid-template-columns: 55fr 45fr; gap: 60px; align-items: start; }
.hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 120% 80% at 50% 100%, rgba(0,0,0,0.5) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 0% 50%, rgba(0,0,0,0.4) 0%, transparent 50%), radial-gradient(ellipse 40% 60% at 100% 50%, rgba(0,0,0,0.3) 0%, transparent 50%); pointer-events: none; z-index: 0; }
.hero-bg-circle { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.c1 { width: 500px; height: 500px; top: -150px; right: -80px; background: radial-gradient(circle, rgba(20,80,60,0.12) 0%, transparent 70%); }
.c2 { width: 350px; height: 350px; bottom: 0; left: -100px; background: radial-gradient(circle, rgba(10,40,35,0.18) 0%, transparent 70%); }
.hero-left { position: relative; z-index: 2; min-width: 0; }
.hero-right { position: sticky; top: 96px; align-self: stretch; z-index: 2; min-width: 0; color: #fff; display: flex; flex-direction: column; gap: 16px; }

.ticker-wrap { display: flex; align-items: center; background: rgba(255,255,255,0.035); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.04); box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 8px 32px rgba(0,0,0,0.3); border-radius: 8px; overflow: hidden; margin-bottom: 20px; height: 38px; position: relative; z-index: 2; }
.ticker-label { color: rgba(212,166,42,0.9); font-size: 9.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 0 20px 0 18px; height: 100%; display: flex; align-items: center; gap: 8px; white-space: nowrap; flex-shrink: 0; border-right: 1px solid rgba(255,255,255,0.07); background: rgba(212,166,42,0.06); }
.ticker-label svg { width: 12px; height: 12px; stroke: rgba(212,166,42,0.8); flex-shrink: 0; }
.ticker-track { flex: 1; overflow: hidden; }
.ticker-content { display: flex; gap: 56px; white-space: nowrap; animation: tickerScroll 40s linear infinite; padding-left: 28px; }
.ticker-content span { font-size: 12px; font-weight: 400; color: rgba(210,225,225,0.75); flex-shrink: 0; letter-spacing: 0.2px; }
.ticker-content span strong { color: rgba(212,166,42,0.9); font-weight: 600; }
.ticker-dot { color: rgba(255,255,255,0.12) !important; font-size: 14px !important; font-weight: 300 !important; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-wrap:hover .ticker-content { animation-play-state: paused; }

.country-tabs { display: flex; gap: 4px; margin-bottom: -1px; position: relative; z-index: 2; }
.tab { display: flex; align-items: center; gap: 8px; border: none; background: rgba(8,18,20,0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: rgba(160,185,185,0.6); padding: 13px 22px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; cursor: pointer; border-radius: var(--radius-md) var(--radius-md) 0 0; border: 1px solid rgba(255,255,255,0.05); border-bottom: none; box-shadow: 0 -2px 12px rgba(0,0,0,0.3) inset; transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition); }
.tab-icon { width: 16px; height: 16px; flex-shrink: 0; color: currentColor; opacity: 0.7; }
.tab:hover:not(.active) { background: rgba(15,30,32,0.85); color: rgba(210,225,225,0.85); border-color: rgba(255,255,255,0.08); transform: translateY(-1px); }
.tab:hover:not(.active) .tab-icon { opacity: 1; }
.tab.active { background: var(--surface); color: var(--teal); border-color: rgba(212,166,42,0.2); box-shadow: 0 -3px 0 0 var(--gold) inset, 0 -8px 20px rgba(212,166,42,0.08) inset, 0 -2px 16px rgba(0,0,0,0.2); font-weight: 700; }
.tab.active .tab-icon { opacity: 1; color: var(--gold-dark); }

.country-box { display: none; background: radial-gradient(ellipse at 75% 20%, rgba(212,166,42,0.04) 0%, transparent 55%), radial-gradient(ellipse at 20% 85%, rgba(20,59,51,0.04) 0%, transparent 50%), linear-gradient(160deg, #faf9f6 0%, #f8f6f2 100%); border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg); padding: 40px 40px 32px; box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.8); position: relative; z-index: 1; width: 100%; overflow: hidden; }
.country-box.active { display: block; animation: fadeSlideIn 0.35s cubic-bezier(0.4,0,0.2,1) forwards; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.reticle-wrap { position: absolute; top: -60px; right: -60px; width: 380px; height: 380px; pointer-events: none; z-index: 0; }
.reticle-svg { width: 100%; height: 100%; color: rgba(180,150,60,0.10); animation: reticleRotate 40s linear infinite; transform-origin: center; }
@keyframes reticleRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.country-box h1, .country-box-h1 { font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 0.95; letter-spacing: 1px; color: var(--text); margin-bottom: 32px; position: relative; z-index: 2; }
.country-box h1 em, .country-box-h1 em { font-style: normal; color: var(--gold-dark); }

.top-pick-card { position: relative; z-index: 2; background: linear-gradient(135deg, rgba(7,25,28,0.97) 0%, rgba(13,42,46,0.93) 100%); border-radius: var(--radius-md); padding: 22px 24px 20px; margin-bottom: 24px; overflow: hidden; box-shadow: 0 0 0 1px rgba(212,166,42,0.18), 0 8px 32px rgba(0,0,0,0.18), 0 0 60px rgba(212,166,42,0.06); transition: box-shadow 0.4s ease; }
.top-pick-card:hover { box-shadow: 0 0 0 1px rgba(212,166,42,0.35), 0 12px 40px rgba(0,0,0,0.22), 0 0 60px rgba(212,166,42,0.10); }
.top-pick-card::before { content: ''; position: absolute; left: -20px; top: -20px; width: 130px; height: 130px; background: radial-gradient(circle, rgba(212,166,42,0.14) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.top-pick-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 25%, rgba(212,166,42,0.04) 50%, transparent 75%); animation: topPickShimmer 4s ease-in-out infinite; pointer-events: none; }
@keyframes topPickShimmer { 0% { transform: translateX(-120%); } 100% { transform: translateX(220%); } }
.top-pick-badge { display: inline-flex; align-items: center; gap: 6px; color: rgba(212,166,42,0.75); font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; padding: 4px 0 12px; margin-bottom: 14px; border-bottom: 1px solid rgba(212,166,42,0.15); width: 100%; position: relative; z-index: 1; }
.top-pick-badge::before { content: ''; display: inline-block; width: 18px; height: 1px; background: rgba(212,166,42,0.5); flex-shrink: 0; }
.top-pick-inner { display: flex; gap: 18px; align-items: center; position: relative; z-index: 1; }
.top-pick-logo { width: 62px; height: 62px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.04); border: 1px solid rgba(212,166,42,0.15); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; box-shadow: 0 0 20px rgba(212,166,42,0.08); transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.top-pick-card:hover .top-pick-logo { border-color: rgba(212,166,42,0.3); box-shadow: 0 0 28px rgba(212,166,42,0.15); }
.top-pick-logo img { width: 44px; height: 44px; object-fit: contain; }
.top-pick-info { flex: 1; }
.top-pick-info h3 { font-size: 18px; font-weight: 700; color: #e8eeed; margin-bottom: 5px; }
.top-pick-info p { font-size: 13px; color: rgba(180,200,200,0.65); }
.top-pick-info p strong { color: rgba(212,166,42,0.85); font-weight: 600; }
.top-pick-info small { display: block; margin-top: 5px; font-size: 10px; color: rgba(100,140,140,0.5); }
.top-pick-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.btn-visit-featured { background: var(--gold); color: var(--dark); padding: 9px 18px; font-size: 13px; font-weight: 700; border-radius: var(--radius-sm); text-decoration: none; text-align: center; white-space: nowrap; display: block; box-shadow: 0 2px 12px rgba(212,166,42,0.25); transition: background var(--transition), transform var(--transition), box-shadow var(--transition); }
.btn-visit-featured:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(212,166,42,0.4); }

.list-header { display: grid; grid-template-columns: 48px 70px 1fr auto; gap: 16px; align-items: center; padding: 0 4px 10px; border-bottom: 2px solid var(--border); margin-bottom: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); position: relative; z-index: 2; }

.brand-list { max-height: 480px; overflow-y: auto; overflow-x: hidden; scrollbar-width: thin; scrollbar-color: var(--border) transparent; padding-right: 4px; position: relative; z-index: 2; }
.brand-list::-webkit-scrollbar { width: 4px; }
.brand-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.brand-row { display: grid; grid-template-columns: 48px 70px 1fr auto; gap: 16px; align-items: center; padding: 18px 4px; border-bottom: 1px solid var(--border); border-radius: var(--radius-sm); position: relative; transition: background var(--transition), transform 0.2s ease, box-shadow 0.2s ease; animation: rowIn 0.35s ease both; animation-delay: calc(var(--i) * 45ms); }
@keyframes rowIn { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
.brand-row:last-child { border-bottom: none; }
.brand-row::before { content: ''; position: absolute; left: 0; top: 10%; height: 80%; width: 3px; border-radius: 3px; background: var(--gold); opacity: 0; transition: opacity 0.2s ease; }
.brand-row:hover { background: #f5f6f1; transform: translateY(-2px) translateX(3px); box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.brand-row:hover::before { opacity: 1; }
.rank { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--text-muted); text-align: center; }
.brand-row:first-child .rank { color: var(--gold); animation: rankPulse 2.5s ease-in-out infinite; }
@keyframes rankPulse { 0%, 100% { text-shadow: 0 0 0px rgba(212,166,42,0); } 50% { text-shadow: 0 0 10px rgba(212,166,42,0.7); } }
.brand-logo-wrap { width: 62px; height: 62px; border-radius: var(--radius-sm); background: var(--dark); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; border: 1px solid rgba(212,166,42,0.2); }
.brand-logo-wrap img { width: 44px; height: 44px; object-fit: contain; }
.brand-info h3 { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.brand-info .bonus { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.brand-info .bonus strong { color: var(--text); font-weight: 700; }
.brand-info small { display: block; margin-top: 5px; font-size: 11px; color: #9aacad; }
.brand-actions { display: flex; align-items: center; flex-shrink: 0; }
.btn-visit { background: var(--gold); color: var(--dark); text-decoration: none; padding: 9px 18px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 800; white-space: nowrap; position: relative; overflow: hidden; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); }
.btn-visit:hover { background: var(--gold-light); transform: translateY(-2px) scale(1.02); box-shadow: 0 6px 20px rgba(212,166,42,0.45); }

.ad-slider-wrap { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16/5; flex-shrink: 0; }
.ad-slider-track { display: flex; height: 100%; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.ad-slide { position: relative; min-width: 100%; height: 100%; overflow: hidden; }
.ad-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ad-slide--luxury img { filter: brightness(0.75) saturate(0.7) sepia(0.15); }
.ad-slide--luxury::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(4,20,18,0.65) 0%, rgba(10,35,30,0.3) 100%); }
.ad-slide--slots img { filter: brightness(1.05) saturate(1.2) contrast(1.05); }
.ad-slide--slots::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,10,0,0.4) 0%, rgba(180,120,0,0.15) 100%); }
.ad-slide--sports img { filter: brightness(0.9) saturate(0.9) hue-rotate(15deg); }
.ad-slide--sports::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,10,30,0.55) 0%, rgba(0,30,60,0.2) 100%); }
.ad-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%); z-index: 2; display: flex; align-items: center; gap: 10px; }
.ad-tag { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 3px 8px; border-radius: 4px; flex-shrink: 0; }
.ad-caption { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.3px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.45); border: none; color: #fff; font-size: 24px; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); z-index: 10; }
.slider-arrow:hover { background: rgba(212,166,42,0.75); }
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }
.ad-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.dot { width: 7px; height: 7px; border-radius: 50%; border: none; background: rgba(255,255,255,0.35); cursor: pointer; padding: 0; transition: background var(--transition), transform var(--transition); }
.dot.active { background: var(--gold); transform: scale(1.3); }
.promo-image-wrap { border-radius: 14px; overflow: hidden; flex-shrink: 0; transition: transform 0.5s ease; flex: 1 1 auto; min-height: 0; }
.promo-image-wrap:hover { transform: scale(1.01); }
.promo-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; border-radius: 14px; height: auto; filter: brightness(0.88) saturate(0.85) contrast(1.05); transition: filter 0.4s ease; }
.promo-image-wrap:hover .promo-img { filter: brightness(0.95) saturate(0.95) contrast(1.02); }
.promo-image-wrap .promo-img { width: 100%; height: 100%; object-fit: fill; display: block; border-radius: 14px; }
.hero-bottom { display: flex; flex-direction: column; gap: 0; padding-top: 24px; }
.hero-right-text { padding: 0 0 16px; }
.hero-right-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; line-height: 1; color: #fff; margin-bottom: 12px; }
.hero-right-text p { font-size: 16px; line-height: 1.65; color: #7a9a97; }
.hero-meta { list-style: none; display: flex; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; }
.meta-item { display: flex; flex-direction: column; gap: 4px; padding: 16px 24px 16px 0; border-right: 1px solid rgba(255,255,255,0.08); margin-right: 24px; }
.meta-item:last-child { border-right: none; margin-right: 0; }
.meta-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #4a6a68; }
.meta-val { font-family: 'Bebas Neue', sans-serif; font-size: 36px; line-height: 1; color: #fff; }
.meta-rating { display: flex; align-items: center; gap: 6px; }
.meta-rating .meta-val { font-size: 36px; }
.meta-trustpilot { font-size: 14px; font-weight: 600; color: #7a9a97; }

.content { background: var(--surface); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
.content::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(212,166,42,0.03) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(20,59,51,0.03) 0%, transparent 50%); pointer-events: none; }
.content-inner { max-width: 1160px; margin: 0 auto; padding: 96px 72px; position: relative; z-index: 1; }
.section-label { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); border: 1px solid rgba(212,166,42,0.3); padding: 5px 14px; border-radius: 4px; margin-bottom: 24px; }
.content-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: 72px; line-height: 0.95; color: var(--text); margin-bottom: 20px; letter-spacing: 0.5px; }
.content-inner > p { font-size: 17px; line-height: 1.75; color: var(--text-muted); max-width: 560px; margin-bottom: 56px; }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.info-card { background: #ffffff; border: 1px solid #dde3dc; padding: 36px 30px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.10); border-color: rgba(212,166,42,0.4); }
.info-icon { width: 48px; height: 48px; border-radius: 12px; background: #07191c; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.info-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.info-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.5px; color: #07191c; margin-bottom: 12px; }
.info-card p { font-size: 15px; line-height: 1.7; color: #3a5052; }

.country-box::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E"); background-repeat: repeat; background-size: 180px 180px; pointer-events: none; z-index: 0; border-radius: inherit; opacity: 0.6; }
.country-box h1 { font-family: 'Bebas Neue', sans-serif; font-size: 68px; line-height: 0.95; letter-spacing: 1px; color: var(--text); margin-bottom: 28px; position: relative; z-index: 2; padding-top: 20px; }
.country-box h1::before { content: ''; display: block; width: 40px; height: 2px; background: linear-gradient(90deg, var(--gold-dark), transparent); margin-bottom: 16px; }
.country-box h1 em { font-style: normal; color: var(--gold-dark); display: block; }
.country-box::before { content: attr(data-label); display: block; font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(180,150,60,0.5); padding: 0 40px; padding-top: 32px; position: relative; z-index: 2; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; }
.fade-in.visible { animation: fadeInUp 0.5s ease forwards; }

.footer { background: #060d0e; border-top: 1px solid rgba(212,166,42,0.15); }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 48px 72px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-disclaimer { font-size: 13px; color: rgba(90,110,110,0.7); max-width: 680px; line-height: 1.6; }
.footer-copy { font-size: 12px; color: rgba(60,80,80,0.6); }

#topBtn { position: fixed; right: 28px; bottom: 28px; width: 50px; height: 50px; border: none; border-radius: var(--radius-sm); background: var(--teal); color: white; font-size: 20px; cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity var(--transition), transform var(--transition), background var(--transition); z-index: 200; }
#topBtn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#topBtn:hover { background: var(--teal-light); }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding: 48px 32px 64px; gap: 36px; }
  .hero-right { position: static; }
  .list-header { display: none; }
}
@media (max-width: 768px) {
  .topbar { height: auto; padding: 14px 20px; flex-wrap: wrap; gap: 12px; }
  .logo-img { height: 44px; }
  nav { display: none; }
  .hero { padding: 24px 16px 40px; gap: 24px; }
  .country-tabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .country-tabs::-webkit-scrollbar { display: none; }
  .tab { font-size: 12px; padding: 10px 14px; white-space: nowrap; flex-shrink: 0; }
  .country-box { padding: 20px 16px; }
  .country-box h1 { font-size: 40px; margin-bottom: 20px; }
  .list-header { display: none; }
  .brand-row { grid-template-columns: 52px 1fr; grid-template-rows: auto auto; gap: 8px; padding: 14px 4px; }
  .brand-logo-wrap { grid-row: 1/3; width: 52px; height: 52px; }
  .rank { display: none; }
  .brand-info { grid-column: 2; }
  .brand-actions { grid-column: 1/-1; justify-content: stretch; }
  .btn-visit { flex: 1; text-align: center; padding: 10px; }
  .ad-slider-wrap { aspect-ratio: 16/9; }
  .promo-img { aspect-ratio: 16/9; }
  .hero-right-text h2 { font-size: 36px; }
  .content-inner { padding: 48px 20px; }
  .content-inner h2 { font-size: 44px; }
  .info-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { padding: 32px 20px; }
}
.review-hero { padding: 140px 8% 90px; background: radial-gradient(circle at top right, rgba(212,166,42,0.10), transparent 30%), linear-gradient(to bottom, #041312 0%, #071c19 100%); border-bottom: 1px solid rgba(212,166,42,0.15); }
.review-hero-content { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 520px; gap: 70px; align-items: center; }
.section-tag { display: inline-block; padding: 8px 16px; border: 1px solid rgba(212,166,42,0.35); border-radius: 999px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 2px; margin-bottom: 28px; }
.review-hero h1 { font-size: 78px; line-height: 0.95; font-weight: 900; color: white; margin-bottom: 30px; text-transform: uppercase; letter-spacing: -2px; }
.review-hero p { max-width: 700px; font-size: 20px; line-height: 1.8; color: #b8c8c5; }
.review-hero-image { min-height: 310px; border: 1px dashed rgba(212,166,42,0.45); border-radius: 22px; background: radial-gradient(circle at center, rgba(212,166,42,0.08), transparent 55%), rgba(255,255,255,0.025); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; text-align: center; color: rgba(212,166,42,0.75); font-size: 13px; font-weight: 800; letter-spacing: 2px; }
.review-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-hero-image img[src=""] { display: none; }
.review-process { background: #f5f3ee; padding: 90px 8%; }
.review-item { display: grid; grid-template-columns: 80px 1fr 180px; gap: 40px; align-items: flex-start; position: relative; margin-bottom: 70px; }
.review-left { position: relative; display: flex; justify-content: center; }
.review-dot { width: 24px; height: 24px; background: var(--gold); border-radius: 50%; border: 5px solid #0b1f1d; position: relative; z-index: 2; }
.review-line { position: absolute; top: 24px; width: 2px; height: 170px; background: rgba(11,31,29,0.15); }
.review-content { padding-top: 2px; }
.review-content h2 { font-size: 36px; font-weight: 900; color: #081816; margin-bottom: 18px; line-height: 1.1; }
.review-content p { font-size: 18px; line-height: 1.9; color: #5b6664; max-width: 760px; }
.review-icon { font-size: 82px; display: flex; justify-content: center; align-items: center; opacity: 0.95; }
.review-icon img { max-width: 120px; height: auto; }
.active-nav { color: var(--gold) !important; }
@media (max-width: 900px) {
  .review-hero { padding: 120px 6% 70px; }
  .review-hero-content { grid-template-columns: 1fr; gap: 36px; }
  .review-hero h1 { font-size: 52px; }
  .review-hero p { font-size: 17px; }
  .review-hero-image { min-height: 220px; }
  .review-item { grid-template-columns: 50px 1fr; }
  .review-icon { display: none; }
  .review-content h2 { font-size: 28px; }
  .review-content p { font-size: 16px; line-height: 1.7; }
  .review-line { height: 220px; }
}

.features-hero { padding: 120px 5% 90px; background: radial-gradient(circle at 82% 18%, rgba(212,166,42,0.12), transparent 26%), linear-gradient(135deg, #031315 0%, #071f21 100%); display: grid; grid-template-columns: 1fr 520px; gap: 70px; align-items: center; border-bottom: 1px solid rgba(212,166,42,0.25); }
.features-hero-text { max-width: 850px; }
.feature-label { display: inline-block; padding: 8px 16px; border: 1px solid rgba(212,166,42,0.45); border-radius: 999px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
.features-hero h1, .feature-detail-text h2, .features-faq h2 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; }
.features-hero h1 { font-size: 84px; line-height: .95; color: #fff; margin-bottom: 24px; }
.features-hero p { font-size: 18px; line-height: 1.8; color: #c9d6d4; }
.features-hero-image, .feature-detail-image { height: auto; min-height: 260px; border-radius: 24px; overflow: hidden; border: 1px solid rgba(212,166,42,0.28); background: rgba(255,255,255,0.03); box-shadow: 0 24px 60px rgba(0,0,0,0.22); display: flex; align-items: center; justify-content: center; }
.features-hero-image img, .feature-detail-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.features-nav { background: #f5f3ee; padding: 34px 5%; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.features-nav-card { background: #fff; padding: 24px; border-radius: 18px; border: 1px solid #e1ded4; text-decoration: none; color: #071918; transition: .25s ease; cursor: pointer; }
.features-nav-card h3 { font-size: 20px; margin-bottom: 8px; }
.features-nav-card p { color: #65716f; font-size: 14px; }
.features-nav-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 16px 35px rgba(212,166,42,0.16); }
.feature-link { display: inline-block; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--gold); transition: all 0.3s ease; }
.features-nav-card:hover .feature-link { transform: translateX(5px); }
.feature-detail-section { scroll-margin-top: 110px; padding: 95px 5%; background: #f5f3ee; display: grid; grid-template-columns: 1fr 380px; gap: 70px; align-items: start; border-bottom: 1px solid rgba(0,0,0,0.06); }
.feature-detail-section.reverse { grid-template-columns: 380px 1fr; background: #ffffff; }
.feature-detail-image { width: 100%; max-width: 380px; height: auto; min-height: 220px; overflow: hidden; position: static; flex-shrink: 0; border-radius: 24px; border: 1px solid rgba(212,166,42,0.28); background: rgba(255,255,255,0.03); box-shadow: 0 24px 60px rgba(0,0,0,0.22); display: flex; align-items: center; justify-content: center; }
.feature-detail-text h2 { font-size: 60px; line-height: .95; color: #071918; margin-bottom: 22px; }
.feature-detail-text > p { font-size: 17px; line-height: 1.9; color: #526260; margin-bottom: 30px; max-width: 850px; }
.features-faq { padding: 90px 5%; background: #f5f3ee; max-width: 100%; }
.features-faq h2 { font-size: 56px; color: #071918; margin-bottom: 30px; }
.features-faq details { max-width: 980px; background: #fff; border: 1px solid #ddd8cc; border-radius: 18px; padding: 22px 26px; margin-bottom: 16px; }
.features-faq summary { cursor: pointer; font-weight: 800; color: #071918; font-size: 18px; }
.features-faq p { margin-top: 14px; color: #5f6f6d; line-height: 1.8; }
@media (max-width: 950px) {
  .features-hero, .feature-detail-section, .feature-detail-section.reverse { grid-template-columns: 1fr; }
  .features-nav { grid-template-columns: 1fr 1fr; }
  .features-hero h1 { font-size: 56px; }
  .feature-detail-text h2, .features-faq h2 { font-size: 44px; }
  .features-hero-image, .feature-detail-image { height: auto; max-width: 100%; }
}
@media (max-width: 600px) { .features-nav { grid-template-columns: 1fr; } }

.bs-label { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(212,166,42,0.8); border: 1px solid rgba(212,166,42,0.2); padding: 5px 14px; border-radius: 4px; margin-bottom: 20px; }
.bs-heading { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 0.95; letter-spacing: 0.5px; color: #07191c; margin-bottom: 16px; }
.bs-heading--light { color: #f0ede8; }
.bs-pokies { background: #faf9f6; padding: 100px 5%; border-top: 1px solid #e8e4de; }
.bs-pokies-inner { max-width: 1200px; margin: 0 auto; }
.bs-pokies-header { margin-bottom: 48px; }
.bs-subheading { font-size: 17px; color: #5a6e70; max-width: 600px; line-height: 1.7; }
.bs-table-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.08); border: 1px solid #e2e6e1; }
.bs-table { width: 100%; border-collapse: collapse; background: #ffffff; }
.bs-table thead tr { background: #07191c; }
.bs-table thead th { padding: 16px 20px; text-align: left; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(212,166,42,0.8); }
.bs-table-row { border-bottom: 1px solid #f0f0ee; transition: background 0.2s ease; }
.bs-table-row:last-child { border-bottom: none; }
.bs-table-row:hover { background: #f8f7f4; }
.bs-table-row td { padding: 18px 20px; font-size: 14px; color: #3a5052; vertical-align: middle; }
.bs-rank-num { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: #b8891f; }
.bs-game-name { font-weight: 700; color: #07191c; font-size: 15px; }
.bs-rtp-badge { background: #07191c; color: #d4a62a; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.bs-maxwin-cell { font-weight: 700; color: #143b33; }
.bs-desc-cell { color: #7a8c8e; font-size: 13px; max-width: 220px; }
.bs-play-btn { background: #d4a62a; color: #07191c; text-decoration: none; font-size: 12px; font-weight: 800; padding: 8px 16px; border-radius: 8px; white-space: nowrap; transition: background 0.2s ease, transform 0.2s ease; display: inline-block; }
.bs-play-btn:hover { background: #f0c84a; transform: translateY(-1px); }
.bs-article { background: #ffffff; padding: 100px 5%; border-top: 1px solid #e8e4de; }
.bs-article-inner { max-width: 1200px; margin: 0 auto; }
.bs-article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.bs-article-block { padding: 36px; background: #faf9f6; border: 1px solid #e8e4de; border-radius: 16px; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.bs-article-block:hover { border-color: rgba(212,166,42,0.35); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.bs-article-icon { width: 44px; height: 44px; background: #07191c; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.bs-article-icon svg { width: 20px; height: 20px; stroke: #d4a62a; }
.bs-article-block h3 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: #07191c; margin-bottom: 14px; }
.bs-article-block p { font-size: 15px; line-height: 1.75; color: #5a6e70; }
.bs-article-block:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 680px; }
.bs-trust { background: #07191c; padding: 100px 5%; border-top: 1px solid rgba(212,166,42,0.12); }
.bs-trust-inner { max-width: 1200px; margin: 0 auto; }
.bs-trust-header { text-align: center; margin-bottom: 60px; }
.bs-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.bs-trust-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 36px 28px; text-align: center; transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.bs-trust-card:hover { border-color: rgba(212,166,42,0.3); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
.bs-trust-icon { width: 56px; height: 56px; background: rgba(212,166,42,0.1); border: 1px solid rgba(212,166,42,0.2); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.bs-trust-icon svg { width: 24px; height: 24px; stroke: #d4a62a; }
.bs-trust-card h4 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: #f0ede8; margin-bottom: 12px; }
.bs-trust-card p { font-size: 14px; line-height: 1.65; color: rgba(160,185,180,0.7); }
.bs-faq { background: #faf9f6; padding: 100px 5%; border-top: 1px solid #e8e4de; }
.bs-faq-inner { max-width: 860px; margin: 0 auto; }
.bs-faq-header { text-align: center; margin-bottom: 56px; }
.bs-faq-list { display: flex; flex-direction: column; gap: 12px; }
.bs-faq-item { background: #ffffff; border: 1px solid #e2e6e1; border-radius: 12px; overflow: hidden; transition: border-color 0.25s ease; }
.bs-faq-item.open { border-color: rgba(212,166,42,0.35); }
.bs-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 28px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: #07191c; transition: color 0.2s ease; }
.bs-faq-q:hover { color: #143b33; }
.bs-faq-arrow { width: 18px; height: 18px; flex-shrink: 0; stroke: #d4a62a; transition: transform 0.3s ease; }
.bs-faq-item.open .bs-faq-arrow { transform: rotate(180deg); }
.bs-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.bs-faq-item.open .bs-faq-a { max-height: 300px; }
.bs-faq-a p { padding: 0 28px 24px; font-size: 15px; line-height: 1.75; color: #5a6e70; }
.bs-rg { background: #0a1a1c; padding: 80px 5%; border-top: 1px solid rgba(212,166,42,0.1); }
.bs-rg-inner { max-width: 1000px; margin: 0 auto; display: flex; gap: 40px; align-items: flex-start; }
.bs-rg-icon { width: 64px; height: 64px; background: rgba(212,166,42,0.1); border: 1px solid rgba(212,166,42,0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px; }
.bs-rg-icon svg { width: 28px; height: 28px; stroke: #d4a62a; }
.bs-rg-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(212,166,42,0.7); margin-bottom: 10px; }
.bs-rg-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: #f0ede8; margin-bottom: 14px; }
.bs-rg-content > p { font-size: 15px; line-height: 1.75; color: rgba(160,185,180,0.7); margin-bottom: 20px; }
.bs-rg-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.bs-rg-link { font-size: 12px; font-weight: 600; color: #d4a62a; text-decoration: none; border: 1px solid rgba(212,166,42,0.25); padding: 6px 14px; border-radius: 6px; transition: border-color 0.2s ease, background 0.2s ease; }
.bs-rg-link:hover { border-color: rgba(212,166,42,0.5); background: rgba(212,166,42,0.06); }
.bs-rg-disclaimer { font-size: 12px; color: rgba(100,130,130,0.6); line-height: 1.6; }
.bs-cta { background: linear-gradient(135deg, #071f21 0%, #031315 100%); padding: 120px 5%; border-top: 1px solid rgba(212,166,42,0.12); text-align: center; position: relative; overflow: hidden; }
.bs-cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,166,42,0.08) 0%, transparent 65%); pointer-events: none; }
.bs-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.bs-cta-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: 68px; line-height: 0.95; color: #f0ede8; margin-bottom: 20px; }
.bs-cta-inner p { font-size: 17px; line-height: 1.75; color: rgba(160,185,180,0.7); margin-bottom: 40px; }
.bs-cta-btn { display: inline-block; background: #d4a62a; color: #07191c; text-decoration: none; font-size: 15px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; padding: 16px 40px; border-radius: 10px; box-shadow: 0 4px 24px rgba(212,166,42,0.3); transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.bs-cta-btn:hover { background: #f0c84a; transform: translateY(-2px); box-shadow: 0 8px 36px rgba(212,166,42,0.45); }
@media (max-width: 1000px) {
  .bs-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-article-grid { grid-template-columns: 1fr; }
  .bs-table thead th:nth-child(6), .bs-table-row td:nth-child(6) { display: none; }
}
@media (max-width: 768px) {
  .bs-heading { font-size: 40px; }
  .bs-trust-grid { grid-template-columns: 1fr; }
  .bs-table-wrap { overflow-x: auto; }
  .bs-table { min-width: 600px; }
  .bs-rg-inner { flex-direction: column; gap: 24px; }
  .bs-cta-inner h2 { font-size: 48px; }
  .bs-pokies, .bs-article, .bs-trust, .bs-faq, .bs-cta { padding: 60px 5%; }
}

.ft-subsections { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.ft-sub { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; padding: 52px 0; border-top: 1px solid rgba(0,0,0,0.07); }
.ft-sub:first-child { border-top: none; padding-top: 0; }
.ft-sub--reverse { grid-template-columns: 340px 1fr; }
.ft-sub-text h3 { font-family: 'Bebas Neue', sans-serif; font-size: 34px; line-height: 1; letter-spacing: 0.5px; color: #071918; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid rgba(212,166,42,0.25); }
.ft-sub-text p { font-size: 15.5px; line-height: 1.85; color: #4a5f5e; margin-bottom: 14px; }
.ft-sub-text p:last-of-type { margin-bottom: 20px; }
.ft-keywords { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.ft-keywords span { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #b8891f; background: rgba(212,166,42,0.08); border: 1px solid rgba(212,166,42,0.2); padding: 4px 10px; border-radius: 6px; word-break: break-word; }
.ft-sub-image { border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.09); background: #e8e5de; position: sticky; top: 110px; box-shadow: 0 8px 32px rgba(0,0,0,0.10); display: flex; align-items: center; justify-content: center; min-height: 200px; }
.ft-sub-image img { width: 100%; height: auto; object-fit: contain; display: block; }
.feature-detail-section.reverse .ft-sub-image { background: #dddad2; }
@media (max-width: 1000px) {
  .ft-sub, .ft-sub.ft-sub--reverse { grid-template-columns: 1fr; gap: 24px; }
  .ft-sub-image { position: static; aspect-ratio: 16/7; }
  .ft-sub.ft-sub--reverse .ft-sub-image { order: 2; }
  .ft-sub.ft-sub--reverse .ft-sub-text { order: 1; }
}
@media (max-width: 768px) {
  .ft-sub { padding: 36px 0; }
  .ft-sub-text h3 { font-size: 26px; }
  .ft-sub-text p { font-size: 15px; }
  .ft-subsections { margin-top: 32px; }
}
*, *::before, *::after { --gold: #d4a62a; --gold-light: #f0c84a; --gold-dim: #b8891f; --dark: #040f10; --dark-2: #071a1c; --dark-3: #0a2224; --teal: #0d3330; --cream: #f5f3ee; --white: #ffffff; --text-dark: #07191c; --text-mid: #3a5052; --text-muted: #6b8280; --border: #e2e0d8; --shadow-sm: 0 4px 16px rgba(0,0,0,0.07); --shadow-md: 0 8px 32px rgba(0,0,0,0.10); --shadow-lg: 0 16px 48px rgba(0,0,0,0.13); --gold-glow: 0 0 24px rgba(212,166,42,0.25); --radius: 16px; --radius-sm: 10px; --radius-lg: 24px; --trans: 0.22s cubic-bezier(0.4,0,0.2,1); }

.ec-container { max-width: 1240px; margin: 0 auto; padding: 0 5%; }
.ec-nav { display: none !important; }
.ec-section { padding: 88px 0; }
.ec-light { background: var(--white); }
.ec-dark { background: var(--dark-2); color: var(--white); }
.ec-cream { background: var(--cream); }
.ec-section-head { text-align: center; margin-bottom: 56px; }
.ec-head-light .ec-section-head h2, .ec-dark .ec-section-head h2 { color: var(--white); }
.ec-section-head h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 58px); line-height: 1; letter-spacing: 1px; color: var(--text-dark); margin: 16px 0 16px; }
.ec-section-head p { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.75; }
.ec-dark .ec-section-head p { color: rgba(180,210,208,0.7); }
.ec-pill { display: inline-block; padding: 6px 16px; border: 1px solid rgba(212,166,42,0.5); border-radius: 999px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.ec-pill-dark { border-color: rgba(212,166,42,0.3); }
.ec-hero { background: radial-gradient(ellipse 70% 60% at 90% 20%, rgba(212,166,42,0.08) 0%, transparent 60%), radial-gradient(ellipse 80% 80% at 10% 80%, rgba(10,40,35,0.5) 0%, transparent 60%), linear-gradient(135deg, #031315 0%, #071f21 50%, #040e10 100%); padding: 96px 0 80px; border-bottom: 1px solid rgba(212,166,42,0.2); }
.ec-hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: center; }
.ec-hero-text { color: var(--white); }
.ec-hero-text .ec-pill { margin-bottom: 24px; }
.ec-hero-text h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 6vw, 80px); line-height: 0.95; letter-spacing: 1px; color: var(--white); margin-bottom: 24px; }
.ec-hero-text h1 em { font-style: normal; color: var(--gold); }
.ec-hero-text > p { font-size: 17px; line-height: 1.8; color: rgba(200,225,222,0.8); max-width: 520px; margin-bottom: 32px; }
.ec-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.ec-badges span { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.05); border: 1px solid rgba(212,166,42,0.25); border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 600; color: rgba(212,166,42,0.9); }
.ec-badges span svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.ec-hero-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(212,166,42,0.3); box-shadow: var(--gold-glow), 0 24px 64px rgba(0,0,0,0.4); aspect-ratio: 16/10; background: var(--dark-3); }
.ec-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ec-hero-image-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: rgba(212,166,42,0.5); border: 2px dashed rgba(212,166,42,0.2); border-radius: var(--radius-lg); }
.ec-hero-image-placeholder span { font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.ec-hero-image-placeholder small { font-size: 12px; color: rgba(212,166,42,0.35); }
.ec-quicknav { background: var(--cream); border-bottom: 1px solid var(--border); padding: 28px 0; }
.ec-quicknav .ec-container { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.ec-qcard { display: flex; flex-direction: column; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 28px; text-decoration: none; color: var(--text-dark); transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans); min-width: 130px; text-align: center; }
.ec-qcard:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(212,166,42,0.15); }
.ec-qcard-icon { font-size: 24px; margin-bottom: 4px; }
.ec-qcard h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.ec-qcard p { font-size: 12px; color: var(--text-muted); }
.ec-casino-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ec-casino-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans); display: flex; flex-direction: column; gap: 20px; }
.ec-casino-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(212,166,42,0.3); }
.ec-casino-card.ec-featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-md), var(--gold-glow); background: linear-gradient(145deg, #fffdf5 0%, #fffff8 100%); }
.ec-casino-header { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ec-rank-badge { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; background: var(--dark-2); color: rgba(200,200,200,0.8); padding: 5px 12px; border-radius: 6px; white-space: nowrap; order: -1; width: 100%; }
.ec-rank-gold { background: var(--gold); color: var(--dark); }
.ec-casino-logo { width: 64px; height: 64px; border-radius: var(--radius-sm); background: var(--dark-2); border: 1px solid rgba(212,166,42,0.2); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.ec-casino-logo img { width: 46px; height: 46px; object-fit: contain; display: block; }
.ec-casino-meta { flex: 1; }
.ec-casino-meta h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.5px; color: var(--text-dark); margin-bottom: 4px; }
.ec-stars { font-size: 14px; color: var(--gold); font-weight: 700; }
.ec-stars span { color: var(--text-muted); font-weight: 400; font-size: 13px; }
.ec-casino-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ec-casino-features li { font-size: 14px; color: var(--text-mid); padding-left: 20px; position: relative; }
.ec-casino-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.ec-casino-actions { display: flex; gap: 10px; }
.ec-casino-card small { font-size: 10px; color: var(--text-muted); line-height: 1.4; }
.ec-btn-primary { display: inline-block; background: var(--gold); color: var(--dark); text-decoration: none; font-size: 13px; font-weight: 800; padding: 11px 22px; border-radius: var(--radius-sm); text-align: center; transition: background var(--trans), transform var(--trans), box-shadow var(--trans); white-space: nowrap; flex: 1; }
.ec-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(212,166,42,0.4); }
.ec-btn-outline { display: inline-block; background: transparent; color: var(--text-dark); text-decoration: none; font-size: 13px; font-weight: 700; padding: 11px 20px; border-radius: var(--radius-sm); border: 2px solid var(--border); text-align: center; transition: border-color var(--trans), background var(--trans), transform var(--trans); white-space: nowrap; }
.ec-btn-outline:hover { border-color: var(--gold); background: rgba(212,166,42,0.06); transform: translateY(-2px); }
.ec-btn-full { width: 100%; }
.ec-reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ec-reason-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 32px 24px; transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans); }
.ec-reason-card:hover { border-color: rgba(212,166,42,0.3); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
.ec-reason-icon { font-size: 32px; margin-bottom: 16px; }
.ec-reason-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.5px; color: var(--white); margin-bottom: 10px; }
.ec-reason-card p { font-size: 14px; line-height: 1.7; color: rgba(180,210,208,0.65); }
.ec-payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ec-payment-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans); }
.ec-payment-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ec-payment-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 0.5px; color: var(--text-dark); margin-bottom: 10px; }
.ec-payment-card p { font-size: 13px; line-height: 1.65; color: var(--text-muted); margin-bottom: 14px; }
.ec-payment-tag { display: inline-block; background: rgba(212,166,42,0.1); color: var(--gold-dim); border: 1px solid rgba(212,166,42,0.25); border-radius: 6px; padding: 4px 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.ec-payment-img-wrap { width: 100%; aspect-ratio: 16/7; border-radius: 10px; border: 1px dashed rgba(212,166,42,0.35); background: #f5f3ee; overflow: hidden; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.ec-payment-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ec-bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ec-bonus-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm); transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans); display: flex; flex-direction: column; gap: 14px; }
.ec-bonus-card:hover { border-color: rgba(212,166,42,0.3); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ec-bonus-card.ec-bonus-featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), var(--shadow-md); background: linear-gradient(145deg, #fffdf5, #fffff8); }
.ec-bonus-type { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dim); }
.ec-bonus-amount { font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 1; color: var(--gold); letter-spacing: 1px; }
.ec-bonus-detail { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.ec-bonus-card small { font-size: 10px; color: #aaa; }
.ec-bonus-card small a { color: rgba(212,166,42,0.7); }
.ec-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ec-review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans); display: flex; flex-direction: column; gap: 12px; }
.ec-review-card:hover { border-color: rgba(212,166,42,0.3); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ec-review-stars { font-size: 18px; color: var(--gold); }
.ec-review-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); }
.ec-review-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-style: italic; flex: 1; }
.ec-review-author { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); font-size: 12px; flex-wrap: wrap; gap: 6px; }
.ec-verified { color: #2a9d5a; font-weight: 700; }
.ec-review-casino { color: var(--gold-dim); font-weight: 700; font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase; }
.ec-responsible { background: #f3f7ef; border-top: 1px solid #d9e8d3; }
.ec-responsible-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ec-responsible-text .ec-pill { margin-bottom: 20px; }
.ec-responsible-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 42px; line-height: 1; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 20px; }
.ec-responsible-text p { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px; }
.ec-rg-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.ec-rg-links a { font-size: 13px; font-weight: 600; color: var(--gold-dim); text-decoration: none; border: 1px solid rgba(212,166,42,0.3); padding: 7px 14px; border-radius: 8px; transition: border-color var(--trans), background var(--trans); }
.ec-rg-links a:hover { border-color: var(--gold); background: rgba(212,166,42,0.06); }
.ec-rg-cards { display: flex; flex-direction: column; gap: 16px; }
.ec-rg-card { background: var(--white); border: 1px solid #d9e8d3; border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: border-color var(--trans), box-shadow var(--trans); }
.ec-rg-card:hover { border-color: rgba(212,166,42,0.3); box-shadow: var(--shadow-sm); }
.ec-rg-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.ec-rg-card h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.ec-rg-card p { font-size: 14px; line-height: 1.65; color: var(--text-muted); }
.ec-rg-card p strong { color: var(--text-dark); }
.ec-footer { background: #040f10; border-top: 1px solid rgba(212,166,42,0.15); padding: 48px 0; }
.ec-footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.ec-footer-disclaimer { font-size: 12px; color: rgba(90,110,110,0.65); max-width: 700px; line-height: 1.7; }
#ec-top-btn { position: fixed; right: 28px; bottom: 28px; width: 48px; height: 48px; border: none; border-radius: var(--radius-sm); background: var(--teal); color: var(--white); font-size: 18px; cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity var(--trans), transform var(--trans), background var(--trans); z-index: 300; }
#ec-top-btn.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#ec-top-btn:hover { background: #1e5045; }
@media (max-width: 1100px) { .ec-reason-grid, .ec-payment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) {
  .ec-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ec-hero-image { max-width: 560px; margin: 0 auto; width: 100%; }
  .ec-casino-grid { grid-template-columns: 1fr; }
  .ec-responsible-inner { grid-template-columns: 1fr; gap: 40px; }
  .ec-bonus-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .ec-review-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ec-section { padding: 60px 0; }
  .ec-hero { padding: 60px 0; }
  .ec-hero-text h1 { font-size: 44px; }
  .ec-quicknav .ec-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .ec-qcard { padding: 16px 12px; min-width: unset; }
  .ec-reason-grid, .ec-payment-grid { grid-template-columns: 1fr; }
  .ec-casino-header { gap: 12px; }
  .ec-bonus-grid { grid-template-columns: 1fr; max-width: 100%; }
  .ec-section-head { margin-bottom: 36px; }
  .ec-section-head h2 { font-size: 32px; }
}
@media (max-width: 480px) {
  .ec-quicknav .ec-container { grid-template-columns: repeat(2, 1fr); }
  .ec-badges { flex-direction: column; }
  .ec-casino-actions { flex-direction: column; }
  .ec-hero-text h1 { font-size: 38px; }
}
.sidebar-open-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--gold); flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.sidebar-open-btn span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s ease; }
.sidebar-overlay { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; width: 100vw; height: 100vh; background: rgba(0,0,0,0.65); z-index: 9998 !important; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; visibility: hidden; }
.sidebar-overlay.open { opacity: 1 !important; pointer-events: auto !important; visibility: visible !important; }
.mobile-sidebar { position: fixed !important; top: 0 !important; right: 0 !important; left: auto !important; width: 300px; max-width: 85vw; height: 100dvh; background: #040f10 !important; z-index: 9999 !important; transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4,0,0.2,1); display: flex !important; flex-direction: column; overflow: hidden; border-left: 1px solid rgba(212,166,42,0.2); }
.mobile-sidebar.open { transform: translateX(0) !important; }
.mob-sidebar-head { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: 72px; border-bottom: 2px solid var(--gold); flex-shrink: 0; background: #031315; }
.mob-sidebar-head img { height: 48px; width: auto; max-width: 160px; object-fit: contain; }
.mob-close-btn { background: none; border: none; cursor: pointer; color: #b0bfbf; font-size: 26px; line-height: 1; padding: 4px 8px; border-radius: 6px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; transition: color 0.2s ease, background 0.2s ease; }
.mob-close-btn:hover { color: var(--gold); background: rgba(212,166,42,0.08); }
.mob-nav { flex: 1; overflow-y: auto; padding: 16px 0 32px; scrollbar-width: thin; scrollbar-color: rgba(212,166,42,0.2) transparent; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.mob-nav::-webkit-scrollbar { width: 3px; }
.mob-nav::-webkit-scrollbar-thumb { background: rgba(212,166,42,0.2); border-radius: 3px; }
.mob-nav-link { display: flex; align-items: center; padding: 14px 24px; min-height: 44px; color: #b0bfbf; text-decoration: none; font-size: 14px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; border-left: 3px solid transparent; transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.mob-nav-link:hover, .mob-nav-link.active { color: var(--gold); border-left-color: var(--gold); background: rgba(212,166,42,0.05); }
.mob-nav-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 24px; }
.mob-dropdown { position: relative; }
.mob-dropdown-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 44px; padding: 14px 24px; background: none; border: none; border-left: 3px solid transparent; cursor: pointer; color: #b0bfbf; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; text-align: left; transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease; touch-action: manipulation; }
.mob-dropdown-toggle:hover, .mob-dropdown.open .mob-dropdown-toggle { color: var(--gold); border-left-color: var(--gold); background: rgba(212,166,42,0.05); }
.mob-arrow { width: 14px; height: 14px; flex-shrink: 0; stroke: currentColor; transition: transform 0.25s ease; }
.mob-dropdown.open .mob-arrow { transform: rotate(180deg); }
.mob-dropdown-menu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: rgba(255,255,255,0.02); border-left: 3px solid rgba(212,166,42,0.25); margin-left: 24px; }
.mob-dropdown.open .mob-dropdown-menu { max-height: 400px; }
.mob-sub-link { display: flex; align-items: center; padding: 11px 20px; min-height: 40px; color: rgba(180,200,200,0.7); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.3px; transition: color 0.2s ease, background 0.2s ease; border-bottom: 1px solid rgba(255,255,255,0.04); }
.mob-sub-link:last-child { border-bottom: none; }
.mob-sub-link:hover { color: var(--gold); background: rgba(212,166,42,0.06); }
.mob-sidebar-cta { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.mob-sidebar-cta a { display: block; background: var(--gold); color: var(--dark); text-align: center; text-decoration: none; font-size: 14px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; padding: 13px; border-radius: 10px; transition: background 0.2s ease, transform 0.2s ease; }
.mob-sidebar-cta a:hover { background: var(--gold-light); transform: translateY(-1px); }
@media (max-width: 768px) {
  .sidebar-open-btn { display: flex; }
  nav { display: none !important; }
  .topbar-cta { display: none !important; }
  .topbar { padding: 0 16px !important; height: 68px !important; padding-top: env(safe-area-inset-top) !important; }
  .logo-img { height: 48px !important; }
}

*, *::before, *::after { -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body { overscroll-behavior-y: auto; }
input, select, textarea, button { font-size: 16px; touch-action: manipulation; }
.ad-slide img, .promo-img, .ec-hero-image img, .ft-sub-image img, .feature-detail-image img, .ad-slider-wrap img { user-select: none; -webkit-user-drag: none; pointer-events: none; }
.ad-slider-wrap, .ad-slider-track { user-select: none; }
/* topbar safe-area handled by mobile media query */
.mobile-sidebar { padding-bottom: env(safe-area-inset-bottom); height: 100dvh; top: 0; padding-top: env(safe-area-inset-top); padding-right: env(safe-area-inset-right); }
.footer, .ec-footer { padding-bottom: calc(48px + env(safe-area-inset-bottom)); }
#topBtn, #ec-top-btn { bottom: calc(28px + env(safe-area-inset-bottom)); right: calc(28px + env(safe-area-inset-right)); }
.hero-right { top: calc(96px + env(safe-area-inset-top)); }
.tab { min-height: 44px; min-width: 44px; }
.btn-visit, .btn-cta, .btn-visit-featured, .ec-btn-primary, .ec-btn-outline, .bs-cta-btn, .bs-play-btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.slider-arrow { width: 44px; height: 44px; }
.dot { min-width: 20px; min-height: 20px; }
.bs-faq-q { min-height: 44px; }
body.sidebar-open { overflow: hidden !important; overscroll-behavior: none !important; position: static !important; width: auto !important; }
.country-tabs { -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; scrollbar-width: none; }
.country-tabs::-webkit-scrollbar { display: none; }
a, button, .tab, .btn-visit, .btn-cta, .btn-visit-featured, .ec-btn-primary, .ec-btn-outline, .mob-nav-link, .mob-dropdown-toggle, .mob-sub-link, .dot, .slider-arrow, .bs-play-btn, .bs-cta-btn, .ec-qcard, .features-nav-card, .brand-row, .bs-faq-q, .top-pick-card { touch-action: manipulation; }
.ad-slider-wrap { touch-action: pan-y pinch-zoom; }

@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; }
  .ticker-content { animation: none !important; }
  .reticle-svg { animation: none !important; }
  .top-pick-card::after { animation: none !important; }
  .brand-row { animation: none; opacity: 1; transform: none; }
}
@media (hover: none) {
  .brand-row:hover { transform: none; box-shadow: none; background: transparent; }
  .brand-row:hover::before { opacity: 0; }
  .info-card:hover, .ec-casino-card:hover, .ec-bonus-card:hover, .ec-review-card:hover, .ec-qcard:hover, .ec-payment-card:hover, .ec-reason-card:hover, .features-nav-card:hover, .ec-rg-card:hover { transform: none; box-shadow: none; border-color: inherit; }
  .btn-visit:hover, .btn-cta:hover, .ec-btn-primary:hover, .ec-btn-outline:hover, .mob-nav-link:hover { transform: none; box-shadow: none; }
}
@media (max-width: 900px) and (orientation: landscape) {
  .hero { grid-template-columns: 1fr 1fr !important; padding: 16px 4% 24px !important; gap: 24px !important; }
  .hero-right { position: static !important; }
  .country-box { max-height: calc(100dvh - 80px); overflow-y: auto; }
  .brand-list { max-height: calc(100dvh - 320px) !important; }
  .ec-hero-inner { grid-template-columns: 1fr 320px !important; gap: 32px !important; }
  .ec-hero { padding: 40px 0 32px !important; }
  .features-hero { padding: 60px 5% 40px !important; }
  .features-hero h1 { font-size: 56px !important; }
  .mobile-sidebar { height: 100dvh !important; }
  .topbar { height: 60px !important; min-height: 60px !important; }
  .logo-img { height: 44px !important; }
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer-inner, .ec-footer-inner { padding-bottom: max(48px, calc(24px + env(safe-area-inset-bottom))); }
  #topBtn, #ec-top-btn { bottom: max(28px, calc(16px + env(safe-area-inset-bottom))); }
  .mob-sidebar-cta { padding-bottom: max(20px, calc(12px + env(safe-area-inset-bottom))); }
}
@media (max-width: 768px) {
  .topbar { padding-left: max(16px, env(safe-area-inset-left)) !important; padding-right: max(16px, env(safe-area-inset-right)) !important; height: auto !important; min-height: calc(68px + env(safe-area-inset-top)) !important; }
  .country-tabs { -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; }
  .tab { scroll-snap-align: start; flex-shrink: 0; }
  .hero-right { position: static !important; top: auto !important; }
  .ticker-wrap { height: 44px !important; }
  .hero-meta { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 0 !important; }
  .meta-item { padding: 12px 8px !important; margin-right: 0 !important; border-right: 1px solid rgba(255,255,255,0.08) !important; }
  .meta-item:last-child { border-right: none !important; }
  .meta-val { font-size: 28px !important; }
  .brand-list { max-height: calc(100dvh - 400px) !important; min-height: 200px; }
  .mobile-sidebar { height: 100dvh !important; padding-bottom: max(20px, env(safe-area-inset-bottom)) !important; }
  .ec-casino-grid { grid-template-columns: 1fr !important; }
  .ec-bonus-grid { grid-template-columns: 1fr !important; }
  .ec-review-grid { grid-template-columns: 1fr !important; }
  .ec-payment-grid { grid-template-columns: 1fr 1fr !important; }
  .ec-reason-grid { grid-template-columns: 1fr 1fr !important; }
  .ec-casino-actions { flex-direction: row !important; }
  .ec-btn-primary, .ec-btn-outline { flex: 1 !important; }
  .ec-rank-badge { font-size: 9px !important; }
  .ec-bonus-amount { font-size: 48px !important; }
  .feature-detail-section, .feature-detail-section.reverse { grid-template-columns: 1fr !important; overflow: hidden !important; padding: 40px 5%; gap: 28px; }
  .feature-detail-image { width: 100% !important; height: auto !important; max-height: none !important; position: static !important; max-width: 100% !important; border-radius: 14px; }
  .ft-sub, .ft-sub.ft-sub--reverse { grid-template-columns: 1fr !important; gap: 20px; padding: 28px 0; }
  .ft-sub-image { position: static !important; aspect-ratio: unset !important; max-height: none !important; height: auto !important; }
  .footer-inner, .ec-footer-inner { padding-bottom: max(32px, calc(20px + env(safe-area-inset-bottom))) !important; }
  .features-hero { padding: 56px 5% 48px; grid-template-columns: 1fr; gap: 28px; }
  .features-hero h1 { font-size: 48px; }
  .features-hero-image { height: auto; }
  .features-nav { grid-template-columns: 1fr 1fr; gap: 12px; padding: 22px 5%; }
  .features-faq { padding: 52px 5%; }
  .features-faq h2 { font-size: 38px; }
  .ec-hero { padding: 48px 0 40px; }
  .ec-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .ec-hero-text h1 { font-size: 44px; }
  .ec-section { padding: 52px 0; }
  .ec-section-head { margin-bottom: 28px; }
  .ec-section-head h2 { font-size: clamp(28px, 6vw, 42px); }
  .ec-quicknav .ec-container { gap: 10px; }
  .ec-qcard { padding: 16px 14px; min-width: unset; flex: 1; }
  .ec-qcard h3 { font-size: 13px; }
  .ec-qcard p { display: none; }
  .ec-qcard-icon { font-size: 22px; }
  .ec-responsible-inner { grid-template-columns: 1fr; gap: 32px; }
  .ec-responsible-text h2 { font-size: 36px; }
  .bs-trust-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bs-article-grid { grid-template-columns: 1fr; }
  .bs-heading { font-size: 38px; }
  .bs-cta-inner h2 { font-size: 44px; }
  .bs-rg-inner { flex-direction: column; gap: 20px; }
  .bs-pokies, .bs-article, .bs-trust, .bs-faq, .bs-cta, .bs-rg { padding: 52px 5%; }
  .footer-inner { padding: 36px 5%; gap: 14px; }
  .ec-footer-inner { gap: 14px; padding: 36px 5%; }
}
@media (max-width: 430px) {
  .hero { padding: 20px 16px 36px !important; gap: 20px !important; }
  .country-box { padding: 16px 14px !important; }
  .country-box h1 { font-size: 36px !important; }
  .tab { font-size: 11px !important; padding: 10px 12px !important; }
  .features-hero h1 { font-size: 48px !important; }
  .feature-detail-text h2 { font-size: 36px !important; }
  .ec-hero-text h1 { font-size: 40px !important; }
  .ec-section-head h2 { font-size: 30px !important; }
  .ec-payment-grid { grid-template-columns: 1fr 1fr !important; }
  .ec-reason-grid { grid-template-columns: 1fr !important; }
  .hero-right-text h2 { font-size: 32px !important; }
  .meta-val { font-size: 24px !important; }
  .content-inner h2 { font-size: 40px !important; }
  .mobile-sidebar { width: 100% !important; max-width: 100% !important; }
}
@media (max-width: 390px) {
  .country-box h1 { font-size: 32px !important; }
  .features-hero h1 { font-size: 42px !important; }
  .ec-hero-text h1 { font-size: 36px !important; }
  .brand-row { grid-template-columns: 44px 1fr !important; gap: 6px !important; padding: 12px 4px !important; }
  .brand-logo-wrap { width: 44px !important; height: 44px !important; }
  .brand-logo-wrap img { width: 32px !important; height: 32px !important; }
  .ec-bonus-amount { font-size: 42px !important; }
  .ec-payment-grid { grid-template-columns: 1fr !important; }
  .ticker-label { font-size: 8px !important; padding: 0 10px !important; }
  .ticker-content span { font-size: 11px !important; }
}
@media (max-width: 360px) {
  .topbar { padding: 0 12px !important; }
  .logo-img { height: 40px !important; }
  .country-box h1 { font-size: 28px !important; }
  .tab { font-size: 10px !important; padding: 8px 10px !important; }
  .ec-hero-text h1 { font-size: 32px !important; }
  .ec-section-head h2 { font-size: 26px !important; }
  .ec-bonus-amount { font-size: 36px !important; }
  .mobile-sidebar { width: 100vw !important; max-width: 100vw !important; }
}
@media (max-width: 380px) {
  .ec-reason-grid { grid-template-columns: 1fr; }
  .features-nav { grid-template-columns: 1fr; }
  .bs-trust-grid { grid-template-columns: 1fr; }
  .ec-payment-grid { grid-template-columns: 1fr; }
  .ec-badges { flex-direction: column; align-items: flex-start; }
}

.skip-to-content { position: absolute; top: -100%; left: 16px; z-index: 99999; background: var(--gold, #d4a62a); color: #031315; font-size: 14px; font-weight: 800; padding: 10px 20px; border-radius: 0 0 8px 8px; text-decoration: none; transition: top 0.2s ease; }
.skip-to-content:focus { top: 0; }
.affiliate-disclosure { background: rgba(212,166,42,0.07); border-bottom: 1px solid rgba(212,166,42,0.15); padding: 10px 5%; }
.affiliate-disclosure-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: rgba(180,150,60,0.85); line-height: 1.5; }
.affiliate-disclosure-inner svg { width: 14px; height: 14px; fill: rgba(212,166,42,0.7); flex-shrink: 0; margin-top: 1px; }
.affiliate-disclosure-inner strong { color: rgba(212,166,42,0.95); }
.affiliate-disclosure-inner a { color: rgba(212,166,42,0.85); text-decoration: underline; text-underline-offset: 2px; }
.affiliate-disclosure-inner a:hover { color: var(--gold, #d4a62a); }
.ec-affiliate-note { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted, #6b8280); background: rgba(212,166,42,0.04); border: 1px solid rgba(212,166,42,0.12); border-radius: 8px; padding: 8px 14px; margin-bottom: 20px; line-height: 1.5; }
.ec-affiliate-note svg { flex-shrink: 0; fill: rgba(212,166,42,0.6); }
.ec-card-disclaimer { font-size: 10px; color: var(--text-muted, #6b8280); line-height: 1.5; }
.ec-card-disclaimer a { color: rgba(212,166,42,0.7); text-decoration: underline; text-underline-offset: 2px; }
.ec-review-meta { display: flex; flex-direction: column; gap: 2px; }
.ec-review-name { font-weight: 700; color: var(--text-dark, #07191c); font-size: 12px; }
.ec-review-location { font-size: 11px; color: var(--text-muted, #6b8280); }
.ec-review-date { font-size: 11px; color: var(--text-muted, #6b8280); }
.footer-nav, .ec-footer-nav { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-nav a, .ec-footer-nav a { font-size: 12px; font-weight: 600; color: rgba(90,110,110,0.75); text-decoration: none; letter-spacing: 0.3px; transition: color 0.2s ease; }
.footer-nav a:hover, .ec-footer-nav a:hover { color: var(--gold, #d4a62a); }
.footer-rg, .ec-footer-rg { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; align-items: center; font-size: 12px; color: rgba(90,110,110,0.6); }
.footer-rg strong, .ec-footer-rg strong { color: rgba(212,166,42,0.7); font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-rg a, .ec-footer-rg a { font-size: 12px; font-weight: 600; color: rgba(212,166,42,0.65); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s ease; }
.footer-rg a:hover, .ec-footer-rg a:hover { color: var(--gold, #d4a62a); }
.footer-disclosure, .ec-footer-disclosure { font-size: 11px; color: rgba(90,110,110,0.55); max-width: 680px; line-height: 1.6; text-align: center; padding: 0 5%; }
.footer-disclosure strong, .ec-footer-disclosure strong { color: rgba(212,166,42,0.6); }
img { max-width: 100%; height: auto; }
.btn-visit:focus-visible, .btn-cta:focus-visible, .ec-btn-primary:focus-visible, .ec-btn-outline:focus-visible, .tab:focus-visible, .mob-nav-link:focus-visible, .mob-dropdown-toggle:focus-visible, .ec-qcard:focus-visible, .features-nav-card:focus-visible, .skip-to-content:focus-visible { outline: 2px solid var(--gold, #d4a62a); outline-offset: 3px; }
@media (max-width: 768px) {
  .affiliate-disclosure { padding: 8px 4%; }
  .affiliate-disclosure-inner { font-size: 11px; }
  .footer-nav, .ec-footer-nav { gap: 6px 16px; }
  .footer-nav a, .ec-footer-nav a { font-size: 11px; }
  .footer-rg, .ec-footer-rg { flex-direction: column; gap: 4px; text-align: center; }
  .ec-affiliate-note { font-size: 11px; padding: 7px 12px; }
  .ec-review-meta { gap: 1px; }
}

/* ── GLOBAL OVERFLOW FIX — prevents horizontal scroll on all devices */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
* {
  box-sizing: border-box;
}
.topbar {
  max-width: 100vw;
}
.hero {
  max-width: 100vw;
}

/* Hide ad slider on all screens, promo image stays */
.ad-slider-wrap { display: none !important; }

@media (max-width: 768px) {
  .promo-image-wrap { display: none !important; }
}

.promo-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }