/* 2jl log in theme.css - all custom classes use the "v75b-" prefix. */
:root {
  --v75b-bg: #0F0F23;
  --v75b-bg-soft: #1a1a36;
  --v75b-slate: #36454F;
  --v75b-steel: #708090;
  --v75b-deep: #34495E;
  --v75b-accent: #FFB3FF;
  --v75b-accent-dark: #d98ad9;
  --v75b-text: #f4f4fb;
  --v75b-text-mute: #c2c8d8;
  --v75b-line: rgba(255, 179, 255, 0.18);
  --v75b-radius: 12px;
  --v75b-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  --v75b-header-h: 56px;
  --v75b-nav-h: 62px;
}
* { box-sizing: border-box; }
html {
  font-size: 62.5%; /* 1rem = 10px baseline */
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, #20204a 0%, var(--v75b-bg) 55%) fixed,
              var(--v75b-bg);
  color: var(--v75b-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
}

a { color: var(--v75b-accent); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }

h1, h2, h3 { line-height: 1.4rem; font-weight: 700; color: #fff; margin: 0 0 .6rem; }
h1 { font-size: 2.2rem; line-height: 2.6rem; }
h2 { font-size: 1.8rem; line-height: 2.2rem; }
h3 { font-size: 1.5rem; line-height: 1.9rem; }
p { margin: 0 0 1rem; }
/* ---------- Layout ---------- */
.v75b-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.v75b-wrapper { padding-top: calc(var(--v75b-header-h) + .8rem); padding-bottom: 2rem; }
.v75b-section { margin: 2rem 0; }
.v75b-section-head {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}
.v75b-section-head h2 { margin: 0; }
.v75b-tag {
  display: inline-block; background: rgba(255, 179, 255, 0.14); color: var(--v75b-accent);
  border: 1px solid var(--v75b-line); border-radius: 999px; padding: .2rem .9rem;
  font-size: 1.1rem; letter-spacing: .04em;
}

/* ---------- Header ---------- */
.v75b-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--v75b-header-h);
  background: linear-gradient(180deg, rgba(15,15,35,0.98), rgba(15,15,35,0.86));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--v75b-line);
  z-index: 1000;
}
.v75b-header-inner {
  height: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.v75b-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 1;
  min-width: 0;
}
.v75b-brand img { width: 28px; height: 28px; border-radius: 6px; }
.v75b-brand-name {
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v75b-brand-name span { color: var(--v75b-accent); }
.v75b-menu-btn {
  background: transparent;
  border: 1px solid var(--v75b-line);
  color: var(--v75b-text);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.v75b-auth { display: flex; gap: .5rem; }
.v75b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: none;
  border-radius: 999px;
  padding: .6rem 1.1rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 34px;
  transition: transform .15s ease, filter .15s ease;
}
.v75b-btn:active { transform: scale(0.96); }
.v75b-btn-primary { background: linear-gradient(135deg, var(--v75b-accent), var(--v75b-accent-dark)); color: #2a0033; }
.v75b-btn-ghost { background: rgba(255,255,255,0.06); color: var(--v75b-text); border: 1px solid var(--v75b-line); }
.v75b-btn-block { width: 100%; padding: .9rem; font-size: 1.3rem; }

/* ---------- Mobile menu ---------- */
.v75b-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  background: var(--v75b-bg-soft);
  border-top: 1px solid var(--v75b-line);
}
.v75b-mobile-menu.v75b-menu-open { max-height: 460px; }
.v75b-menu-list { list-style: none; margin: 0; padding: .6rem 1rem; }
.v75b-menu-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.v75b-menu-list li:last-child { border-bottom: none; }
.v75b-menu-list a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem .2rem;
  color: var(--v75b-text);
  font-size: 1.3rem;
}
.v75b-menu-list a i { color: var(--v75b-accent); width: 20px; text-align: center; }

/* ---------- Carousel ---------- */
.v75b-carousel {
  position: relative;
  border-radius: var(--v75b-radius);
  overflow: hidden;
  box-shadow: var(--v75b-shadow);
  margin-bottom: 1.2rem;
}
.v75b-carousel-track {
  display: flex;
  transition: transform .5s ease;
  width: 100%;
}
.v75b-carousel-slide {
  flex: 0 0 100%;
  position: relative;
  cursor: pointer;
}
.v75b-carousel-slide img { width: 100%; height: 180px; object-fit: cover; }
.v75b-carousel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .8rem 1rem;
  background: linear-gradient(0deg, rgba(15,15,35,0.92), rgba(15,15,35,0));
  font-weight: 700;
  color: #fff;
}
.v75b-carousel-dots {
  position: absolute;
  bottom: 8px; right: 10px;
  display: flex; gap: 5px;
}
.v75b-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.v75b-carousel-dot.v75b-dot-active { background: var(--v75b-accent); }

/* ---------- Hero CTA ---------- */
.v75b-hero-cta {
  display: flex; flex-wrap: wrap; gap: .6rem; margin: .6rem 0 1rem;
}

