/* =========================================================
 * bmwcasino.homes - theme stylesheet
 * Every custom selector carries the ge3a- prefix so the
 * stylesheet can be safely combined with vendor CSS without
 * collisions. Comments are written in English.
 * Palette:
 *   --ge3a-bg       #0A0A0A  (deep base)
 *   --ge3a-text     #F0F8FF  (alice blue text)
 *   --ge3a-accent   #AD1457  (brand magenta)
 *   --ge3a-violet   #C9C9FF  (soft lavender)
 *   --ge3a-silver   #CED4DA  (neutral silver)
 * =======================================================*/

:root {
  --ge3a-bg: #0A0A0A;
  --ge3a-bg-soft: #141418;
  --ge3a-bg-card: #1b1b22;
  --ge3a-text: #F0F8FF;
  --ge3a-text-dim: #b9c2cf;
  --ge3a-accent: #AD1457;
  --ge3a-accent-2: #d81b60;
  --ge3a-violet: #C9C9FF;
  --ge3a-silver: #CED4DA;
  --ge3a-gold: #f4c542;
  --ge3a-green: #2fbf71;
  --ge3a-radius: 14px;
  --ge3a-shadow: 0 8px 22px rgba(0, 0, 0, .45);
  --ge3a-header-h: 58px;
}

/* Base reset ------------------------------------------------ */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #21142a 0%, var(--ge3a-bg) 60%);
  color: var(--ge3a-text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--ge3a-violet); text-decoration: none; }
a:hover { color: var(--ge3a-accent-2); }
h1, h2, h3, h4 { margin: 0 0 10px; line-height: 1.25; font-weight: 700; }

/* Root font scale for rem-based mobile design */
html { font-size: 62.5%; }

