/* ============================================================
 * c54311.click - design-a6b1.css
 * Mobile-first casino/gaming layout. Max design width 430px.
 * All custom classes use prefix: v100-
 * Palette: #808080 #F4A460 #0D1117 #C0C0C0 #FFDEAD #FFCC33
 * ============================================================ */

:root {
  --v100-bg: #0D1117;
  --v100-bg-2: #141a24;
  --v100-bg-3: #1b2330;
  --v100-text: #FFDEAD;
  --v100-text-soft: #C0C0C0;
  --v100-text-muted: #808080;
  --v100-primary: #FFCC33;
  --v100-accent: #F4A460;
  --v100-line: rgba(255, 222, 173, 0.14);
  --v100-line-strong: rgba(255, 204, 51, 0.45);
  --v100-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --v100-radius: 14px;
  --v100-radius-lg: 20px;
  --v100-header-h: 58px;
  --v100-bottom-h: 62px;
}

* { box-sizing: border-box; }

html {
  font-size: 62.5%; /* 1rem = 10px */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", "Segoe UI", Roboto, system-ui, sans-serif;
  background: radial-gradient(circle at 20% -10%, #1a2230 0%, var(--v100-bg) 55%);
  color: var(--v100-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  min-height: 100vh;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { line-height: 1.85rem; margin: 0 0 1rem; color: var(--v100-text); }
h1 { font-size: 2.2rem; font-weight: 800; }
h2 { font-size: 1.9rem; font-weight: 700; }
h3 { font-size: 1.6rem; font-weight: 700; }

.v100-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.4rem;
}
.v100-wrapper { padding: 1.6rem 0; }

/* ---------------- Header ---------------- */
.v100-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(13, 17, 23, 0.96), rgba(13, 17, 23, 0.88));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--v100-line);
  transition: box-shadow .25s ease, background .25s ease;
}
.v100-header.v100-scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .55);
  background: rgba(13, 17, 23, 0.98);
}
.v100-header__inner {
  height: var(--v100-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.v100-brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--v100-text);
}
.v100-brand__logo {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--v100-primary), var(--v100-accent));
  display: grid;
  place-items: center;
  color: #0D1117;
  font-weight: 800;
  font-size: 1.3rem;
}
.v100-brand__name {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--v100-primary);
}
.v100-brand__domain { color: var(--v100-text-soft); font-weight: 500; }

.v100-header__actions { display: flex; align-items: center; gap: .6rem; }
.v100-icon-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 222, 173, .08);
  border: 1px solid var(--v100-line);
  color: var(--v100-text);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.v100-icon-btn:hover { background: rgba(255, 204, 51, .15); transform: translateY(-1px); }

.v100-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  min-height: 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.35rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s, box-shadow .2s, background .2s;
  text-align: center;
  line-height: 1.2rem;
}
.v100-btn:active { transform: scale(.96); }
.v100-btn--primary {
  background: linear-gradient(135deg, var(--v100-primary), var(--v100-accent));
  color: #0D1117;
  box-shadow: 0 6px 16px rgba(255, 204, 51, .25);
}
.v100-btn--ghost {
  background: rgba(255, 222, 173, .06);
  color: var(--v100-text);
  border-color: var(--v100-line-strong);
}
.v100-btn--block { display: flex; width: 100%; }

/* ---------------- Mobile drawer menu ---------------- */
.v100-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s;
  z-index: 9998;
}
.v100-overlay.v100-show { opacity: 1; visibility: visible; }

