/* ============================================
   Big Bunny Casino - Core Base Stylesheet
   Mobile-first HTML5 gaming layout (max 430px)
   Class prefix: gc1e-
   ============================================ */

:root {
  --bb-gold: #FFBF00;
  --bb-coral: #F08080;
  --bb-pink: #FFB6C1;
  --bb-light: #DCDCDC;
  --bb-dark: #141414;
  --bb-dark-2: #1d1d1d;
  --bb-dark-3: #262626;
  --bb-line: #2f2f2f;
  --bb-text: #f5f5f5;
  --bb-muted: #b9b9b9;
  --bb-grad: linear-gradient(135deg, #FFBF00 0%, #F08080 55%, #FFB6C1 100%);
  --bb-shadow: 0 6px 18px rgba(0,0,0,.45);
  --bb-radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  background: var(--bb-dark);
  color: var(--bb-text);
  line-height: 1.5;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--bb-gold); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ===== Header ===== */
.gc1e-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20,20,20,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bb-line);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.gc1e-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--bb-gold);
  letter-spacing: 0.3px;
}
.gc1e-logo .gc1e-bun {
  width: 32px; height: 32px;
  background: var(--bb-grad);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #141414; font-size: 1.6rem;
  box-shadow: var(--bb-shadow);
}
.gc1e-header-actions { display: flex; gap: 0.6rem; align-items: center; }
.gc1e-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  font-size: 1.35rem;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease;
}
.gc1e-btn:active { transform: scale(0.94); }
.gc1e-btn-login {
  background: transparent;
  color: var(--bb-light);
  border: 1.5px solid var(--bb-coral);
}
.gc1e-btn-register {
  background: var(--bb-grad);
  color: #141414;
  box-shadow: 0 4px 12px rgba(255,191,0,.35);
}

.gc1e-menu-toggle {
  background: transparent;
  color: var(--bb-gold);
  font-size: 2rem;
  width: 36px; height: 36px;
  display: grid; place-items: center;
}

/* ===== Desktop nav (hidden on mobile) ===== */
.gc1e-desktop-nav { display: none; }

/* ===== Mobile menu ===== */
.gc1e-mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 80%; max-width: 320px;
  height: 100vh;
  background: var(--bb-dark-2);
  z-index: 9999;
  padding: 2rem 1.5rem;
  transform: translateX(-105%);
  transition: transform .28s ease;
  overflow-y: auto;
  border-right: 1px solid var(--bb-line);
}
.gc1e-mobile-menu.open { transform: translateX(0); }
.gc1e-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.gc1e-menu-overlay.open { opacity: 1; pointer-events: auto; }
.gc1e-menu-title {
  font-size: 1.7rem; font-weight: 800;
  color: var(--bb-gold);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bb-line);
  padding-bottom: 1rem;
}
.gc1e-mobile-menu a {
  display: block;
  padding: 1.1rem 0.5rem;
  color: var(--bb-light);
  font-size: 1.4rem;
  border-bottom: 1px dashed #2a2a2a;
}
.gc1e-mobile-menu a:hover, .gc1e-mobile-menu a:focus { color: var(--bb-gold); }
.gc1e-menu-cta {
  margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.gc1e-menu-cta .gc1e-btn { text-align: center; }

/* ===== Hero ===== */
.gc1e-hero {
  position: relative;
  padding: 2rem 1.2rem 2.5rem;
  background: radial-gradient(circle at 30% 10%, rgba(255,191,0,.15), transparent 60%),
              linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
  overflow: hidden;
}
.gc1e-hero-tag {
  display: inline-block;
  background: rgba(255,191,0,.12);
  color: var(--bb-gold);
  font-size: 1.2rem; font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255,191,0,.35);
}
.gc1e-hero h1 {
  font-size: 2.6rem; line-height: 1.2;
  font-weight: 900;
  margin-bottom: 0.8rem;
}
.gc1e-hero h1 span { color: var(--bb-gold); }
.gc1e-hero p {
  color: var(--bb-muted);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  max-width: 36ch;
}
.gc1e-hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.gc1e-hero-cta .gc1e-btn { flex: 1; min-width: 130px; text-align: center; }
.gc1e-hero-stats {
  display: flex; gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bb-line);
  flex-wrap: wrap;
}
.gc1e-stat { flex: 1; min-width: 90px; }
.gc1e-stat strong {
  display: block;
  font-size: 1.9rem;
  color: var(--bb-gold);
  font-weight: 800;
}
.gc1e-stat span { font-size: 1.15rem; color: var(--bb-muted); }

