/* 333win - 333win.homes core stylesheet
   Class prefix: v092-
   Mobile-first. Root font 62.5% (1rem = 10px). */

:root {
  --v092-primary: #00BFFF;
  --v092-bg: #0D1117;
  --v092-deep: #191970;
  --v092-text: #E6F2FF;
  --v092-muted: #9AAFC8;
  --v092-gold: #FFD166;
  --v092-card: #141b2b;
  --v092-border: rgba(0, 191, 255, 0.18);
  --v092-radius: 1.2rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--v092-bg);
  color: var(--v092-text);
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}

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

a { color: var(--v092-primary); text-decoration: none; }

.v092-container { width: 100%; padding: 0 1.2rem; }
.v092-wrapper { max-width: 430px; margin: 0 auto; }

/* ===== Header ===== */
.v092-header {
  position: fixed; top: 0; left: 0; right: 0;
  max-width: 430px; margin: 0 auto;
  background: linear-gradient(180deg, #0b1220 0%, #0D1117 100%);
  border-bottom: 1px solid var(--v092-border);
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem;
  height: 5.6rem;
}
.v092-brand { display: flex; align-items: center; gap: 0.8rem; }
.v092-logo { width: 3rem; height: 3rem; border-radius: 0.6rem; }
.v092-brand-name {
  font-size: 1.7rem; font-weight: 800; color: var(--v092-primary);
  letter-spacing: 0.5px;
}
.v092-brand-name span { color: var(--v092-gold); }

.v092-header-actions { display: flex; align-items: center; gap: 0.7rem; }
.v092-btn {
  border: none; border-radius: 0.8rem; padding: 0.8rem 1.4rem;
  font-size: 1.3rem; font-weight: 700; cursor: pointer;
  min-height: 44px; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.v092-btn:active { transform: scale(0.94); }
.v092-btn-login {
  background: transparent; color: var(--v092-primary);
  border: 1px solid var(--v092-primary);
}
.v092-btn-register {
  background: linear-gradient(135deg, var(--v092-primary) 0%, var(--v092-deep) 100%);
  color: #fff; box-shadow: 0 4px 12px rgba(0,191,255,0.35);
}
.v092-menu-btn {
  background: transparent; border: 1px solid var(--v092-border);
  color: var(--v092-primary); border-radius: 0.8rem;
  width: 4.4rem; height: 4.4rem; font-size: 2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ===== Mobile expandable menu ===== */
.v092-mobile-menu {
  position: fixed; top: 5.6rem; left: 0; right: 0;
  max-width: 430px; margin: 0 auto;
  background: #0b1220; border-bottom: 1px solid var(--v092-border);
  z-index: 9999; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.v092-mobile-menu.v092-menu-open { max-height: 60rem; }
.v092-mobile-menu ul { list-style: none; padding: 0.8rem 1.2rem; }
.v092-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.v092-mobile-menu li:last-child { border-bottom: none; }
.v092-mobile-menu a {
  display: block; padding: 1.2rem 0.4rem; color: var(--v092-text);
  font-size: 1.4rem; font-weight: 600;
}
.v092-mobile-menu a:active { color: var(--v092-primary); }
.v092-menu-section-title {
  font-size: 1.1rem; color: var(--v092-muted); text-transform: uppercase;
  padding: 0.8rem 0.4rem 0.4rem; letter-spacing: 1px;
}

/* ===== Main ===== */
main { padding-top: 5.6rem; padding-bottom: 8rem; }

.v092-section { padding: 2rem 1.2rem; }
.v092-section-title {
  font-size: 1.9rem; font-weight: 800; color: #fff;
  margin-bottom: 0.6rem; border-left: 4px solid var(--v092-primary);
  padding-left: 0.9rem;
}
.v092-section-sub {
  font-size: 1.3rem; color: var(--v092-muted); margin-bottom: 1.4rem;
}

/* ===== Carousel ===== */
.v092-carousel {
  position: relative; width: 100%; height: 17rem; overflow: hidden;
  border-radius: var(--v092-radius); margin: 1.2rem 0;
}
.v092-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.6s ease; cursor: pointer;
}
.v092-slide.v092-slide-active { opacity: 1; }
.v092-slide img { width: 100%; height: 100%; object-fit: cover; }
.v092-slide-overlay {
  position: absolute; left: 1.2rem; bottom: 1.4rem; right: 1.2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
  color: #fff; padding: 1rem; border-radius: 0.8rem;
}
.v092-slide-overlay h2 { font-size: 1.6rem; font-weight: 800; }
.v092-slide-overlay p { font-size: 1.2rem; color: #dce9ff; }
.v092-dots {
  position: absolute; bottom: 0.8rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.v092-dot {
  width: 0.7rem; height: 0.7rem; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
}
.v092-dot.v092-dot-active { background: var(--v092-primary); }

/* ===== H1 hero ===== */
.v092-hero { padding: 1rem 1.2rem 0.5rem; }
.v092-hero h1 {
  font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1.25;
}
.v092-hero h1 em { color: var(--v092-primary); font-style: normal; }
.v092-hero p { font-size: 1.3rem; color: var(--v092-muted); margin-top: 0.5rem; }

/* ===== Game grid ===== */
.v092-game-block { margin-bottom: 2.4rem; }
.v092-block-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem; margin-bottom: 1rem;
}
.v092-block-head h2 {
  font-size: 1.6rem; font-weight: 800; color: #fff;
  display: flex; align-items: center; gap: 0.6rem;
}
.v092-block-head h2 i { color: var(--v092-gold); font-size: 1.8rem; }
.v092-block-more { font-size: 1.2rem; color: var(--v092-primary); }

.v092-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
  padding: 0 1.2rem;
}
.v092-card {
  background: var(--v092-card); border: 1px solid var(--v092-border);
  border-radius: 0.9rem; overflow: hidden; cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.v092-card:active { transform: scale(0.96); border-color: var(--v092-primary); }
.v092-card-img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #0a0f1a;
}
.v092-card-name {
  font-size: 1.05rem; color: var(--v092-text); padding: 0.5rem 0.4rem;
  text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-weight: 600;
}

/* ===== Info / promo modules ===== */
.v092-info-card {
  background: linear-gradient(135deg, rgba(25,25,112,0.6) 0%, rgba(0,191,255,0.12) 100%);
  border: 1px solid var(--v092-border); border-radius: var(--v092-radius);
  padding: 1.6rem; margin: 1.2rem;
}
.v092-info-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 0.6rem; }
.v092-info-card p { font-size: 1.25rem; color: var(--v092-text); margin-bottom: 0.8rem; }
.v092-info-card ul { padding-left: 1.4rem; }
.v092-info-card li { font-size: 1.2rem; color: var(--v092-muted); margin-bottom: 0.4rem; }

.v092-promo-link {
  color: var(--v092-primary); font-weight: 700; cursor: pointer;
  border-bottom: 1px dashed var(--v092-primary);
}

.v092-cta {
  display: block; text-align: center; margin: 1.6rem 1.2rem;
  padding: 1.4rem; font-size: 1.5rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--v092-primary) 0%, var(--v092-deep) 100%);
  border-radius: 1rem; box-shadow: 0 6px 18px rgba(0,191,255,0.4);
  cursor: pointer;
}