.v100-nav-drawer {
  position: fixed;
  top: 0; right: -82%;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: var(--v100-bg-2);
  z-index: 9999;
  padding: 2rem 1.6rem;
  overflow-y: auto;
  transition: right .3s ease;
  border-left: 1px solid var(--v100-line);
  box-shadow: var(--v100-shadow);
}
.v100-nav-drawer.v100-open { right: 0; }
.v100-nav-drawer h3 {
  font-size: 1.4rem;
  color: var(--v100-primary);
  margin: 1.6rem 0 .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.v100-nav-drawer a {
  display: block;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  color: var(--v100-text);
  border: 1px solid transparent;
  margin-bottom: .4rem;
  font-size: 1.4rem;
}
.v100-nav-drawer a:hover {
  background: rgba(255, 204, 51, .08);
  border-color: var(--v100-line);
  color: var(--v100-primary);
}
.v100-nav-drawer__cta { margin-top: 1.4rem; }

/* ---------------- Hero / Carousel ---------------- */
.v100-hero { padding: 1.2rem 0 1.6rem; }
.v100-carousel {
  position: relative;
  border-radius: var(--v100-radius-lg);
  overflow: hidden;
  box-shadow: var(--v100-shadow);
  border: 1px solid var(--v100-line);
}
.v100-carousel__viewport { overflow: hidden; }
.v100-carousel__track {
  display: flex;
  transition: transform .5s ease;
}
.v100-carousel__slide {
  min-width: 100%;
  position: relative;
  cursor: pointer;
}
.v100-carousel__slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.v100-carousel__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.4rem 1.4rem;
  background: linear-gradient(0deg, rgba(13, 17, 23, .92), rgba(13, 17, 23, 0));
}
.v100-carousel__cap strong {
  display: block;
  color: var(--v100-primary);
  font-size: 1.6rem;
  margin-bottom: .3rem;
}
.v100-carousel__cap span { color: var(--v100-text-soft); font-size: 1.25rem; }

.v100-carousel__dots {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.v100-carousel__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 222, 173, .4);
  cursor: pointer;
  padding: 0;
  transition: width .2s, background .2s;
}
.v100-carousel__dots button.v100-active {
  width: 22px;
  border-radius: 6px;
  background: var(--v100-primary);
}
.v100-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(13, 17, 23, .6);
  border: 1px solid var(--v100-line);
  color: var(--v100-text);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 2;
}
.v100-carousel__arrow--prev { left: 8px; }
.v100-carousel__arrow--next { right: 8px; }

/* ---------------- Quick trust bar ---------------- */
.v100-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin: 1rem 0;
}
.v100-trust__item {
  background: var(--v100-bg-2);
  border: 1px solid var(--v100-line);
  border-radius: 12px;
  padding: .8rem .4rem;
  text-align: center;
}
.v100-trust__item i { color: var(--v100-primary); font-size: 1.8rem; }
.v100-trust__item span { display: block; margin-top: .3rem; font-size: 1.1rem; color: var(--v100-text-soft); }
.v100-trust__item strong { display: block; color: var(--v100-text); font-size: 1.25rem; }

/* ---------------- Section heading ---------------- */
.v100-section { padding: 1.6rem 0; }
.v100-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}
.v100-section__head h2 {
  margin: 0;
  position: relative;
  padding-left: 1rem;
}
.v100-section__head h2::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--v100-primary), var(--v100-accent));
}
.v100-section__more { font-size: 1.2rem; color: var(--v100-primary); white-space: nowrap; }

