/* big bunny casino layout-5207.css - w5207- prefixed, mobile-first */

:root {
  --w5207-primary: #FF4500;
  --w5207-secondary: #FF8C00;
  --w5207-accent: #FFB347;
  --w5207-warm: #FF6347;
  --w5207-bg: #0A0A0A;
  --w5207-bg-2: #161616;
  --w5207-bg-3: #1f1f1f;
  --w5207-text: #FFFFFF;
  --w5207-text-soft: #FFD9C2;
  --w5207-text-muted: #B89B89;
  --w5207-line: rgba(255, 140, 0, 0.18);
  --w5207-gold: #FFB347;
  --w5207-radius: 14px;
  --w5207-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  --w5207-header-h: 6rem;
  --w5207-bottomnav-h: 6.4rem;
}

* { box-sizing: border-box; }

html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--w5207-bg);
  color: var(--w5207-text);
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--w5207-accent); text-decoration: none; }
a:hover { color: var(--w5207-primary); }

h1, h2, h3, h4 { margin: 0 0 0.6em; line-height: 1.25; font-weight: 800; }

p { margin: 0 0 1em; }

/* Layout containers */
.w5207-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.4rem; }
.w5207-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }

/* Skip link */
.w5207-skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--w5207-primary); color: #fff; padding: 1rem 1.4rem; z-index: 9999;
}
.w5207-skip:focus { left: 0; }

/* ============================================================
 * HEADER
 * ============================================================ */
.w5207-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(10,10,10,0.96), rgba(10,10,10,0.86));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--w5207-line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.w5207-header-scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 4px 18px rgba(255, 69, 0, 0.25);
}
.w5207-header-inner {
  max-width: 430px; margin: 0 auto; padding: 0 1.2rem;
  height: var(--w5207-header-h);
  display: flex; align-items: center; gap: 1rem;
}
.w5207-logo {
  display: flex; align-items: center; gap: 0.7rem; flex: 1; min-width: 0;
}
.w5207-logo-img {
  width: 3.2rem; height: 3.2rem; border-radius: 9px;
  background: linear-gradient(135deg, var(--w5207-primary), var(--w5207-secondary));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.5rem;
  box-shadow: 0 2px 10px rgba(255, 69, 0, 0.45);
  flex-shrink: 0;
}
.w5207-logo-text { font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1; }
.w5207-logo-text small {
  display: block; font-size: 1rem; font-weight: 600; color: var(--w5207-accent);
  letter-spacing: 0.04em; text-transform: uppercase;
}

.w5207-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.w5207-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 800; font-size: 1.3rem; padding: 0.85rem 1.4rem;
  border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-height: 4rem; text-transform: none; font-family: inherit;
}
.w5207-btn:focus-visible { outline: 2px solid var(--w5207-accent); outline-offset: 2px; }
.w5207-btn-login {
  background: transparent; color: var(--w5207-text);
  border: 1.5px solid var(--w5207-secondary);
}
.w5207-btn-login:hover { background: rgba(255, 140, 0, 0.12); }
.w5207-btn-register {
  background: linear-gradient(135deg, var(--w5207-primary), var(--w5207-secondary));
  color: #fff; box-shadow: 0 4px 14px rgba(255, 69, 0, 0.45);
}
.w5207-btn-register:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255, 69, 0, 0.55); }