/* ===== Carousel ===== */
.gc1e-carousel {
  position: relative;
  margin: 1.5rem 0;
  overflow: hidden;
  border-radius: var(--bb-radius);
}
.gc1e-carousel-track {
  display: flex;
  transition: transform .45s ease;
}
.gc1e-slide {
  flex: 0 0 100%;
  position: relative;
}
.gc1e-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.gc1e-slide-cap {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(20,20,20,.85);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  border-left: 3px solid var(--bb-gold);
}
.gc1e-carousel-dots {
  display: flex; justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 0;
}
.gc1e-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #444;
  transition: background .2s, width .2s;
}
.gc1e-dot.active { background: var(--bb-gold); width: 22px; border-radius: 4px; }

/* ===== Section ===== */
.gc1e-section { padding: 2rem 1.2rem; }
.gc1e-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.gc1e-section-head h2 {
  font-size: 1.85rem; font-weight: 800;
  display: flex; align-items: center; gap: 0.6rem;
}
.gc1e-section-head h2 i { color: var(--bb-gold); }
.gc1e-section-head a { font-size: 1.25rem; color: var(--bb-coral); font-weight: 600; }

/* ===== Filter chips ===== */
.gc1e-filters {
  display: flex; gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  scrollbar-width: none;
}
.gc1e-filters::-webkit-scrollbar { display: none; }
.gc1e-chip {
  padding: 0.55rem 1.2rem;
  border-radius: 20px;
  background: var(--bb-dark-3);
  color: var(--bb-muted);
  font-size: 1.25rem;
  white-space: nowrap;
  border: 1px solid var(--bb-line);
  transition: all .2s;
}
.gc1e-chip.active, .gc1e-chip:hover {
  background: var(--bb-grad);
  color: #141414;
  border-color: transparent;
  font-weight: 700;
}

