/* ==========================================================================
   bunny gaming - visual-f149e7.css
   Mobile-first (320-430px) casino/gaming layout.
   Class prefix: g49e-
   Palette: #FFB3BA | #1A1A2E | #FF69B4 | #FF6347 | #FF8A80
   ========================================================================== */

:root{
  --g49e-bg:#1A1A2E;
  --g49e-bg-2:#22223f;
  --g49e-bg-3:#16162a;
  --g49e-card:#262648;
  --g49e-card-2:#2f2f55;
  --g49e-pink:#FF69B4;
  --g49e-tomato:#FF6347;
  --g49e-coral:#FF8A80;
  --g49e-blush:#FFB3BA;
  --g49e-ink:#0d0d1f;
  --g49e-text:#f6f4ff;
  --g49e-muted:#b9b4d6;
  --g49e-line:rgba(255,179,186,.16);
  --g49e-grad:linear-gradient(135deg,#FF69B4 0%,#FF6347 55%,#FF8A80 100%);
  --g49e-grad-soft:linear-gradient(135deg,rgba(255,105,180,.18),rgba(255,99,71,.18));
  --g49e-shadow:0 10px 26px rgba(0,0,0,.38);
  --g49e-radius:14px;
  --g49e-radius-sm:10px;
  --g49e-max:430px;
  --g49e-header-h:60px;
  --g49e-bottom-h:66px;
}

*{box-sizing:border-box;-webkit-tap-highlight-color:transparent;}
html,body{margin:0;padding:0;}
html{background:#0d0d1f;}
body{
  font-family:"Segoe UI",system-ui,-apple-system,"Helvetica Neue",Arial,sans-serif;
  color:var(--g49e-text);
  background:
    radial-gradient(1200px 480px at 50% -10%, rgba(255,105,180,.18), transparent 60%),
    radial-gradient(800px 360px at 100% 0%, rgba(255,99,71,.14), transparent 55%),
    var(--g49e-bg);
  font-size:15px;
  line-height:1.6;
  min-height:100vh;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* Mobile canvas wrapper - stays phone-width on wider screens */
.g49e-shell{
  max-width:var(--g49e-max);
  margin:0 auto;
  background:var(--g49e-bg);
  min-height:100vh;
  position:relative;
  box-shadow:0 0 60px rgba(0,0,0,.5);
}
@media (min-width:480px){
  body{background:#0b0b18;}
  .g49e-shell{border-left:1px solid var(--g49e-line);border-right:1px solid var(--g49e-line);}
}

a{color:var(--g49e-blush);text-decoration:none;}
a:hover{color:#fff;}
img{display:block;max-width:100%;}
p{margin:0 0 12px;}

/* ===================== Header ===================== */
.g49e-header{
  position:sticky;top:0;z-index:50;
  max-width:var(--g49e-max);
  margin:0 auto;
  height:var(--g49e-header-h);
  display:flex;align-items:center;gap:10px;
  padding:0 12px;
  background:linear-gradient(180deg,rgba(22,22,42,.96),rgba(22,22,42,.86));
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--g49e-line);
}
.g49e-brand{
  display:flex;align-items:center;gap:9px;flex:1;min-width:0;
}
.g49e-brand .g49e-logo{
  width:38px;height:38px;border-radius:10px;object-fit:cover;
  box-shadow:0 0 0 2px rgba(255,105,180,.6), 0 6px 14px rgba(255,99,71,.35);
  background:var(--g49e-card);
}
.g49e-brand-text{display:flex;flex-direction:column;line-height:1.1;min-width:0;}
.g49e-brand-title{
  font-weight:800;font-size:16px;letter-spacing:.3px;
  background:var(--g49e-grad);-webkit-background-clip:text;background-clip:text;color:transparent;
  white-space:nowrap;
}
.g49e-brand-tag{font-size:10.5px;color:var(--g49e-muted);white-space:nowrap;}

.g49e-header-actions{display:flex;align-items:center;gap:7px;}
.g49e-btn{
  -webkit-appearance:none;appearance:none;border:0;cursor:pointer;
  font-weight:700;font-size:13px;
  height:38px;padding:0 14px;border-radius:20px;
  display:inline-flex;align-items:center;gap:6px;
  transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
  font-family:inherit;
}
.g49e-btn:active{transform:translateY(1px);}
.g49e-btn-primary{
  background:var(--g49e-grad);color:#1a0a14;
  box-shadow:0 8px 18px rgba(255,99,71,.35);
}
.g49e-btn-primary:hover{filter:brightness(1.06);color:#1a0a14;}
.g49e-btn-ghost{
  background:rgba(255,179,186,.10);color:var(--g49e-blush);
  border:1px solid var(--g49e-line);
}
.g49e-btn-ghost:hover{background:rgba(255,179,186,.18);color:#fff;}

.g49e-menu-btn{
  width:38px;height:38px;border-radius:12px;
  background:rgba(255,179,186,.10);
  border:1px solid var(--g49e-line);
  color:var(--g49e-blush);
  display:inline-flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.g49e-menu-btn:hover{background:rgba(255,179,186,.18);color:#fff;}

/* ===================== Slide-over menu ===================== */
.g49e-menu-overlay{
  position:fixed;inset:0;z-index:80;
  background:rgba(8,8,18,.6);
  opacity:0;pointer-events:none;
  transition:opacity .25s ease;
}
.g49e-menu-overlay.g49e-open{opacity:1;pointer-events:auto;}
.g49e-menu{
  position:fixed;top:0;right:0;bottom:0;z-index:90;
  width:min(82vw,340px);
  background:linear-gradient(180deg,#1d1d38,#15152b);
  border-left:1px solid var(--g49e-line);
  transform:translateX(105%);
  transition:transform .3s cubic-bezier(.22,.61,.36,1);
  display:flex;flex-direction:column;
  box-shadow:-20px 0 50px rgba(0,0,0,.5);
}
.g49e-menu.g49e-open{transform:translateX(0);}
.g49e-menu-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 16px;border-bottom:1px solid var(--g49e-line);
}
.g49e-menu-head .g49e-brand-title{font-size:17px;}
.g49e-menu-close{
  width:34px;height:34px;border-radius:10px;
  background:rgba(255,179,186,.12);border:1px solid var(--g49e-line);
  color:var(--g49e-blush);display:inline-flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.g49e-menu-body{padding:10px 12px 24px;overflow-y:auto;flex:1;}
.g49e-menu-section{margin:12px 0 6px;padding:0 6px;color:var(--g49e-muted);font-size:11px;letter-spacing:1.4px;text-transform:uppercase;}
.g49e-menu-link{
  display:flex;align-items:center;gap:12px;
  padding:12px 12px;border-radius:12px;
  color:var(--g49e-text);font-weight:600;font-size:14px;
  border:1px solid transparent;
  transition:background .15s ease, transform .12s ease;
}
.g49e-menu-link:hover{background:rgba(255,105,180,.12);color:#fff;transform:translateX(2px);}
.g49e-menu-link .g49e-menu-ico{width:22px;height:22px;color:var(--g49e-pink);flex-shrink:0;}
.g49e-menu-cta{display:flex;gap:10px;padding:14px 12px;}
.g49e-menu-cta .g49e-btn{flex:1;justify-content:center;height:42px;}

/* ===================== Main ===================== */
.g49e-main{padding:14px 12px calc(var(--g49e-bottom-h) + 28px);}

/* Hero */
.g49e-hero{position:relative;border-radius:18px;overflow:hidden;margin-bottom:14px;box-shadow:var(--g49e-shadow);}
.g49e-carousel{position:relative;}
.g49e-slides{display:flex;scroll-snap-type:x mandatory;overflow-x:auto;scrollbar-width:none;border-radius:18px;}
.g49e-slides::-webkit-scrollbar{display:none;}
.g49e-slide{
  flex:0 0 100%;scroll-snap-align:center;position:relative;
  aspect-ratio: 16/9;
}
.g49e-slide img{width:100%;height:100%;object-fit:cover;}
.g49e-slide-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(13,13,31,.05) 30%, rgba(13,13,31,.85) 100%);
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:14px;
}
.g49e-slide-title{font-size:18px;font-weight:800;margin:0 0 2px;color:#fff;}
.g49e-slide-text{font-size:12.5px;color:var(--g49e-blush);margin:0 0 10px;}
.g49e-slide .g49e-btn{height:36px;padding:0 16px;font-size:12.5px;}
.g49e-carousel-dots{display:flex;gap:6px;justify-content:center;padding:8px 0 4px;}
.g49e-carousel-dots button{
  width:7px;height:7px;border-radius:50%;border:0;padding:0;
  background:rgba(255,179,186,.28);cursor:pointer;transition:all .2s ease;
}
.g49e-carousel-dots button.g49e-active{background:var(--g49e-grad);width:22px;border-radius:6px;}

/* Trust strip */
.g49e-trust{
  display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-bottom:16px;
}
.g49e-trust-item{
  background:var(--g49e-card);border:1px solid var(--g49e-line);
  border-radius:var(--g49e-radius-sm);
  padding:10px 6px;text-align:center;
}
.g49e-trust-num{font-weight:800;font-size:15px;background:var(--g49e-grad);-webkit-background-clip:text;background-clip:text;color:transparent;}
.g49e-trust-lbl{font-size:10.5px;color:var(--g49e-muted);margin-top:2px;}

/* Section */
.g49e-section{margin:22px 0 8px;}
.g49e-section-head{
  display:flex;align-items:center;gap:10px;margin:0 0 12px;
}
.g49e-section-bar{width:5px;height:22px;border-radius:3px;background:var(--g49e-grad);}
.g49e-section-title{font-size:17px;font-weight:800;margin:0;letter-spacing:.2px;}
.g49e-section-sub{font-size:12px;color:var(--g49e-muted);margin-left:auto;}
.g49e-section-intro{font-size:13px;color:var(--g49e-muted);margin:0 0 12px;}

/* Game grid - 4 cols at 320px */
.g49e-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}
@media (min-width:375px){
  .g49e-grid{grid-template-columns:repeat(5,1fr);}
}
.g49e-game{
  display:block;cursor:pointer;text-decoration:none;color:inherit;
  background:var(--g49e-card);
  border:1px solid var(--g49e-line);
  border-radius:12px;
  overflow:hidden;
  transition:transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.g49e-game:hover{transform:translateY(-3px);border-color:rgba(255,105,180,.55);box-shadow:0 10px 22px rgba(255,99,71,.22);color:#fff;}
.g49e-game-img{
  position:relative;aspect-ratio:1/1;background:var(--g49e-bg-3);overflow:hidden;
}
.g49e-game-img img{width:100%;height:100%;object-fit:cover;}
.g49e-game-tag{
  position:absolute;top:5px;left:5px;
  font-size:9px;font-weight:800;letter-spacing:.4px;
  padding:2px 6px;border-radius:6px;
  background:var(--g49e-grad);color:#1a0a14;
}
.g49e-game-name{
  font-size:10.5px;line-height:1.25;font-weight:600;
  padding:5px 5px 6px;color:var(--g49e-text);
  text-align:center;
  overflow:hidden;display:-webkit-box;
  -webkit-line-clamp:2;-webkit-box-orient:vertical;
  min-height:28px;
}

/* Content cards */
.g49e-card{
  background:var(--g49e-card);
  border:1px solid var(--g49e-line);
  border-radius:var(--g49e-radius);
  padding:14px;
  margin-bottom:12px;
}
.g49e-card h2{margin:0 0 8px;font-size:16px;}
.g49e-card h3{margin:14px 0 6px;font-size:14px;color:var(--g49e-blush);}
.g49e-card p{font-size:13.5px;color:var(--g49e-muted);margin:0 0 10px;}
.g49e-card p strong, .g49e-card p b{color:var(--g49e-text);}

.g49e-h1{font-size:24px;line-height:1.25;margin:6px 0 6px;font-weight:900;}
.g49e-h1 .grad{background:var(--g49e-grad);-webkit-background-clip:text;background-clip:text;color:transparent;}
.g49e-lead{font-size:13.5px;color:var(--g49e-muted);margin:0 0 14px;}

/* Pill list (process / quick info) */
.g49e-pills{display:flex;flex-wrap:wrap;gap:7px;margin:8px 0 4px;}
.g49e-pill{
  font-size:11.5px;padding:5px 11px;border-radius:999px;
  background:var(--g49e-grad-soft);border:1px solid var(--g49e-line);
  color:var(--g49e-blush);font-weight:600;
}

/* Feature columns */
.g49e-cols-2{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.g49e-cols-3{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
.g49e-mini{
  background:var(--g49e-bg-2);border:1px solid var(--g49e-line);
  border-radius:12px;padding:12px;text-align:center;
}
.g49e-mini .g49e-mini-ico{
  width:38px;height:38px;border-radius:10px;margin:0 auto 8px;
  display:flex;align-items:center;justify-content:center;
  background:var(--g49e-grad-soft);color:var(--g49e-pink);
}
.g49e-mini h4{margin:0 0 4px;font-size:12.5px;color:#fff;}
.g49e-mini p{margin:0;font-size:11px;color:var(--g49e-muted);line-height:1.4;}

/* Steps */
.g49e-step{display:flex;gap:10px;margin-bottom:10px;}
.g49e-step-num{
  flex-shrink:0;width:26px;height:26px;border-radius:8px;
  background:var(--g49e-grad);color:#1a0a14;font-weight:800;font-size:13px;
  display:flex;align-items:center;justify-content:center;
}
.g49e-step-body h4{margin:2px 0 3px;font-size:13.5px;}
.g49e-step-body p{margin:0;font-size:12.5px;color:var(--g49e-muted);}

/* CTA band */
.g49e-cta{
  position:relative;overflow:hidden;border-radius:18px;
  padding:18px 16px;text-align:center;
  background:var(--g49e-grad);
  color:#1a0a14;margin:18px 0;
  box-shadow:0 14px 30px rgba(255,99,71,.32);
}
.g49e-cta h2{margin:0 0 6px;font-size:18px;color:#1a0a14;}
.g49e-cta p{margin:0 0 12px;font-size:12.5px;color:#3a0e1e;font-weight:600;}
.g49e-cta .g49e-btn{
  background:#1a0a14;color:#fff;height:42px;padding:0 22px;
}
.g49e-cta .g49e-btn:hover{filter:brightness(1.2);color:#fff;}

/* Inline link paragraph */
.g49e-prose p{font-size:13.5px;color:var(--g49e-muted);margin:0 0 11px;}
.g49e-prose a{color:var(--g49e-pink);font-weight:600;border-bottom:1px dashed rgba(255,105,180,.4);}
.g49e-prose a:hover{color:#fff;}
.g49e-prose h2{font-size:16px;margin:18px 0 8px;color:#fff;}
.g49e-prose h3{font-size:14px;margin:14px 0 6px;color:var(--g49e-blush);}

/* Extended footer */
.g49e-ext-footer{
  margin-top:22px;border-top:1px solid var(--g49e-line);
  padding-top:18px;
}
.g49e-ext-grid{display:grid;grid-template-columns:1fr;gap:14px;}
.g49e-ext-brand .g49e-brand-title{font-size:16px;}
.g49e-ext-brand p{font-size:12.5px;color:var(--g49e-muted);margin:8px 0 0;}
.g49e-ext-col h4{
  font-size:11px;letter-spacing:1.4px;text-transform:uppercase;color:var(--g49e-coral);margin:0 0 8px;
}
.g49e-ext-col ul{list-style:none;padding:0;margin:0;}
.g49e-ext-col li{margin:0 0 7px;}
.g49e-ext-col a{display:inline-flex;align-items:center;gap:8px;font-size:13px;color:var(--g49e-text);}
.g49e-ext-col a:hover{color:var(--g49e-pink);}
.g49e-ext-col .g49e-ext-ico{width:16px;height:16px;color:var(--g49e-coral);}
.g49e-ext-promos{display:grid;grid-template-columns:1fr 1fr;gap:8px;}
.g49e-ext-promo{
  display:flex;align-items:center;gap:8px;
  background:var(--g49e-card);border:1px solid var(--g49e-line);
  border-radius:10px;padding:10px;cursor:pointer;
  font-size:12.5px;font-weight:700;color:var(--g49e-text);
}
.g49e-ext-promo:hover{border-color:rgba(255,105,180,.55);color:#fff;}
.g49e-ext-promo .g49e-ext-ico{color:var(--g49e-pink);}
.g49e-disclaimer{
  margin-top:14px;padding:12px;border-radius:10px;
  background:rgba(255,99,71,.08);border:1px solid var(--g49e-line);
  font-size:11.5px;color:var(--g49e-muted);
}

/* Copyright bar (above bottom nav) */
.g49e-copyright{
  text-align:center;font-size:11.5px;color:var(--g49e-muted);
  padding:12px 12px 6px;border-top:1px solid var(--g49e-line);
  margin-top:14px;
}

/* ===================== Bottom Nav ===================== */
.g49e-bottom{
  position:fixed;left:50%;transform:translateX(-50%);
  bottom:0;width:100%;max-width:var(--g49e-max);
  height:var(--g49e-bottom-h);z-index:60;
  display:grid;grid-template-columns:repeat(5,1fr);
  background:linear-gradient(180deg,#1b1b36,#101022);
  border-top:1px solid var(--g49e-line);
  box-shadow:0 -10px 26px rgba(0,0,0,.45);
  padding-bottom:env(safe-area-inset-bottom);
}
.g49e-bottom-btn{
  -webkit-appearance:none;appearance:none;
  background:transparent;border:0;cursor:pointer;
  font-family:inherit;color:var(--g49e-muted);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:3px;font-size:10px;font-weight:600;
  padding:6px 2px;position:relative;
  transition:color .18s ease, transform .18s ease;
  min-height:44px;
}
.g49e-bottom-btn .g49e-bottom-ico{
  width:22px;height:22px;
  color:var(--g49e-coral);
  transition:transform .18s ease, color .18s ease;
}
.g49e-bottom-btn:hover{color:#fff;}
.g49e-bottom-btn:hover .g49e-bottom-ico{transform:translateY(-2px);}
.g49e-bottom-btn.g49e-active{
  color:#fff;
}
.g49e-bottom-btn.g49e-active::before{
  content:"";position:absolute;top:4px;left:50%;transform:translateX(-50%);
  width:34px;height:26px;border-radius:14px;
  background:var(--g49e-grad);opacity:.22;
}
.g49e-bottom-btn.g49e-active .g49e-bottom-ico{color:#fff;}
.g49e-bottom-btn.g49e-promo{
  color:var(--g49e-pink);
}
.g49e-bottom-btn.g49e-promo .g49e-bottom-ico{color:var(--g49e-pink);}
.g49e-bottom-btn.g49e-promo:hover .g49e-bottom-ico{color:#ff8ec6;}

/* Utility */
.g49e-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}
.g49e-hide-desktop{display:block;}

/* Long content readability */
.g49e-prose, .g49e-card{max-width:100%;}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  *{transition:none !important; animation:none !important;}
}