.w5207-menu-btn {
  width: 4rem; height: 4rem; border-radius: 10px;
  background: var(--w5207-bg-3); border: 1px solid var(--w5207-line);
  color: var(--w5207-accent); font-size: 2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.w5207-menu-btn.w5207-active { background: var(--w5207-primary); color: #fff; }

/* Mobile menu panel */
.w5207-mobile-menu {
  position: fixed; top: var(--w5207-header-h); left: 0; right: 0; z-index: 9999;
  background: var(--w5207-bg-2); border-bottom: 1px solid var(--w5207-line);
  max-height: 0; overflow: hidden; transition: max-height 0.32s ease;
  box-shadow: var(--w5207-shadow);
}
.w5207-mobile-menu.w5207-menu-open { max-height: 70vh; overflow-y: auto; }
.w5207-mobile-menu-inner { padding: 1rem 1.4rem 1.8rem; display: grid; gap: 0.6rem; }
.w5207-mobile-menu a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.3rem 1.2rem; border-radius: 12px;
  background: var(--w5207-bg-3); color: var(--w5207-text);
  font-size: 1.45rem; font-weight: 600; border: 1px solid transparent;
}
.w5207-mobile-menu a:hover { border-color: var(--w5207-primary); color: var(--w5207-accent); }
.w5207-mobile-menu a i { color: var(--w5207-secondary); font-size: 1.8rem; width: 2.2rem; text-align: center; }
.w5207-mobile-menu-h { font-size: 1.2rem; color: var(--w5207-text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin: 0.8rem 0 0.2rem; }

/* ============================================================
 * MAIN
 * ============================================================ */
main { padding-top: var(--w5207-header-h); }
@media (max-width: 768px) {
  main { padding-bottom: 8rem; }
}

.w5207-section { padding: 3.2rem 0; }
.w5207-section-alt { background: var(--w5207-bg-2); }

.w5207-section-title {
  font-size: 2.1rem; color: #fff; margin-bottom: 0.4em; position: relative; padding-left: 1.2rem;
}
.w5207-section-title::before {
  content: ""; position: absolute; left: 0; top: 0.35em; bottom: 0.35em; width: 5px;
  background: linear-gradient(180deg, var(--w5207-primary), var(--w5207-secondary));
  border-radius: 4px;
}
.w5207-section-sub { color: var(--w5207-text-muted); font-size: 1.35rem; margin-bottom: 1.6rem; }

/* ============================================================
 * HERO / CAROUSEL
 * ============================================================ */
.w5207-hero { padding: 1.4rem 0 0.6rem; }
.w5207-carousel { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--w5207-shadow); }
.w5207-carousel-track { position: relative; }
.w5207-slide {
  position: relative; display: none; min-height: 22rem;
}
.w5207-slide.w5207-slide-active { display: block; }
.w5207-slide img { width: 100%; height: 22rem; object-fit: cover; }
.w5207-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; top: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 30%, rgba(10,10,10,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem;
}
.w5207-slide-title { font-size: 2rem; color: #fff; margin: 0 0 0.3em; text-shadow: 0 2px 6px rgba(0,0,0,0.6); }
.w5207-slide-text { color: var(--w5207-text-soft); font-size: 1.3rem; margin: 0 0 1rem; }
.w5207-slide-cta {
  align-self: flex-start; background: linear-gradient(135deg, var(--w5207-primary), var(--w5207-secondary));
  color: #fff; padding: 1rem 1.8rem; border-radius: 999px; font-weight: 800; font-size: 1.35rem;
  box-shadow: 0 4px 14px rgba(255, 69, 0, 0.45);
}
.w5207-carousel-dots {
  position: absolute; bottom: 1rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.6rem; z-index: 2;
}
.w5207-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0;
}
.w5207-dot.w5207-dot-active { background: var(--w5207-primary); width: 24px; border-radius: 6px; }

/* ============================================================
 * HERO CTA STRIP
 * ============================================================ */
.w5207-hero-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-top: 1.2rem;
}
.w5207-strip-card {
  background: var(--w5207-bg-3); border: 1px solid var(--w5207-line);
  border-radius: 12px; padding: 1.2rem 0.8rem; text-align: center;
}
.w5207-strip-card i { font-size: 2.2rem; color: var(--w5207-secondary); }
.w5207-strip-card strong { display: block; color: #fff; font-size: 1.25rem; margin-top: 0.3rem; }
.w5207-strip-card span { font-size: 1.05rem; color: var(--w5207-text-muted); }

/* ============================================================
 * GAME GRID
 * ============================================================ */
.w5207-game-block { margin-bottom: 1rem; }
.w5207-cat-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem;
}
.w5207-cat-title { display: flex; align-items: center; gap: 0.8rem; font-size: 1.9rem; color: #fff; }
.w5207-cat-title i {
  font-size: 2.2rem; color: var(--w5207-primary);
  background: rgba(255, 69, 0, 0.12); width: 3.6rem; height: 3.6rem;
  display: flex; align-items: center; justify-content: center; border-radius: 10px;
}
.w5207-cat-more { color: var(--w5207-accent); font-size: 1.25rem; font-weight: 700; }

.w5207-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem;
}
.w5207-game-card {
  background: var(--w5207-bg-3); border: 1px solid var(--w5207-line);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
}
.w5207-game-card:hover {
  transform: translateY(-3px); border-color: var(--w5207-primary);
  box-shadow: 0 6px 18px rgba(255, 69, 0, 0.35);
}
.w5207-game-thumb { position: relative; aspect-ratio: 1 / 1; background: #000; }
.w5207-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.w5207-game-badge {
  position: absolute; top: 0.4rem; left: 0.4rem;
  background: linear-gradient(135deg, var(--w5207-primary), var(--w5207-warm));
  color: #fff; font-size: 0.95rem; font-weight: 800; padding: 0.2rem 0.6rem;
  border-radius: 6px; line-height: 1.4;
}
.w5207-game-name {
  padding: 0.8rem 0.6rem; font-size: 1.18rem; font-weight: 700; color: var(--w5207-text);
  text-align: center; line-height: 1.25; min-height: 3.6rem;
  display: flex; align-items: center; justify-content: center;
}
.w5207-game-card:hover .w5207-game-name { color: var(--w5207-accent); }

/* ============================================================
 * INFO / FEATURES / CARDS
 * ============================================================ */
.w5207-cards { display: grid; gap: 1.2rem; }
.w5207-info-card {
  background: var(--w5207-bg-3); border: 1px solid var(--w5207-line);
  border-radius: 14px; padding: 1.6rem; display: flex; gap: 1.2rem; align-items: flex-start;
}
.w5207-info-card i {
  font-size: 2.6rem; color: var(--w5207-secondary); flex-shrink: 0;
  background: rgba(255, 140, 0, 0.1); width: 4.6rem; height: 4.6rem;
  display: flex; align-items: center; justify-content: center; border-radius: 10px;
}
.w5207-info-card h3 { font-size: 1.6rem; color: #fff; margin-bottom: 0.3em; }
.w5207-info-card p { margin: 0; color: var(--w5207-text-muted); font-size: 1.3rem; }

.w5207-text-block { color: var(--w5207-text-soft); font-size: 1.4rem; }
.w5207-text-block h2 { color: #fff; font-size: 1.9rem; margin-top: 0.4em; }
.w5207-text-block h3 { color: var(--w5207-accent); font-size: 1.55rem; margin-top: 1.2em; }
.w5207-text-block ul { padding-left: 1.4em; margin: 0 0 1em; }
.w5207-text-block li { margin-bottom: 0.5em; }

/* Promo CTA band */
.w5207-cta-band {
  background: linear-gradient(135deg, var(--w5207-primary), var(--w5207-secondary));
  border-radius: 16px; padding: 2rem 1.6rem; text-align: center; color: #fff;
  box-shadow: 0 8px 22px rgba(255, 69, 0, 0.35);
}
.w5207-cta-band h2 { color: #fff; font-size: 2rem; margin-bottom: 0.3em; }
.w5207-cta-band p { color: rgba(255,255,255,0.92); margin-bottom: 1.2rem; }
.w5207-cta-band .w5207-btn {
  background: #0A0A0A; color: #fff; padding: 1.1rem 2.4rem;
}

/* Testimonials */
.w5207-testimonials { display: grid; gap: 1rem; }
.w5207-testimonial {
  background: var(--w5207-bg-3); border-left: 4px solid var(--w5207-primary);
  border-radius: 10px; padding: 1.3rem 1.4rem;
}
.w5207-testimonial p { margin: 0 0 0.6em; color: var(--w5207-text-soft); font-size: 1.32rem; font-style: italic; }
.w5207-testimonial .w5207-stars { color: var(--w5207-gold); font-size: 1.3rem; letter-spacing: 2px; }
.w5207-testimonial cite { display: block; color: var(--w5207-text-muted); font-size: 1.2rem; font-style: normal; margin-top: 0.4rem; }

/* Payment methods */
.w5207-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.w5207-pay {
  background: var(--w5207-bg-3); border: 1px solid var(--w5207-line); border-radius: 10px;
  padding: 1rem 0.4rem; text-align: center; font-size: 1.05rem; color: var(--w5207-text-soft);
}
.w5207-pay i { font-size: 1.9rem; color: var(--w5207-accent); display: block; margin-bottom: 0.3rem; }

/* Winners */
.w5207-winners { display: grid; gap: 0.7rem; }
.w5207-winner {
  display: flex; align-items: center; gap: 1rem;
  background: var(--w5207-bg-3); border-radius: 10px; padding: 1rem 1.2rem;
  border: 1px solid var(--w5207-line);
}
.w5207-winner-avatar {
  width: 3.6rem; height: 3.6rem; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--w5207-secondary), var(--w5207-warm));
  color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.w5207-winner-info { flex: 1; min-width: 0; }
.w5207-winner-info strong { display: block; color: #fff; font-size: 1.3rem; }
.w5207-winner-info span { color: var(--w5207-text-muted); font-size: 1.15rem; }
.w5207-winner-amount { color: var(--w5207-gold); font-weight: 800; font-size: 1.4rem; }

/* Achievements grid */
.w5207-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.w5207-stat {
  background: var(--w5207-bg-3); border: 1px solid var(--w5207-line); border-radius: 12px;
  padding: 1.4rem 1rem; text-align: center;
}
.w5207-stat strong { display: block; font-size: 2rem; color: var(--w5207-primary); }
.w5207-stat span { color: var(--w5207-text-muted); font-size: 1.2rem; }

/* RTP dense table */
.w5207-rtp-list { display: grid; gap: 0.5rem; }
.w5207-rtp-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--w5207-bg-3); border: 1px solid var(--w5207-line);
  border-radius: 8px; padding: 0.9rem 1.1rem; font-size: 1.3rem;
}
.w5207-rtp-row span:first-child { color: var(--w5207-text); }
.w5207-rtp-row span:last-child { color: var(--w5207-gold); font-weight: 800; }

/* FAQ */
.w5207-faq-item {
  background: var(--w5207-bg-3); border: 1px solid var(--w5207-line);
  border-radius: 12px; padding: 1.2rem 1.4rem; margin-bottom: 0.8rem;
}
.w5207-faq-item h3 { color: var(--w5207-accent); font-size: 1.45rem; margin-bottom: 0.4em; }
.w5207-faq-item p { margin: 0; color: var(--w5207-text-soft); font-size: 1.3rem; }

/* Reveal animation */
.w5207-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.w5207-reveal.w5207-revealed { opacity: 1; transform: none; }

/* ============================================================
 * FOOTER
 * ============================================================ */
.w5207-footer {
  background: var(--w5207-bg-2); border-top: 1px solid var(--w5207-line);
  padding: 2.6rem 0 1.5rem; margin-top: 2rem;
}
.w5207-footer p { color: var(--w5207-text-muted); font-size: 1.28rem; line-height: 1.6; }
.w5207-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; margin: 1.2rem 0;
}
.w5207-footer-links a {
  color: var(--w5207-text-soft); font-size: 1.2rem;
  background: var(--w5207-bg-3); padding: 0.6rem 1rem; border-radius: 8px;
  border: 1px solid var(--w5207-line);
}
.w5207-footer-links a:hover { color: var(--w5207-primary); border-color: var(--w5207-primary); }
.w5207-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.2rem 0; }
.w5207-footer-promos button, .w5207-footer-promos a {
  background: linear-gradient(135deg, var(--w5207-primary), var(--w5207-secondary));
  color: #fff; padding: 0.9rem 1.4rem; border-radius: 999px; font-weight: 800;
  font-size: 1.2rem; border: none; cursor: pointer;
}
.w5207-footer-copy { color: var(--w5207-text-muted); font-size: 1.15rem; text-align: center; margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--w5207-line); }