/* ---------- Game grid ---------- */
.v75b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
}
.v75b-card {
  background: var(--v75b-bg-soft);
  border: 1px solid var(--v75b-line);
  border-radius: var(--v75b-radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease;
  display: block;
}
.v75b-card:hover { border-color: var(--v75b-accent); }
.v75b-card:active { transform: scale(0.97); }
.v75b-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0a0a18;
}
.v75b-card-name {
  padding: .4rem .5rem;
  font-size: 1.05rem;
  color: var(--v75b-text);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v75b-cat-title {
  display: flex; align-items: center; gap: .5rem;
  margin: 1.4rem 0 .8rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.v75b-cat-title i { color: var(--v75b-accent); }
.v75b-cat-title small { color: var(--v75b-text-mute); font-weight: 400; font-size: 1.05rem; margin-left: auto; }

/* ---------- Generic content blocks ---------- */
.v75b-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--v75b-line);
  border-radius: var(--v75b-radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}
.v75b-panel h3 { color: var(--v75b-accent); }
.v75b-feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
  margin-top: .6rem;
}
.v75b-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: .7rem .8rem;
}
.v75b-feature i { color: var(--v75b-accent); font-size: 1.6rem; }
.v75b-feature b { display: block; color: #fff; margin-top: .2rem; font-size: 1.15rem; }
.v75b-feature span { color: var(--v75b-text-mute); font-size: 1.05rem; }

/* ---------- RTP table ---------- */
.v75b-rtp-list { list-style: none; padding: 0; margin: 0; }
.v75b-rtp-list li {
  display: flex; justify-content: space-between;
  padding: .55rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-size: 1.15rem;
}
.v75b-rtp-list li:last-child { border-bottom: none; }
.v75b-rtp-list b { color: var(--v75b-accent); }

/* ---------- Testimonials ---------- */
.v75b-testi {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--v75b-accent);
  padding: .8rem 1rem;
  border-radius: 8px;
  margin-bottom: .7rem;
}
.v75b-testi .v75b-stars { color: #ffce4d; letter-spacing: 2px; }
.v75b-testi cite { display: block; margin-top: .4rem; color: var(--v75b-text-mute); font-style: normal; font-size: 1.05rem; }

/* ---------- Payment chips ---------- */
.v75b-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.v75b-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--v75b-line);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: 1.1rem;
  display: inline-flex; align-items: center; gap: .4rem;
}
.v75b-chip i { color: var(--v75b-accent); }

/* ---------- Winners ---------- */
.v75b-winners { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.v75b-winner {
  background: rgba(255,179,255,0.08);
  border: 1px solid var(--v75b-line);
  border-radius: 8px;
  padding: .55rem .7rem;
  font-size: 1.1rem;
}
.v75b-winner b { color: var(--v75b-accent); }

/* ---------- App CTA ---------- */
.v75b-app-cta {
  background: linear-gradient(135deg, #2a1a3a, #0F0F23);
  border: 1px solid var(--v75b-line);
  border-radius: var(--v75b-radius);
  padding: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.v75b-app-cta .v75b-app-icon {
  font-size: 2.6rem; color: var(--v75b-accent);
}
.v75b-app-cta div { flex: 1; }
.v75b-app-cta h3 { margin: 0 0 .2rem; color: #fff; }
.v75b-app-cta p { margin: 0; color: var(--v75b-text-mute); font-size: 1.1rem; }

/* ---------- Inline promo link ---------- */
.v75b-link-text {
  color: var(--v75b-accent);
  font-weight: 800;
  cursor: pointer;
}
.v75b-link-text:hover { text-decoration: underline; color: #fff; }

/* ---------- Footer ---------- */
.v75b-footer {
  background: #08081a;
  border-top: 1px solid var(--v75b-line);
  padding: 1.6rem 1.2rem 2rem;
  margin-top: 2rem;
}
.v75b-footer .v75b-container { padding: 0; }
.v75b-footer p { color: var(--v75b-text-mute); font-size: 1.15rem; }
.v75b-footer-links {
  display: flex; flex-wrap: wrap; gap: .5rem .9rem;
  margin: .8rem 0;
}
.v75b-footer-links a {
  color: var(--v75b-text);
  font-size: 1.15rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.v75b-footer-promos {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: .6rem 0 1rem;
}
.v75b-copy { color: var(--v75b-steel); font-size: 1.05rem; border-top: 1px solid rgba(255,255,255,0.06); padding-top: .8rem; }

/* ---------- Mobile bottom nav ---------- */
.v75b-bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--v75b-nav-h);
  background: linear-gradient(180deg, rgba(20,20,46,0.98), rgba(10,10,28,0.98));
  border-top: 1px solid var(--v75b-line);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.4);
}
.v75b-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--v75b-text-mute);
  background: transparent;
  border: none;
  cursor: pointer;
  min-width: 60px;
  min-height: 60px;
  padding: 4px 2px;
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
}
.v75b-nav-item i, .v75b-nav-item .material-icons-outlined {
  font-size: 22px;
}
.v75b-nav-item span { font-size: 1.05rem; }
.v75b-nav-item:active { transform: scale(0.92); }
.v75b-nav-item.active { color: var(--v75b-accent); }
.v75b-nav-promo {
  color: var(--v75b-accent);
  font-weight: 700;
}
.v75b-nav-badge {
  position: absolute;
  transform: translate(8px, -8px);
  background: var(--v75b-accent);
  color: #2a0033;
  border-radius: 999px;
  font-size: .9rem;
  padding: 0 5px;
  font-weight: 800;
}
.v75b-nav-item { position: relative; }

/* ---------- Responsive ---------- */
@media (min-width: 769px) {
  .v75b-bottom-nav { display: none; }
  .v75b-container { max-width: 430px; }
  .v75b-header-inner { max-width: 430px; }
}

@media (max-width: 768px) {
  main.v75b-main { padding-bottom: calc(var(--v75b-nav-h) + 14px); }
}