/* Layout primitives ---------------------------------------- */
.ge3a-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 14px;
}
.ge3a-container {
  padding: 18px 14px 24px;
}
.ge3a-section {
  padding: 22px 0;
  border-top: 1px solid rgba(201, 201, 255, .08);
}
.ge3a-section-title {
  font-size: 2.0rem;
  color: var(--ge3a-text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.ge3a-section-title i { color: var(--ge3a-accent-2); }
.ge3a-section-sub {
  font-size: 1.35rem;
  color: var(--ge3a-text-dim);
  margin-bottom: 14px;
}
.ge3a-eyebrow {
  display: inline-block;
  font-size: 1.15rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ge3a-violet);
  margin-bottom: 6px;
}

/* Header --------------------------------------------------- */
.ge3a-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ge3a-header-h);
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 201, 255, .12);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.ge3a-header-inner {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ge3a-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ge3a-text);
}
.ge3a-logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.ge3a-logo-text {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: .02em;
  background: linear-gradient(90deg, var(--ge3a-violet), var(--ge3a-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ge3a-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ge3a-hamburger {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(201, 201, 255, .2);
  background: transparent;
  color: var(--ge3a-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

/* Buttons -------------------------------------------------- */
.ge3a-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  min-height: 38px;
}
.ge3a-btn:active { transform: scale(.96); }
.ge3a-btn-primary {
  background: linear-gradient(135deg, var(--ge3a-accent), var(--ge3a-accent-2));
  color: #fff;
  box-shadow: 0 6px 16px rgba(173, 20, 87, .4);
}
.ge3a-btn-secondary {
  background: transparent;
  color: var(--ge3a-text);
  border: 1.5px solid var(--ge3a-violet);
}
.ge3a-btn-ghost {
  background: rgba(201, 201, 255, .08);
  color: var(--ge3a-text);
}
.ge3a-btn-block {
  display: flex;
  width: 100%;
  padding: 13px;
  font-size: 1.5rem;
}
.ge3a-btn-sm { padding: 7px 12px; font-size: 1.25rem; }
.ge3a-link-bold {
  color: var(--ge3a-accent-2);
  font-weight: 700;
  text-decoration: underline;
}

/* Mobile drawer menu -------------------------------------- */
.ge3a-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
  z-index: 9998;
}
.ge3a-overlay-show { opacity: 1; visibility: visible; }
.ge3a-mobile-menu {
  position: fixed;
  top: 0; right: -86%;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: var(--ge3a-bg-soft);
  border-left: 1px solid rgba(201, 201, 255, .14);
  z-index: 9999;
  padding: 20px 18px;
  transition: right .28s ease;
  overflow-y: auto;
}
.ge3a-menu-open { right: 0; }
.ge3a-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ge3a-menu-title { font-size: 1.7rem; font-weight: 700; }
.ge3a-menu-close {
  background: transparent;
  border: none;
  color: var(--ge3a-text);
  font-size: 20px;
  cursor: pointer;
}
.ge3a-menu-list { list-style: none; padding: 0; margin: 0; }
.ge3a-menu-list li { margin-bottom: 6px; }
.ge3a-menu-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 10px;
  color: var(--ge3a-text);
  font-size: 1.45rem;
  background: rgba(201, 201, 255, .04);
  border: 1px solid rgba(201, 201, 255, .08);
}
.ge3a-menu-list a:hover { background: rgba(173, 20, 87, .18); }
.ge3a-menu-list a i { color: var(--ge3a-violet); width: 22px; text-align: center; }
.ge3a-menu-cta {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Body offset for fixed header ---------------------------- */
.ge3a-page { padding-top: var(--ge3a-header-h); }
@media (max-width: 768px) {
  main.ge3a-main { padding-bottom: 90px; }
}

/* Carousel ------------------------------------------------- */
.ge3a-carousel {
  position: relative;
  border-radius: var(--ge3a-radius);
  overflow: hidden;
  margin: 14px 0 4px;
  box-shadow: var(--ge3a-shadow);
}
.ge3a-carousel-track {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
}
.ge3a-slide {
  min-width: 100%;
  position: relative;
}
.ge3a-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.ge3a-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.05) 30%, rgba(10,10,10,.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.ge3a-slide-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.ge3a-slide-text {
  font-size: 1.25rem;
  color: var(--ge3a-silver);
  margin-bottom: 8px;
}
.ge3a-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.ge3a-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(240, 248, 255, .35);
  cursor: pointer;
  border: none;
  padding: 0;
}
.ge3a-dot-active { background: var(--ge3a-accent-2); width: 18px; border-radius: 5px; }

/* Hero CTA strip ------------------------------------------ */
.ge3a-hero-cta {
  display: flex;
  gap: 8px;
  margin: 12px 0 4px;
}
.ge3a-hero-cta .ge3a-btn { flex: 1; }

/* Trust badges row ---------------------------------------- */
.ge3a-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 0 4px;
}
.ge3a-trust-item {
  background: var(--ge3a-bg-card);
  border: 1px solid rgba(201, 201, 255, .1);
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
}
.ge3a-trust-item i { color: var(--ge3a-gold); font-size: 18px; }
.ge3a-trust-num { display: block; font-size: 1.5rem; font-weight: 800; margin-top: 2px; }
.ge3a-trust-label { display: block; font-size: 1rem; color: var(--ge3a-text-dim); }

/* Game grid ------------------------------------------------ */
.ge3a-cat-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 8px;
  scrollbar-width: none;
}
.ge3a-cat-tabs::-webkit-scrollbar { display: none; }
.ge3a-cat-tabs a {
  flex: 0 0 auto;
  padding: 7px 12px;
  font-size: 1.2rem;
  border-radius: 999px;
  background: rgba(201, 201, 255, .06);
  color: var(--ge3a-text);
  border: 1px solid rgba(201, 201, 255, .12);
}
.ge3a-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ge3a-card {
  background: var(--ge3a-bg-card);
  border: 1px solid rgba(201, 201, 255, .08);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  display: block;
  text-align: center;
  padding-bottom: 8px;
}
.ge3a-card:hover, .ge3a-card:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(173, 20, 87, .25);
  border-color: var(--ge3a-accent-2);
}
.ge3a-card-img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  background: #000;
}
.ge3a-card-name {
  font-size: 1.1rem;
  color: var(--ge3a-text);
  padding: 4px 4px 0;
  line-height: 1.2;
  min-height: 28px;
  overflow: hidden;
}
.ge3a-card-tag {
  display: inline-block;
  font-size: .95rem;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(173, 20, 87, .25);
  color: var(--ge3a-violet);
  margin-top: 2px;
}
.ge3a-grid-4 { grid-template-columns: repeat(4, 1fr); }
.ge3a-grid-4 .ge3a-card-img { height: 70px; }
.ge3a-grid-4 .ge3a-card-name { font-size: 1rem; }

/* Featured / promo blocks --------------------------------- */
.ge3a-feature {
  background: linear-gradient(135deg, rgba(173,20,87,.18), rgba(201,201,255,.06));
  border: 1px solid rgba(173, 20, 87, .25);
  border-radius: var(--ge3a-radius);
  padding: 16px;
  margin: 12px 0;
}
.ge3a-feature h3 { font-size: 1.7rem; color: var(--ge3a-text); }
.ge3a-feature p { margin: 6px 0 12px; font-size: 1.3rem; color: var(--ge3a-text-dim); }

/* Two-column icon list ------------------------------------ */
.ge3a-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.ge3a-icon-list li {
  display: flex;
  gap: 10px;
  background: var(--ge3a-bg-card);
  border: 1px solid rgba(201, 201, 255, .08);
  border-radius: 10px;
  padding: 12px;
}
.ge3a-icon-list i {
  color: var(--ge3a-accent-2);
  font-size: 20px;
  flex-shrink: 0;
}
.ge3a-icon-list strong { color: var(--ge3a-text); font-size: 1.35rem; }
.ge3a-icon-list span { display: block; font-size: 1.2rem; color: var(--ge3a-text-dim); }

/* RTP table ----------------------------------------------- */
.ge3a-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.25rem;
  margin-top: 8px;
}
.ge3a-rtp-table th, .ge3a-rtp-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(201, 201, 255, .1);
}
.ge3a-rtp-table th { color: var(--ge3a-violet); font-weight: 700; }
.ge3a-rtp-table td.ge3a-rtp-high { color: var(--ge3a-green); font-weight: 700; }