/* ---------------- Filter tabs ---------------- */
.v100-filter {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding-bottom: .6rem;
  margin-bottom: 1rem;
  scrollbar-width: none;
}
.v100-filter::-webkit-scrollbar { display: none; }
.v100-filter-btn {
  flex: 0 0 auto;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  background: var(--v100-bg-2);
  border: 1px solid var(--v100-line);
  color: var(--v100-text-soft);
  font-size: 1.2rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.v100-filter-btn.v100-active {
  background: linear-gradient(135deg, var(--v100-primary), var(--v100-accent));
  color: #0D1117;
  border-color: transparent;
  font-weight: 700;
}

/* ---------------- Game grid ---------------- */
.v100-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.v100-card {
  background: var(--v100-bg-2);
  border: 1px solid var(--v100-line);
  border-radius: var(--v100-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.v100-card:hover, .v100-card:focus {
  transform: translateY(-3px);
  border-color: var(--v100-line-strong);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .45);
}
.v100-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0a0e14;
  overflow: hidden;
}
.v100-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.v100-card:hover .v100-card__media img { transform: scale(1.06); }
.v100-card__badge {
  position: absolute;
  top: 6px; left: 6px;
  background: linear-gradient(135deg, var(--v100-primary), var(--v100-accent));
  color: #0D1117;
  font-size: 1rem;
  font-weight: 700;
  padding: .15rem .5rem;
  border-radius: 6px;
  line-height: 1.1rem;
}
.v100-card__badge--hot { background: linear-gradient(135deg, #ff5a5a, #ff9966); color: #fff; }
.v100-card__name {
  padding: .55rem .5rem .7rem;
  font-size: 1.15rem;
  color: var(--v100-text);
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v100-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(13, 17, 23, .55);
  opacity: 0;
  transition: opacity .2s;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--v100-primary);
}
.v100-card:hover .v100-card__play { opacity: 1; }

/* ---------------- Info / features / promos ---------------- */
.v100-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}
.v100-feature {
  background: var(--v100-bg-2);
  border: 1px solid var(--v100-line);
  border-radius: var(--v100-radius);
  padding: 1.2rem;
}
.v100-feature i {
  font-size: 2.2rem;
  color: var(--v100-primary);
  margin-bottom: .6rem;
  display: inline-block;
}
.v100-feature h3 { margin: 0 0 .4rem; font-size: 1.35rem; }
.v100-feature p { margin: 0; color: var(--v100-text-soft); font-size: 1.2rem; line-height: 1.6rem; }

.v100-cta-box {
  background: linear-gradient(135deg, rgba(255, 204, 51, .12), rgba(244, 164, 96, .08));
  border: 1px solid var(--v100-line-strong);
  border-radius: var(--v100-radius-lg);
  padding: 1.6rem;
  text-align: center;
}
.v100-cta-box h3 { color: var(--v100-primary); margin-bottom: .4rem; }
.v100-cta-box p { color: var(--v100-text-soft); margin: 0 0 1rem; font-size: 1.25rem; }

/* ---------------- Winners ticker ---------------- */
.v100-winners {
  background: var(--v100-bg-2);
  border: 1px solid var(--v100-line);
  border-radius: var(--v100-radius);
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 1rem 0;
}
.v100-winners__icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 204, 51, .15);
  display: grid; place-items: center;
  color: var(--v100-primary);
}
.v100-winners__list { flex: 1; overflow: hidden; }
.v100-winners__row {
  display: flex; justify-content: space-between;
  font-size: 1.15rem; color: var(--v100-text-soft);
  padding: .15rem 0;
}
.v100-winners__row strong { color: var(--v100-primary); }

/* ---------------- Testimonials ---------------- */
.v100-testimonials { display: grid; gap: .8rem; }
.v100-testimonial {
  background: var(--v100-bg-2);
  border-left: 3px solid var(--v100-primary);
  border-radius: 10px;
  padding: 1rem 1.2rem;
}
.v100-testimonial__stars { color: var(--v100-primary); font-size: 1.1rem; margin-bottom: .3rem; }
.v100-testimonial p { margin: 0 0 .5rem; color: var(--v100-text); font-size: 1.25rem; }
.v100-testimonial__who { font-size: 1.1rem; color: var(--v100-text-muted); }

/* ---------------- Payment chips ---------------- */
.v100-payments {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.v100-payment-chip {
  background: var(--v100-bg-2);
  border: 1px solid var(--v100-line);
  padding: .6rem 1rem;
  border-radius: 999px;
  font-size: 1.15rem;
  color: var(--v100-text-soft);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

/* ---------------- RTP table ---------------- */
.v100-rtp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--v100-bg-2);
  border-radius: var(--v100-radius);
  overflow: hidden;
}
.v100-rtp-table th, .v100-rtp-table td {
  padding: .8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--v100-line);
  font-size: 1.2rem;
}
.v100-rtp-table th { color: var(--v100-primary); font-weight: 700; }
.v100-rtp-table td.rtp { color: var(--v100-primary); font-weight: 700; text-align: right; }

/* ---------------- FAQ ---------------- */
.v100-faq-item {
  background: var(--v100-bg-2);
  border: 1px solid var(--v100-line);
  border-radius: 12px;
  margin-bottom: .6rem;
  overflow: hidden;
}
.v100-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--v100-text);
  font-weight: 600;
  font-size: 1.3rem;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.v100-faq-q i { color: var(--v100-primary); transition: transform .25s; }