/* ============================================================
 * MOBILE BOTTOM NAV
 * ============================================================ */
.w5207-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(20,20,20,0.98), rgba(8,8,8,0.99));
  border-top: 1px solid var(--w5207-line);
  display: flex; justify-content: space-around; align-items: stretch;
  height: var(--w5207-bottomnav-h);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.6);
}
.w5207-nav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  background: none; border: none; color: var(--w5207-text-muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; font-size: 1.05rem; font-family: inherit; cursor: pointer;
  padding: 0.4rem 0.2rem; position: relative; transition: color 0.2s ease, transform 0.2s ease;
}
.w5207-nav-btn i, .w5207-nav-btn .material-icons-outlined {
  font-size: 2.4rem; transition: transform 0.2s ease;
}
.w5207-nav-btn:active { transform: scale(0.92); }
.w5207-nav-btn:hover { color: var(--w5207-accent); }
.w5207-nav-btn.w5207-active { color: var(--w5207-primary); }
.w5207-nav-btn.w5207-active::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 32px; height: 3px; border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--w5207-primary), var(--w5207-secondary));
}
.w5207-nav-btn.w5207-nav-promo {
  color: #fff;
}
.w5207-nav-btn.w5207-nav-promo i {
  background: linear-gradient(135deg, var(--w5207-primary), var(--w5207-secondary));
  width: 3.6rem; height: 3.6rem; border-radius: 50%; padding: 0.6rem;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.5);
  margin-top: -1.4rem;
}

/* ============================================================
 * DESKTOP - hide bottom nav and lock width
 * ============================================================ */
@media (min-width: 769px) {
  .w5207-bottom-nav { display: none; }
  body { background: #050505; }
  .w5207-header-inner, .w5207-container, .w5207-wrapper { max-width: 430px; }
  main { padding-bottom: 2rem; }
}

/* Inline SEO link styles inside text */
.w5207-inline-link {
  color: var(--w5207-accent); font-weight: 700; border-bottom: 1px dashed var(--w5207-warm);
}
.w5207-inline-link:hover { color: var(--w5207-primary); }