/* Testimonials -------------------------------------------- */
.ge3a-testi {
  background: var(--ge3a-bg-card);
  border-left: 3px solid var(--ge3a-accent-2);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.ge3a-testi-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.ge3a-testi-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ge3a-accent), var(--ge3a-violet));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 1.3rem;
}
.ge3a-testi-name { font-weight: 700; font-size: 1.3rem; }
.ge3a-testi-stars { color: var(--ge3a-gold); font-size: 1.1rem; margin-left: auto; }
.ge3a-testi p { margin: 0; font-size: 1.2rem; color: var(--ge3a-text-dim); }

/* Winners ticker ------------------------------------------ */
.ge3a-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--ge3a-bg-card);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.ge3a-winner b { color: var(--ge3a-gold); }

/* Payment chips ------------------------------------------- */
.ge3a-pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.ge3a-pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--ge3a-bg-card);
  border: 1px solid rgba(201, 201, 255, .14);
  border-radius: 999px;
  font-size: 1.15rem;
}
.ge3a-pay-chip i { color: var(--ge3a-green); }

/* Steps ---------------------------------------------------- */
.ge3a-steps { counter-reset: step; list-style: none; padding: 0; margin: 8px 0; }
.ge3a-steps li {
  position: relative;
  padding: 10px 10px 10px 44px;
  margin-bottom: 8px;
  background: var(--ge3a-bg-card);
  border-radius: 10px;
  border: 1px solid rgba(201, 201, 255, .08);
}
.ge3a-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 10px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ge3a-accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
}
.ge3a-steps strong { display: block; font-size: 1.35rem; color: var(--ge3a-text); }
.ge3a-steps span { font-size: 1.2rem; color: var(--ge3a-text-dim); }

/* FAQ ------------------------------------------------------ */
.ge3a-faq-item {
  background: var(--ge3a-bg-card);
  border: 1px solid rgba(201, 201, 255, .08);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
}
.ge3a-faq-q { font-size: 1.35rem; font-weight: 700; color: var(--ge3a-violet); margin-bottom: 4px; }
.ge3a-faq-a { font-size: 1.2rem; color: var(--ge3a-text-dim); margin: 0; }

/* SEO prose ------------------------------------------------ */
.ge3a-prose p { font-size: 1.25rem; color: var(--ge3a-text-dim); margin: 0 0 10px; }
.ge3a-prose h3 { font-size: 1.55rem; color: var(--ge3a-text); margin-top: 14px; }

/* Bottom nav ---------------------------------------------- */
.ge3a-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: rgba(10, 10, 10, .97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 201, 255, .14);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}
.ge3a-bottom-nav-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ge3a-silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 60px;
  min-height: 60px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  transition: color .2s ease, transform .15s ease;
}
.ge3a-bottom-nav-btn i { font-size: 22px; }
.ge3a-bottom-nav-btn:active { transform: scale(.9); }
.ge3a-bottom-nav-btn:hover { color: var(--ge3a-violet); }
.ge3a-nav-active { color: var(--ge3a-accent-2) !important; }
.ge3a-nav-active i { color: var(--ge3a-accent-2); }
.ge3a-nav-badge {
  position: relative;
}
.ge3a-nav-badge::after {
  content: "5";
  position: absolute;
  top: 6px; right: 18px;
  background: var(--ge3a-accent);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 50%;
  width: 15px; height: 15px;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 769px) {
  .ge3a-bottom-nav { display: none; }
}

/* Footer -------------------------------------------------- */
.ge3a-footer {
  background: #060608;
  border-top: 1px solid rgba(201, 201, 255, .1);
  padding: 22px 14px 30px;
  margin-top: 14px;
}
.ge3a-footer-brand { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.ge3a-footer p { font-size: 1.2rem; color: var(--ge3a-text-dim); margin: 0 0 12px; }
.ge3a-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.ge3a-footer-links a {
  font-size: 1.15rem;
  padding: 6px 10px;
  background: var(--ge3a-bg-card);
  border: 1px solid rgba(201, 201, 255, .1);
  border-radius: 8px;
}
.ge3a-footer-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 12px 0;
}
.ge3a-copyright {
  font-size: 1.1rem;
  color: var(--ge3a-text-dim);
  text-align: center;
  margin-top: 10px;
}
.ge3a-18plus {
  display: inline-block;
  border: 1px solid var(--ge3a-silver);
  border-radius: 4px;
  padding: 1px 5px;
  font-weight: 700;
  margin-right: 4px;
}

/* Utility -------------------------------------------------- */
.ge3a-text-center { text-align: center; }
.ge3a-mt-8 { margin-top: 8px; }
.ge3a-mt-16 { margin-top: 16px; }
.ge3a-divider {
  height: 1px;
  background: rgba(201, 201, 255, .1);
  margin: 14px 0;
  border: none;
}