.v100-faq-item.v100-open .v100-faq-q i { transform: rotate(45deg); }
.v100-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.2rem;
  color: var(--v100-text-soft);
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.v100-faq-item.v100-open .v100-faq-a {
  max-height: 320px;
  padding: 0 1.2rem 1.1rem;
}

/* ---------------- SEO article ---------------- */
.v100-article {
  background: var(--v100-bg-2);
  border: 1px solid var(--v100-line);
  border-radius: var(--v100-radius);
  padding: 1.6rem;
  color: var(--v100-text-soft);
  font-size: 1.3rem;
  line-height: 1.7rem;
}
.v100-article h2 { color: var(--v100-text); margin-top: 1.4rem; }
.v100-article h2:first-child { margin-top: 0; }
.v100-article h3 { color: var(--v100-primary); margin-top: 1rem; }
.v100-article p { margin: 0 0 1rem; }
.v100-article a { color: var(--v100-primary); font-weight: 600; }
.v100-article ul { margin: 0 0 1rem 1.4rem; }
.v100-article li { margin-bottom: .4rem; }

/* ---------------- App download CTA ---------------- */
.v100-app-cta {
  background: linear-gradient(135deg, #1a2230, #11161e);
  border: 1px solid var(--v100-line-strong);
  border-radius: var(--v100-radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.v100-app-cta h3 { color: var(--v100-primary); margin: 0; }
.v100-app-cta p { margin: 0; color: var(--v100-text-soft); font-size: 1.2rem; }
.v100-app-cta__btns { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; }

/* ---------------- Footer ---------------- */
.v100-footer {
  background: #0a0e14;
  border-top: 1px solid var(--v100-line);
  padding: 2rem 0 1rem;
  margin-top: 2rem;
}
.v100-footer__about { color: var(--v100-text-soft); font-size: 1.2rem; line-height: 1.6rem; margin-bottom: 1.2rem; }
.v100-footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .4rem;
  margin-bottom: 1.4rem;
}
.v100-footer__links a {
  color: var(--v100-text-soft);
  font-size: 1.2rem;
  padding: .35rem 0;
}
.v100-footer__links a:hover { color: var(--v100-primary); }
.v100-footer__promo-row {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem;
}
.v100-footer__copy {
  border-top: 1px solid var(--v100-line);
  padding-top: 1rem;
  color: var(--v100-text-muted);
  font-size: 1.1rem;
  text-align: center;
}

/* ---------------- Bottom nav (mobile) ---------------- */
.v100-bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: var(--v100-bottom-h);
  background: rgba(13, 17, 23, .98);
  border-top: 1px solid var(--v100-line-strong);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, .45);
}
.v100-bottom-nav__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: transparent;
  border: none;
  color: var(--v100-text-soft);
  font-size: 1.05rem;
  cursor: pointer;
  min-width: 60px;
  min-height: 60px;
  padding: 4px 2px;
  transition: color .2s, transform .15s;
}
.v100-bottom-nav__btn i { font-size: 2.2rem; }
.v100-bottom-nav__btn:active { transform: scale(.9); }
.v100-bottom-nav__btn.v100-current,
.v100-bottom-nav__btn:hover { color: var(--v100-primary); }
.v100-bottom-nav__btn--promo {
  position: relative;
  color: #0D1117;
}
.v100-bottom-nav__btn--promo i {
  background: linear-gradient(135deg, var(--v100-primary), var(--v100-accent));
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2rem;
  margin-top: -18px;
  box-shadow: 0 4px 12px rgba(255, 204, 51, .35);
  color: #0D1117;
}
.v100-bottom-nav__btn--promo span { color: var(--v100-primary); font-weight: 700; }

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

/* ---------------- Mobile padding bottom for fixed nav ---------------- */
.v100-main { padding-bottom: calc(var(--v100-bottom-h) + 18px); }

/* ---------------- Desktop: hide bottom nav ---------------- */
@media (min-width: 769px) {
  .v100-bottom-nav { display: none; }
  .v100-main { padding-bottom: 2rem; }
  .v100-container { max-width: 760px; }
}

/* ---------------- Small screens fine-tune ---------------- */
@media (max-width: 360px) {
  html { font-size: 56%; }
  .v100-grid { grid-template-columns: repeat(2, 1fr); }
}