/* ===== Game grid ===== */
.gc1e-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.gc1e-card {
  background: var(--bb-dark-2);
  border-radius: var(--bb-radius);
  overflow: hidden;
  border: 1px solid var(--bb-line);
  position: relative;
  transition: transform .15s, box-shadow .15s;
}
.gc1e-card:active { transform: scale(0.96); }
.gc1e-card-img {
  position: relative;
  aspect-ratio: 1/1;
  background: #000;
}
.gc1e-card-img img { width: 100%; height: 100%; object-fit: cover; }
.gc1e-card-badge {
  position: absolute;
  top: 6px; left: 6px;
  background: var(--bb-coral);
  color: #141414;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
}
.gc1e-card-play {
  position: absolute;
  inset: 0;
  background: rgba(20,20,20,.55);
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity .2s;
}
.gc1e-card:hover .gc1e-card-play { opacity: 1; }
.gc1e-card-play span {
  background: var(--bb-grad);
  color: #141414;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.6rem;
}
.gc1e-card-name {
  padding: 0.6rem 0.5rem;
  font-size: 1.15rem;
  text-align: center;
  color: var(--bb-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Featured (big) ===== */
.gc1e-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.gc1e-feature-card {
  display: flex;
  gap: 1rem;
  background: var(--bb-dark-2);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  padding: 0.8rem;
  align-items: center;
}
.gc1e-feature-card img {
  width: 90px; height: 90px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.gc1e-feature-info h3 { font-size: 1.45rem; color: var(--bb-gold); margin-bottom: 0.3rem; }
.gc1e-feature-info p { font-size: 1.2rem; color: var(--bb-muted); margin-bottom: 0.5rem; }
.gc1e-feature-info .gc1e-btn { padding: 0.45rem 1rem; font-size: 1.15rem; }

/* ===== Promo banner ===== */
.gc1e-promo {
  background: var(--bb-grad);
  border-radius: var(--bb-radius);
  padding: 1.5rem;
  color: #141414;
  text-align: center;
  margin: 1.5rem 0;
}
.gc1e-promo h3 { font-size: 1.7rem; font-weight: 900; margin-bottom: 0.4rem; }
.gc1e-promo p { font-size: 1.25rem; margin-bottom: 1rem; font-weight: 600; }
.gc1e-promo-btn {
  background: #141414;
  color: var(--bb-gold);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.3rem;
  display: inline-block;
}

/* ===== SEO content ===== */
.gc1e-seo { padding: 2rem 1.2rem; color: var(--bb-muted); font-size: 1.35rem; }
.gc1e-seo h2 { color: var(--bb-text); font-size: 1.7rem; margin: 1.5rem 0 0.8rem; font-weight: 800; }
.gc1e-seo h3 { color: var(--bb-gold); font-size: 1.45rem; margin: 1.2rem 0 0.6rem; }
.gc1e-seo p { margin-bottom: 0.9rem; line-height: 1.65; }
.gc1e-seo ul { margin: 0.5rem 0 1rem 1.5rem; }
.gc1e-seo li { margin-bottom: 0.5rem; line-height: 1.6; }
.gc1e-seo strong { color: var(--bb-coral); }

/* ===== FAQ ===== */
.gc1e-faq { padding: 1.5rem 1.2rem 2rem; }
.gc1e-faq-item {
  background: var(--bb-dark-2);
  border: 1px solid var(--bb-line);
  border-radius: 10px;
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.gc1e-faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1rem;
  background: transparent;
  color: var(--bb-light);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.gc1e-faq-q i { color: var(--bb-gold); transition: transform .2s; }
.gc1e-faq-q.open i { transform: rotate(45deg); }
.gc1e-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 1rem;
  color: var(--bb-muted);
  font-size: 1.25rem;
}
.gc1e-faq-a.open { max-height: 320px; padding: 0 1rem 1.1rem; }

/* ===== Footer ===== */
.gc1e-footer {
  background: var(--bb-dark-2);
  border-top: 1px solid var(--bb-line);
  padding: 2rem 1.2rem 2.5rem;
  color: var(--bb-muted);
  font-size: 1.25rem;
}
.gc1e-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.gc1e-footer-col h4 {
  color: var(--bb-gold);
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  font-weight: 800;
}
.gc1e-footer-col a {
  display: block;
  color: var(--bb-muted);
  padding: 0.35rem 0;
  font-size: 1.2rem;
}
.gc1e-footer-col a:hover { color: var(--bb-coral); }
.gc1e-footer-pay {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1rem 0;
}
.gc1e-footer-pay span {
  background: var(--bb-dark-3);
  border: 1px solid var(--bb-line);
  color: var(--bb-light);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
}
.gc1e-footer-bottom {
  border-top: 1px solid var(--bb-line);
  padding-top: 1.2rem;
  text-align: center;
  font-size: 1.15rem;
  color: #888;
}
.gc1e-footer-bottom p { margin-bottom: 0.4rem; }

/* ===== Bottom nav ===== */
.gc1e-bottom-nav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 430px;
  background: rgba(20,20,20,.98);
  border-top: 1px solid var(--bb-line);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  height: 62px;
  padding: 0 0.3rem;
  backdrop-filter: blur(8px);
}
.gc1e-nav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  color: var(--bb-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color .15s, transform .15s;
  position: relative;
}
.gc1e-nav-btn i, .gc1e-nav-btn .material-icons-outlined,
.gc1e-nav-btn ion-icon { font-size: 22px; }
.gc1e-nav-btn ion-icon { font-size: 24px; }
.gc1e-nav-btn.active { color: var(--bb-gold); }
.gc1e-nav-btn.active::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 3px;
  background: var(--bb-grad);
  border-radius: 0 0 4px 4px;
}
.gc1e-nav-btn:active { transform: scale(0.9); }
.gc1e-nav-btn-promo {
  color: var(--bb-coral);
}
.gc1e-nav-btn-promo i { color: var(--bb-gold); }

/* ===== Utility ===== */
.gc1e-hide { display: none !important; }
.gc1e-text-gold { color: var(--bb-gold); }
.gc1e-container { max-width: 430px; margin: 0 auto; }

/* ===== Desktop / tablet layout ===== */
@media (min-width: 768px) {
  body { max-width: 100%; }
  .gc1e-bottom-nav { display: none; }
  .gc1e-menu-toggle { display: none; }
  .gc1e-desktop-nav {
    display: flex;
    gap: 1.4rem;
    align-items: center;
  }
  .gc1e-desktop-nav a {
    color: var(--bb-light);
    font-size: 1.3rem;
    font-weight: 600;
  }
  .gc1e-desktop-nav a:hover { color: var(--bb-gold); }
  main { padding-bottom: 0 !important; }
  .gc1e-container { max-width: 1200px; }
  .gc1e-game-grid { grid-template-columns: repeat(6, 1fr); }
  .gc1e-feature { grid-template-columns: repeat(3, 1fr); }
  .gc1e-footer-cols { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}
