:root{
  --header:#174D3D;
  --btn:#1B3F33;
  --edge:#FFE419;
  --bg:#0B0F0D;
  --bg-2:#111714;
  --bg-3:#161E1A;
  --line:rgba(255,255,255,.08);
  --text:#EAF1EE;
  --text-mute:#9AA8A2;
  --primary-grad:linear-gradient(180deg,#FFE419 0%,#F5C800 100%);
  --green-grad:linear-gradient(180deg,#1F5A48 0%,#143C30 100%);
  --shadow-btn:0 6px 0 rgba(0,0,0,.35), 0 12px 24px rgba(0,0,0,.45);
  --radius:14px;
  --radius-sm:10px;
  --container:1280px;
}

*,*::before,*::after{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  width:100%;
  overflow-x:hidden;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size:16px;line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
ul{list-style:none;margin:0;padding:0}
h1,h2,h3,h4{margin:0 0 .4em;line-height:1.2;font-weight:800;letter-spacing:-.01em}
p{margin:0 0 1em}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
  min-width:0;
}

/* ===== HEADER ===== */
.site-header{
  position:sticky;top:0;z-index:60;
  background:linear-gradient(180deg,#1d6048 0%,#0f3a2c 100%);
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow:0 4px 24px rgba(0,0,0,.35);
}
.header-inner{
  display:flex;align-items:center;gap:18px;
  min-height:72px;padding-top:10px;padding-bottom:10px;
}
.logo{display:inline-flex;align-items:center;flex-shrink:0}
.logo img{height:38px;width:auto;max-width:160px;object-fit:contain}

.primary-nav{
  display:flex;align-items:center;gap:6px;
  margin-left:auto;margin-right:auto;
  flex-wrap:nowrap;
  min-width:0;
}
.nav-link{
  display:inline-block;
  padding:10px 16px;
  font-weight:700;font-size:15px;color:#cfe6dc;
  white-space:nowrap;
  border-radius:8px;
  transition:color .2s, background .2s;
  position:relative;
}
.nav-link:hover{color:#fff;background:rgba(255,255,255,.04)}
.nav-link--active{color:var(--edge)}
.nav-link--active::after{
  content:"";position:absolute;left:16px;right:16px;bottom:-12px;
  height:3px;border-radius:3px;background:var(--edge);
}

.header-actions{display:flex;align-items:center;gap:8px;flex-shrink:0}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-weight:900;font-size:15px;letter-spacing:.02em;
  text-align:center;
  border-radius:999px;
  padding:14px 22px;min-height:46px;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease, background .15s ease;
  border:2px solid transparent;
  white-space:nowrap;
  text-decoration:none;
}
.btn:hover{transform:translateY(-2px);filter:brightness(1.04)}
.btn:active{transform:translateY(0);filter:brightness(.95)}

.btn--primary{
  background:var(--primary-grad);
  color:#0a1a13;
  border-color:var(--edge);
  box-shadow:0 6px 0 #c79c00, 0 14px 30px rgba(255,228,25,.25);
  text-shadow:0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover{box-shadow:0 8px 0 #c79c00, 0 18px 36px rgba(255,228,25,.35)}
.btn--primary:active{box-shadow:0 2px 0 #c79c00, 0 6px 14px rgba(255,228,25,.25)}

.btn--ghost{
  background:transparent;
  color:#fff;
  border:2px solid rgba(255,255,255,.55);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}
.btn--ghost:hover{background:rgba(255,255,255,.08);border-color:#fff}

.btn--chip{
  background:var(--btn);
  color:#fff;
  border:1.5px solid rgba(255,255,255,.18);
  padding:10px 18px;min-height:40px;
  font-size:14px;
  box-shadow:0 3px 0 rgba(0,0,0,.4);
}
.btn--chip:hover{background:#244c40}

.btn--join{
  background:var(--btn);
  color:var(--edge);
  border:2px solid var(--edge);
  padding:10px 22px;min-height:42px;
  font-size:14px;
  box-shadow:0 3px 0 #c79c00, 0 8px 18px rgba(255,228,25,.18);
}
.btn--join:hover{background:#234c40}

.btn--xl{padding:18px 32px;min-height:56px;font-size:17px}
.btn--lg{padding:16px 28px;min-height:52px;font-size:16px}
.btn--sm{padding:10px 18px;min-height:38px;font-size:13px}
.btn--xs{padding:8px 14px;min-height:32px;font-size:12px;letter-spacing:.04em}
.btn--block{width:100%}

.burger{
  display:none;width:42px;height:42px;border-radius:8px;
  background:rgba(255,255,255,.06);
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
  border:1px solid rgba(255,255,255,.1);
}
.burger span{display:block;width:20px;height:2px;background:#fff;border-radius:2px}

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:10px;padding:14px 20px 20px;
  background:#0f3a2c;
  border-top:1px solid rgba(255,255,255,.06);
}
.mobile-menu .nav-link{padding:14px 12px;border-bottom:1px solid rgba(255,255,255,.06);border-radius:0}
.mobile-menu.is-open{display:flex}

/* ===== SEARCH STRIP ===== */
.search-strip{background:var(--bg);padding:18px 0 6px}
.search-box{
  display:flex;align-items:center;gap:14px;
  background:#1d2622;
  border:1px solid rgba(255,255,255,.06);
  color:#9bb1a8;
  font-size:15px;font-weight:600;
  padding:16px 22px;border-radius:999px;
  transition:background .2s, border-color .2s;
}
.search-box:hover{background:#243029;border-color:rgba(255,255,255,.12)}
.search-box svg{flex-shrink:0;color:#7ba090}

/* ===== CATEGORY NAV ===== */
.cat-nav{
  background:var(--bg);
  padding:14px 0 22px;
  position:sticky;top:72px;z-index:50;
}
.cat-nav-inner{
  display:flex;gap:14px;
  overflow-x:auto;
  scrollbar-width:none;
  padding:6px 20px 12px;
  -webkit-overflow-scrolling:touch;
}
.cat-nav-inner::-webkit-scrollbar{display:none}
.cat-item{
  display:flex;flex-direction:column;align-items:center;gap:6px;
  flex-shrink:0;
  min-width:74px;
  padding:8px 6px;
  color:#fff;font-size:12px;font-weight:700;
  border-radius:10px;
  transition:transform .2s, color .2s;
}
.cat-item:hover{transform:translateY(-2px)}
.cat-ico{font-size:30px;line-height:1;display:block}
.cat-item--active .cat-lbl{color:var(--edge)}
.cat-item--active{position:relative}
.cat-item--active::after{content:"";display:block;width:18px;height:3px;border-radius:3px;background:var(--edge);margin-top:4px}

/* ===== HERO ===== */
.hero{
  background:linear-gradient(180deg,#0f3a2c 0%,#0b1f17 100%);
  border-bottom:1px solid rgba(255,255,255,.06);
  padding-bottom:42px;
  position:relative;
}
.hero-media{
  display:block;width:100%;
  overflow:hidden;
  border-bottom:3px solid var(--edge);
}
.hero-media img{
  width:100%;height:auto;
  max-height:380px;
  object-fit:cover;
  display:block;
}
.hero-content{text-align:center;padding-top:36px}
.hero-eyebrow{
  color:var(--edge);font-weight:800;font-size:14px;
  letter-spacing:.18em;text-transform:uppercase;margin:0 0 12px;
}
.hero-title{
  font-size:clamp(28px,5vw,56px);
  font-weight:900;line-height:1.05;
  color:#fff;
  letter-spacing:-.01em;
  margin:0 auto 24px;
  max-width:900px;
  text-shadow:0 4px 24px rgba(0,0,0,.5);
}
.hero-accent{
  color:var(--edge);
  display:inline-block;
}
.hero-ctas{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
  margin-bottom:18px;
}
.hero-note{
  color:#a4bcb1;font-size:12.5px;margin:8px auto 0;max-width:620px;
}

/* ===== SECTIONS ===== */
section{padding:48px 0}
.lobby,.live-casino,.promos,.providers,.about,.faq{position:relative}

.section-head{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  margin-bottom:22px;flex-wrap:wrap;
}
.section-title{
  font-size:clamp(22px,3vw,32px);font-weight:900;
  color:#fff;
  letter-spacing:.02em;text-transform:uppercase;
  margin:0;
}
.section-link{
  font-weight:800;font-size:13px;color:var(--edge);
  text-transform:uppercase;letter-spacing:.06em;
  border:1.5px solid var(--edge);
  padding:8px 16px;border-radius:999px;
  transition:background .2s, color .2s;
}
.section-link:hover{background:var(--edge);color:#0a1a13}

/* Filter tabs */
.filter-tabs{
  display:flex;gap:10px;flex-wrap:wrap;
  margin-bottom:22px;
}
.tab{
  display:inline-flex;align-items:center;
  padding:10px 18px;min-height:40px;
  background:#1a2521;
  border:1.5px solid rgba(255,255,255,.08);
  border-radius:999px;
  font-weight:700;font-size:13px;color:#cfe6dc;
  text-transform:uppercase;letter-spacing:.04em;
  transition:background .2s, color .2s, border-color .2s;
}
.tab:hover{background:#22302a;color:#fff}
.tab--active{
  background:var(--btn);color:var(--edge);
  border-color:var(--edge);
}

/* Jackpot strip */
.jackpot-strip{
  display:flex;align-items:center;gap:20px;flex-wrap:wrap;
  background:linear-gradient(90deg,#143c30 0%,#1d6048 100%);
  border:2px solid var(--edge);
  border-radius:var(--radius);
  padding:18px 24px;
  margin-bottom:24px;
  box-shadow:0 8px 30px rgba(0,0,0,.35);
}
.jackpot-label{
  font-weight:800;font-size:13px;
  color:#fff;text-transform:uppercase;letter-spacing:.1em;
}
.jackpot-value{
  font-family:"SF Mono",ui-monospace,Menlo,monospace;
  font-size:clamp(24px,4vw,38px);
  font-weight:900;color:var(--edge);
  letter-spacing:.02em;
  text-shadow:0 0 20px rgba(255,228,25,.4);
  flex:1;min-width:0;
  overflow-wrap:anywhere;
}

/* Game grid */
.game-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:18px;
}
.game-card{
  position:relative;
  background:#161e1a;
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:10px 10px 14px;
  display:flex;flex-direction:column;gap:10px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s;
  min-width:0;
}
.game-card:hover{
  transform:translateY(-4px);
  border-color:var(--edge);
  box-shadow:0 12px 30px rgba(0,0,0,.5), 0 0 0 1px rgba(255,228,25,.2);
}
.game-badge{
  position:absolute;top:14px;left:14px;z-index:2;
  background:#43e0a8;color:#0a1a13;
  font-weight:900;font-size:10px;letter-spacing:.08em;text-transform:uppercase;
  padding:4px 8px;border-radius:4px;
}
.media{
  width:100%;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
  background:#0a0f0d;
  aspect-ratio:16/10;
  display:flex;align-items:center;justify-content:center;
}
.media img{
  width:100%;height:100%;
  object-fit:cover;
}
.game-meta{padding:0 4px;min-width:0}
.game-name{
  font-weight:800;font-size:14px;color:#fff;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.game-prov{font-size:11px;color:var(--text-mute);margin-top:2px}
.game-actions{display:flex;gap:6px;padding:0 4px}
.game-actions .btn{flex:1;padding:8px 6px;font-size:11px}

.lobby-more{display:flex;justify-content:center;margin-top:30px}

/* Live casino grid */
.live-casino{background:var(--bg-2)}
.live-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.live-card{
  background:#161e1a;
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .2s, box-shadow .2s, border-color .2s;
  min-width:0;
}
.live-card:hover{
  transform:translateY(-4px);
  border-color:var(--edge);
  box-shadow:0 14px 32px rgba(0,0,0,.5);
}
.live-card .media{
  border-radius:0;border:0;
  aspect-ratio:16/9;
}
.live-info{padding:14px 16px}
.live-name{font-weight:800;font-size:15px;color:#fff;margin-bottom:6px}
.live-meta{
  display:flex;gap:14px;align-items:center;
  font-size:12.5px;color:#a4bcb1;font-weight:700;
}
.live-meta .flag{font-size:14px}
.live-cta{display:flex;justify-content:center;margin-top:30px}

/* Promotions */
.promos{background:var(--bg)}
.promo-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:18px;
  margin-bottom:30px;
}
.promo-card{
  background:#161e1a;
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;flex-direction:column;
  transition:transform .2s, border-color .2s, box-shadow .2s;
  min-width:0;
}
.promo-card:hover{transform:translateY(-3px);border-color:var(--edge);box-shadow:0 10px 28px rgba(0,0,0,.5)}
.promo-card--lead{
  background:linear-gradient(160deg,#1d6048 0%,#0f3a2c 100%);
  border-color:var(--edge);
}
.promo-card .media{border-radius:0;border:0;aspect-ratio:16/8}
.promo-body{padding:18px 18px 22px;display:flex;flex-direction:column;gap:10px;flex:1}
.promo-tag{
  display:inline-block;align-self:flex-start;
  background:rgba(255,228,25,.14);color:var(--edge);
  font-weight:800;font-size:11px;text-transform:uppercase;letter-spacing:.1em;
  padding:5px 10px;border-radius:4px;
}
.promo-title{font-size:18px;color:#fff;font-weight:900;margin:0}
.promo-card p{font-size:13.5px;color:#a4bcb1;margin:0 0 6px;flex:1}
.promo-card .btn{align-self:flex-start;margin-top:auto}

.vip-teaser{
  display:flex;align-items:center;gap:24px;flex-wrap:wrap;
  background:linear-gradient(90deg,#143c30 0%,#1d6048 100%);
  border:1px solid rgba(255,228,25,.3);
  border-radius:var(--radius);
  padding:28px 32px;
}
.vip-text{flex:1;min-width:240px}
.vip-text h3{color:var(--edge);font-size:22px;margin:0 0 8px;text-transform:uppercase;letter-spacing:.04em}
.vip-text p{margin:0;color:#cfe6dc;font-size:14px}

/* Providers */
.providers{background:var(--bg-2)}
.provider-strip{
  display:flex;gap:14px;flex-wrap:wrap;
  margin-bottom:30px;
}
.prov{
  background:#1a2521;
  border:1px solid rgba(255,255,255,.08);
  border-radius:8px;
  padding:14px 22px;
  font-weight:800;font-size:14px;color:#cfe6dc;
  letter-spacing:.02em;
  transition:background .2s, color .2s, border-color .2s;
  flex:1 1 auto;text-align:center;
  min-width:120px;
}
.prov:hover{background:var(--btn);color:var(--edge);border-color:var(--edge)}

.seo-text{
  background:var(--bg-3);
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:30px 36px;
  position:relative;
  overflow:hidden;
  transition:max-height .5s ease;
}
.seo-text h2{
  font-size:22px;color:var(--edge);
  margin:0 0 16px;
  text-transform:none;letter-spacing:0;
}
.seo-text p{font-size:14.5px;color:#bdcfc8;line-height:1.75;overflow-wrap:anywhere}
.seo-text--collapsed{
  max-height:240px;
  -webkit-mask-image:linear-gradient(180deg,#000 65%,transparent);
  mask-image:linear-gradient(180deg,#000 65%,transparent);
}
.seo-text--expanded{max-height:8000px;-webkit-mask-image:none;mask-image:none}
.seo-more-wrap{display:flex;justify-content:center;margin-top:18px}

/* About */
.about{background:var(--bg)}
.about-lead{
  max-width:920px;margin:0 auto 36px;text-align:center;
}
.about-lead p{color:#bdcfc8;font-size:15px;line-height:1.75}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;margin-bottom:36px;
}
.trust-card{
  background:#161e1a;
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:24px 22px;
  text-align:center;
  display:flex;flex-direction:column;gap:14px;align-items:center;
  transition:transform .2s, border-color .2s, box-shadow .2s;
  min-width:0;
}
.trust-card:hover{transform:translateY(-4px);border-color:var(--edge);box-shadow:0 12px 30px rgba(0,0,0,.5)}
.trust-media{
  width:84px;height:84px;
  border-radius:50%;
  border:2px solid var(--edge);
  background:rgba(255,228,25,.08);
  flex-shrink:0;
  aspect-ratio:1/1;
}
.trust-media img{width:100%;height:100%;object-fit:cover;border-radius:50%}
.trust-card h3{font-size:16px;color:#fff;margin:0;text-transform:uppercase;letter-spacing:.04em}
.trust-card p{font-size:13.5px;color:#a4bcb1;margin:0;line-height:1.6}

.stats-row{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;
  background:linear-gradient(90deg,#143c30 0%,#1d6048 100%);
  border:1px solid rgba(255,228,25,.25);
  border-radius:var(--radius);
  padding:28px 24px;
  margin-bottom:30px;
}
.stat{text-align:center;min-width:0}
.stat-num{font-size:clamp(24px,3.5vw,38px);font-weight:900;color:var(--edge);line-height:1}
.stat-lbl{font-size:12px;color:#cfe6dc;font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-top:6px}

.about-cta{display:flex;justify-content:center}

/* FAQ */
.faq{background:var(--bg-2)}
.faq-list{display:flex;flex-direction:column;gap:12px;max-width:980px;margin:0 auto}
.faq-item{
  background:#161e1a;
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  overflow:hidden;
  transition:border-color .2s;
}
.faq-item.is-open{border-color:var(--edge)}
.faq-q{
  width:100%;
  text-align:left;
  padding:20px 56px 20px 22px;
  font-weight:800;font-size:16px;color:#fff;
  position:relative;
  cursor:pointer;
  background:transparent;
  display:block;
}
.faq-q::after{
  content:"+";
  position:absolute;right:20px;top:50%;transform:translateY(-50%);
  font-size:26px;font-weight:900;color:var(--edge);
  transition:transform .25s;
}
.faq-item.is-open .faq-q::after{content:"−"}
.faq-q:hover{color:var(--edge)}
.faq-a{
  max-height:0;overflow:hidden;
  transition:max-height .35s ease, padding .35s ease;
  padding:0 22px;
}
.faq-item.is-open .faq-a{padding:0 22px 22px;max-height:1500px}
.faq-a p{font-size:14px;color:#bdcfc8;line-height:1.75;margin:0;overflow-wrap:anywhere}

/* ===== FOOTER ===== */
.site-footer{background:#0a100d;border-top:1px solid rgba(255,255,255,.06);margin-top:0}
.play-safe{
  background:linear-gradient(180deg,#143c30 0%,#0a201a 100%);
  border-bottom:1px solid rgba(255,228,25,.18);
  padding:34px 0;
}
.play-safe-inner{
  display:flex;align-items:center;gap:24px;flex-wrap:wrap;
  justify-content:space-between;
}
.ps-head h3{
  color:#fff;font-size:22px;margin:0 0 4px;
  text-transform:uppercase;letter-spacing:.06em;
}
.ps-head p{margin:0;color:#a4bcb1;font-size:13px;font-style:italic}
.ps-tools{display:flex;gap:18px;flex-wrap:wrap;align-items:center;flex:1;justify-content:center}
.ps-tool{
  display:inline-flex;align-items:center;gap:8px;
  color:#cfe6dc;font-weight:700;font-size:13.5px;
  padding:8px 12px;border-radius:8px;
  transition:color .2s, background .2s;
}
.ps-tool span{font-size:18px}
.ps-tool:hover{color:var(--edge);background:rgba(255,255,255,.04)}

.footer-main{padding:48px 20px 30px}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr repeat(4, minmax(0, 1fr));
  gap:36px 28px;
  margin-bottom:36px;
}
.footer-col{min-width:0}
.footer-col h4{
  color:#fff;font-size:14px;
  text-transform:uppercase;letter-spacing:.08em;
  margin:0 0 16px;
  padding-bottom:10px;
  border-bottom:2px solid var(--edge);
  display:inline-block;
  white-space:nowrap;
}
.footer-col ul{display:block}
.footer-col ul li{margin:0 0 10px;display:block}
.footer-col ul li a{
  display:inline-block;
  color:#a4bcb1;font-size:13.5px;font-weight:600;
  line-height:1.5;
  transition:color .2s;
  word-break:normal;
  overflow-wrap:break-word;
}
.footer-col ul li a:hover{color:var(--edge)}
.footer-brand{min-width:0}
.footer-brand .footer-logo{display:inline-block;margin-bottom:14px}
.footer-brand .footer-logo img{height:42px;width:auto;max-width:160px;object-fit:contain}
.footer-tag{
  color:#a4bcb1;font-size:13px;line-height:1.6;margin:0;
  word-break:normal;overflow-wrap:break-word;
}

.footer-pay{
  display:flex;gap:10px;flex-wrap:wrap;align-items:center;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
  margin-bottom:24px;
}
.footer-pay span{
  display:inline-flex;align-items:center;
  background:#1a2521;
  border:1px solid rgba(255,255,255,.08);
  padding:8px 14px;border-radius:6px;
  font-size:12px;font-weight:800;color:#cfe6dc;letter-spacing:.04em;
  white-space:nowrap;
}

.footer-legal{
  display:flex;align-items:flex-start;gap:18px;
  flex-wrap:nowrap;
}
.age-badge{
  width:54px;height:54px;border-radius:50%;
  border:3px solid var(--edge);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;font-size:16px;color:var(--edge);
  background:rgba(255,228,25,.06);
  flex-shrink:0;
}
.footer-legal-text{flex:1;min-width:0}
.footer-legal p{
  font-size:12px;color:#7e9389;line-height:1.65;margin:0 0 8px;
  word-break:normal;overflow-wrap:break-word;
}
.footer-legal .copy{color:#a4bcb1;font-weight:700;margin-top:6px}

/* ===== CATFISH ===== */
.catfish{
  position:fixed;left:0;right:0;bottom:0;z-index:80;
  background:linear-gradient(180deg,#1d6048 0%,#0f3a2c 100%);
  border-top:2px solid var(--edge);
  box-shadow:0 -10px 30px rgba(0,0,0,.6);
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  transform:translateY(0);transition:transform .35s;
}
.catfish.is-hidden{transform:translateY(120%)}
.catfish-inner{
  display:flex;align-items:center;gap:16px;
  max-width:var(--container);margin:0 auto;
  position:relative;padding-right:38px;
}
.catfish-text{flex:1;min-width:0;line-height:1.25}
.catfish-text strong{display:block;color:var(--edge);font-size:15px;font-weight:900;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.catfish-text span{display:block;color:#cfe6dc;font-size:12px;font-weight:600;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.catfish .btn{flex-shrink:0;padding:12px 20px;min-height:42px;font-size:13px}
.catfish-close{
  position:absolute;right:0;top:50%;transform:translateY(-50%);
  width:30px;height:30px;
  background:rgba(0,0,0,.4);border-radius:50%;
  color:#fff;font-size:22px;line-height:1;
  display:flex;align-items:center;justify-content:center;
}
.catfish-close:hover{background:rgba(0,0,0,.7)}

/* ===== EXIT POPUP ===== */
.exit-overlay{
  position:fixed;inset:0;z-index:100;
  background:rgba(0,0,0,.85);
  display:none;align-items:center;justify-content:center;padding:20px;
  -webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);
}
.exit-overlay.is-open{display:flex}
.exit-modal{
  background:linear-gradient(180deg,#1d6048 0%,#0a201a 100%);
  border:3px solid var(--edge);
  border-radius:18px;
  max-width:460px;width:100%;
  padding:36px 30px 30px;
  position:relative;
  text-align:center;
  box-shadow:0 30px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,228,25,.2);
}
.exit-close{
  position:absolute;top:12px;right:14px;
  width:36px;height:36px;border-radius:50%;
  background:rgba(0,0,0,.5);
  color:#fff;font-size:24px;
  display:flex;align-items:center;justify-content:center;
}
.exit-close:hover{background:rgba(0,0,0,.8)}
.exit-media{
  margin:0 auto 16px;
  width:100%;
  max-width:340px;
  border-radius:12px;
  border:2px solid var(--edge);
  aspect-ratio:16/9;
}
.exit-modal h3{color:var(--edge);font-size:22px;margin:0 0 10px;text-transform:uppercase;letter-spacing:.04em}
.exit-bonus{color:#fff;font-weight:800;font-size:15px;line-height:1.4;margin:0 0 6px}
.exit-bonus strong{display:block;color:var(--edge);font-size:24px;margin-top:4px}
.exit-sub{color:#a4bcb1;font-size:11.5px;margin:0 0 18px}

/* ===== RESPONSIVE ===== */
@media (max-width:1100px){
  .game-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .promo-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .footer-brand{grid-column:1/-1}
}

@media (max-width:960px){
  .primary-nav{display:none}
  .burger{display:flex}
  .header-actions .btn--chip,.header-actions .btn--join{display:none}
  .live-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stats-row{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
  .cat-nav{top:64px}
}

@media (max-width:720px){
  .header-inner{min-height:64px;gap:10px}
  .logo img{height:32px;max-width:120px}
  .game-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .promo-grid{grid-template-columns:1fr;gap:14px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
  .footer-brand{grid-column:1/-1}
  section{padding:38px 0}
  .hero-content{padding-top:24px}
  .hero-media img{max-height:240px}
  .seo-text{padding:22px 18px}
  .seo-text h2{font-size:18px}
  .vip-teaser{padding:22px 20px}
  .play-safe-inner{flex-direction:column;text-align:center}
  .ps-tools{justify-content:center}
  .footer-legal{flex-direction:column;align-items:center;text-align:center}
  .age-badge{margin:0 auto}
  .hero-ctas .btn,.about-cta .btn,.live-cta .btn,.lobby-more .btn{width:100%}
  .hero-ctas{flex-direction:column}
  .jackpot-strip{flex-direction:column;align-items:flex-start;text-align:left}
  .jackpot-strip .btn{width:100%}
  .catfish-inner{flex-wrap:wrap;gap:10px;padding-right:34px}
  .catfish-text{flex:1 1 100%}
  .catfish .btn{width:auto;padding:10px 18px}
}

@media (max-width:480px){
  .container{padding:0 14px}
  .game-card{padding:8px 8px 12px}
  .game-name{font-size:13px}
  .footer-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr}
  .stats-row{grid-template-columns:1fr 1fr}
  .filter-tabs{gap:8px}
  .tab{padding:8px 14px;font-size:12px;min-height:34px}
  .live-grid{grid-template-columns:1fr;gap:14px}
  .cat-item{min-width:64px}
  .cat-ico{font-size:26px}
  .footer-col h4{font-size:13px}
  .exit-modal{padding:28px 20px 24px}
  .exit-bonus strong{font-size:20px}
}
.bet365de-hub__section {
display: block;
padding: 3.75rem 0;
background: linear-gradient(180deg, #0B0F0D 0%, #0F1F17 50%, #0B0F0D 100%);
color: #EAF1EE;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
border-top: 1px solid rgba(255,255,255,0.06);
border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bet365de-hub__container {
width: 100%;
max-width: 80rem;
margin: 0 auto;
padding: 0 1.25rem;
box-sizing: border-box;
}
.bet365de-hub__intro {
margin-bottom: 2.25rem;
padding: 1.75rem 1.5rem;
background: linear-gradient(135deg, rgba(20,60,48,0.5), rgba(15,58,44,0.5));
border: 1px solid rgba(255,228,25,0.22);
border-radius: 0.875rem;
}
.bet365de-hub__h2 {
font-size: clamp(1.4rem, 3.6vw, 2.125rem);
font-weight: 900;
color: #FFFFFF;
line-height: 1.2;
letter-spacing: -0.01em;
margin: 0 0 1rem 0;
overflow-wrap: anywhere;
}
.bet365de-hub__h2::after {
content: "";
display: block;
width: 3.5rem;
height: 0.1875rem;
background: #FFE419;
border-radius: 0.25rem;
margin-top: 0.75rem;
}
.bet365de-hub__lead {
font-size: 1rem;
line-height: 1.7;
color: #BDCFC8;
margin: 0 0 0.875rem 0;
overflow-wrap: anywhere;
}
.bet365de-hub__lead:last-child {
margin-bottom: 0;
}
.bet365de-hub__article {
margin: 0 0 2rem 0;
padding: 1.5rem 1.25rem;
background: rgba(22, 30, 26, 0.7);
border: 1px solid rgba(255,255,255,0.06);
border-left: 3px solid #1F5A48;
border-radius: 0.75rem;
}
.bet365de-hub__h3 {
font-size: clamp(1.15rem, 2.6vw, 1.5rem);
font-weight: 800;
color: #FFE419;
line-height: 1.25;
margin: 0 0 1rem 0;
overflow-wrap: anywhere;
}
.bet365de-hub__h4 {
font-size: 1.0625rem;
font-weight: 800;
color: #FFFFFF;
line-height: 1.3;
margin: 1.25rem 0 0.625rem 0;
}
.bet365de-hub__p {
font-size: 0.9875rem;
line-height: 1.75;
color: #BDCFC8;
margin: 0 0 0.875rem 0;
overflow-wrap: anywhere;
}
.bet365de-hub__p:last-child {
margin-bottom: 0;
}
.bet365de-hub__p strong {
color: #FFFFFF;
font-weight: 700;
}
.bet365de-hub__p em {
color: #FFE419;
font-style: italic;
}
.bet365de-hub__list,
.bet365de-hub__glossary,
.bet365de-hub__numbered {
margin: 0 0 1rem 0;
padding: 0 0 0 1.25rem;
list-style: none;
}
.bet365de-hub__list li {
position: relative;
font-size: 0.9875rem;
line-height: 1.7;
color: #BDCFC8;
margin: 0 0 0.75rem 0;
padding-left: 0.5rem;
overflow-wrap: anywhere;
}
.bet365de-hub__list li::before {
content: "";
position: absolute;
left: -0.875rem;
top: 0.6875rem;
width: 0.4375rem;
height: 0.4375rem;
background: #FFE419;
border-radius: 50%;
}
.bet365de-hub__list strong {
color: #FFFFFF;
font-weight: 700;
}
.bet365de-hub__glossary {
display: grid;
grid-template-columns: 1fr;
gap: 0.5rem;
padding-left: 0;
}
.bet365de-hub__glossary li {
background: rgba(11, 15, 13, 0.6);
border: 1px solid rgba(255,255,255,0.05);
border-radius: 0.5rem;
padding: 0.75rem 0.875rem;
font-size: 0.9375rem;
line-height: 1.65;
color: #BDCFC8;
overflow-wrap: anywhere;
}
.bet365de-hub__glossary li strong {
color: #FFE419;
font-weight: 800;
margin-right: 0.25rem;
}
.bet365de-hub__numbered {
counter-reset: bet365de-counter;
padding-left: 0;
}
.bet365de-hub__numbered li {
counter-increment: bet365de-counter;
position: relative;
padding-left: 2.375rem;
margin-bottom: 0.875rem;
font-size: 0.9875rem;
line-height: 1.7;
color: #BDCFC8;
overflow-wrap: anywhere;
}
.bet365de-hub__numbered li::before {
content: counter(bet365de-counter);
position: absolute;
left: 0;
top: 0.0625rem;
width: 1.625rem;
height: 1.625rem;
border-radius: 50%;
background: #FFE419;
color: #0A1A13;
font-weight: 900;
font-size: 0.8125rem;
display: flex;
align-items: center;
justify-content: center;
}
.bet365de-hub__numbered li strong {
color: #FFFFFF;
font-weight: 700;
}
.bet365de-hub__tableWrap {
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
margin: 0 0 1rem 0;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 0.625rem;
}
.bet365de-hub__table {
width: 100%;
min-width: 36rem;
border-collapse: collapse;
font-size: 0.9rem;
background: rgba(11, 15, 13, 0.6);
}
.bet365de-hub__table thead {
background: linear-gradient(90deg, rgba(20,60,48,0.85), rgba(29,96,72,0.85));
}
.bet365de-hub__table th {
text-align: left;
padding: 0.8125rem 0.9375rem;
font-weight: 800;
color: #FFE419;
font-size: 0.8125rem;
text-transform: uppercase;
letter-spacing: 0.06em;
border-bottom: 1px solid rgba(255,228,25,0.3);
}
.bet365de-hub__table td {
padding: 0.8125rem 0.9375rem;
color: #BDCFC8;
line-height: 1.55;
border-bottom: 1px solid rgba(255,255,255,0.05);
vertical-align: top;
}
.bet365de-hub__table tbody tr:last-child td {
border-bottom: 0;
}
.bet365de-hub__table tbody tr:nth-child(even) td {
background: rgba(255,255,255,0.015);
}
.bet365de-hub__table td strong {
color: #FFFFFF;
}
.bet365de-hub__aside {
margin-top: 2rem;
padding: 1.75rem 1.5rem;
background: linear-gradient(135deg, rgba(20,60,48,0.7), rgba(15,58,44,0.7));
border: 1px solid rgba(255,228,25,0.35);
border-radius: 0.875rem;
}
.bet365de-hub__asideTitle {
font-size: 1.1875rem;
font-weight: 900;
color: #FFE419;
line-height: 1.3;
margin: 0 0 0.875rem 0;
}
.bet365de-hub__note {
font-size: 0.8125rem;
color: #9AA8A2;
line-height: 1.6;
margin: 1.125rem 0 1rem 0;
padding: 0.75rem 0.9375rem;
background: rgba(0,0,0,0.25);
border-left: 3px solid #FFE419;
border-radius: 0.375rem;
overflow-wrap: anywhere;
}
.bet365de-hub__cta {
margin: 1rem 0 0 0;
text-align: center;
}
.bet365de-hub__ctaLink {
display: inline-block;
padding: 0.9375rem 1.875rem;
background: linear-gradient(180deg, #FFE419 0%, #F5C800 100%);
color: #0A1A13;
border: 2px solid #FFE419;
border-radius: 999px;
font-weight: 900;
font-size: 0.9375rem;
letter-spacing: 0.02em;
text-decoration: none;
text-transform: uppercase;
transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.bet365de-hub__ctaLink:hover {
transform: translateY(-2px);
filter: brightness(1.04);
box-shadow: 0 0.625rem 1.5rem rgba(255,228,25,0.3);
}
@media (min-width: 48rem) {
.bet365de-hub__section {
padding: 4.5rem 0;
}
.bet365de-hub__intro {
padding: 2.25rem 2rem;
}
.bet365de-hub__article {
padding: 2rem 1.875rem;
margin-bottom: 2.25rem;
border-left-width: 4px;
}
.bet365de-hub__lead {
font-size: 1.0625rem;
line-height: 1.75;
}
.bet365de-hub__p,
.bet365de-hub__list li,
.bet365de-hub__numbered li {
font-size: 1rem;
line-height: 1.8;
}
.bet365de-hub__glossary {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.75rem;
}
.bet365de-hub__glossary li {
font-size: 0.9625rem;
}
.bet365de-hub__table {
font-size: 0.9375rem;
}
.bet365de-hub__aside {
padding: 2.25rem 2rem;
}
.bet365de-hub__asideTitle {
font-size: 1.375rem;
}
}
@media (min-width: 64rem) {
.bet365de-hub__section {
padding: 5.25rem 0;
}
.bet365de-hub__intro {
padding: 2.5rem 2.5rem;
}
.bet365de-hub__article {
padding: 2.25rem 2.25rem;
}
.bet365de-hub__h2 {
font-size: 2.25rem;
}
.bet365de-hub__h3 {
font-size: 1.625rem;
}
.bet365de-hub__h4 {
font-size: 1.125rem;
}
.bet365de-hub__glossary {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bet365de-hub__aside {
padding: 2.5rem 2.5rem;
}
}