.v092-testimonial {
  background: var(--v092-card); border-radius: var(--v092-radius);
  padding: 1.2rem; margin: 0.8rem 1.2rem;
  border-left: 3px solid var(--v092-gold);
}
.v092-testimonial p { font-size: 1.2rem; color: var(--v092-text); }
.v092-testimonial span { display: block; margin-top: 0.5rem; font-size: 1.05rem; color: var(--v092-muted); }

.v092-winner-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1.2rem;
}
.v092-winner-name { color: var(--v092-primary); font-weight: 700; }
.v092-winner-amount { color: var(--v092-gold); font-weight: 800; }

/* ===== Footer ===== */
.v092-footer {
  background: #080c14; border-top: 1px solid var(--v092-border);
  padding: 2rem 1.2rem 1.4rem;
}
.v092-footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--v092-primary); margin-bottom: 0.5rem; }
.v092-footer-desc { font-size: 1.15rem; color: var(--v092-muted); margin-bottom: 1.2rem; line-height: 1.5; }
.v092-footer-promos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; margin-bottom: 1.4rem;
}
.v092-footer-promos button {
  padding: 0.9rem; font-size: 1.15rem; font-weight: 700; border-radius: 0.7rem;
  border: 1px solid var(--v092-primary); background: rgba(0,191,255,0.08);
  color: var(--v092-primary); cursor: pointer; min-height: 44px;
}
.v092-footer-links {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem 1rem; margin-bottom: 1.2rem;
}
.v092-footer-links a { font-size: 1.15rem; color: var(--v092-text); padding: 0.3rem 0; }
.v092-footer-links a:active { color: var(--v092-primary); }
.v092-footer-copy { font-size: 1.05rem; color: var(--v092-muted); text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; }

/* ===== Bottom navigation ===== */
.v092-bnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  max-width: 430px; margin: 0 auto;
  height: 6rem; background: #080c14;
  border-top: 1px solid var(--v092-border);
  display: flex; justify-content: space-around; align-items: center;
  z-index: 1000;
}
.v092-bnav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 60px; gap: 0.2rem;
  background: transparent; border: none; color: var(--v092-muted);
  font-size: 1.05rem; cursor: pointer; transition: color 0.15s ease, transform 0.15s ease;
  text-decoration: none;
}
.v092-bnav-btn:active { transform: scale(0.9); }
.v092-bnav-btn i, .v092-bnav-btn .material-icons-outlined,
.v092-bnav-btn .ion-icon { font-size: 2.4rem; line-height: 1; }
.v092-bnav-btn .v092-bnav-label { font-size: 1.05rem; }
.v092-bnav-active { color: var(--v092-primary); }
.v092-bnav-active i, .v092-bnav-active .material-icons-outlined,
.v092-bnav-active .ion-icon { color: var(--v092-gold); }

/* ===== Responsive ===== */
@media (min-width: 769px) {
  .v092-bnav { display: none; }
  main { padding-bottom: 2rem; }
}
@media (max-width: 768px) {
  main { padding-bottom: 8rem; }
}
@media (max-width: 360px) {
  .v092-grid { grid-template-columns: repeat(2, 1fr); }
  .v092-hero h1 { font-size: 1.9rem; }
}
