/* ===== 123win com 79 - Core Base Styles ===== */
/* Color palette: #DAA520 | #DC143C | #FAFAD2 | #FF8C00 | #1A1A2E */

:root {
  --v07a-gold: #DAA520;
  --v07a-crimson: #DC143C;
  --v07a-cream: #FAFAD2;
  --v07a-orange: #FF8C00;
  --v07a-dark: #1A1A2E;
  --v07a-darker: #12121f;
  --v07a-card: #232342;
  --v07a-text: #f5f5f5;
  --v07a-muted: #b8b8d4;
  --v07a-radius: 1.2rem;
  --v07a-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.45);
}

* { 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", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #1f1f3a 0%, var(--v07a-dark) 60%, var(--v07a-darker) 100%);
  color: var(--v07a-text);
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--v07a-gold); text-decoration: none; }

/* ===== Header ===== */
.v07a-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, var(--v07a-darker), var(--v07a-dark));
  border-bottom: 0.2rem solid var(--v07a-gold);
  box-shadow: var(--v07a-shadow);
}
.v07a-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--v07a-gold);
  letter-spacing: 0.5px;
}
.v07a-logo span { color: var(--v07a-crimson); }
.v07a-logo i { font-size: 2.2rem; color: var(--v07a-orange); }
.v07a-header-actions { display: flex; gap: 0.5rem; align-items: center; }
.v07a-btn {
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
}
.v07a-btn:active { transform: scale(0.95); }
.v07a-btn-login {
  background: transparent;
  color: var(--v07a-cream);
  border: 0.15rem solid var(--v07a-gold);
}
.v07a-btn-register {
  background: linear-gradient(135deg, var(--v07a-crimson), var(--v07a-orange));
  color: #fff;
  box-shadow: 0 0.4rem 1rem rgba(220,20,60,.4);
}
.v07a-menu-toggle {
  background: transparent;
  border: none;
  color: var(--v07a-gold);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}

/* ===== Mobile Menu ===== */
.v07a-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--v07a-darker);
  z-index: 9999;
  padding: 2rem 1.5rem;
  transition: right .3s ease;
  overflow-y: auto;
  border-left: 0.2rem solid var(--v07a-gold);
}
.v07a-mobile-menu.open { right: 0; }
.v07a-menu-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: transparent;
  border: none;
  color: var(--v07a-cream);
  font-size: 2.4rem;
  cursor: pointer;
}
.v07a-mobile-menu h3 {
  color: var(--v07a-gold);
  font-size: 1.5rem;
  margin: 1.5rem 0 0.8rem;
  border-bottom: 0.1rem solid #333355;
  padding-bottom: 0.4rem;
}
.v07a-mobile-menu a {
  display: block;
  padding: 0.8rem 0.5rem;
  color: var(--v07a-text);
  font-size: 1.3rem;
  border-radius: 0.6rem;
  transition: background .15s;
}
.v07a-mobile-menu a:hover, .v07a-mobile-menu a:active { background: rgba(218,165,32,.12); }
.v07a-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9998;
  display: none;
}
.v07a-menu-overlay.show { display: block; }

/* ===== Hero / Banner ===== */
.v07a-hero {
  position: relative;
  padding: 1.5rem 1rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(220,20,60,.25), rgba(255,140,0,.18));
  border-bottom: 0.15rem solid var(--v07a-gold);
}
.v07a-hero h1 {
  font-size: 2.4rem;
  color: var(--v07a-gold);
  text-shadow: 0 0.2rem 0.4rem rgba(0,0,0,.6);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.v07a-hero p { color: var(--v07a-cream); font-size: 1.25rem; margin-bottom: 1.2rem; }
.v07a-hero-cta { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.v07a-hero-cta .v07a-btn { font-size: 1.4rem; padding: 0.9rem 1.8rem; }

/* ===== Slider ===== */
.v07a-slider {
  position: relative;
  margin: 1rem;
  border-radius: var(--v07a-radius);
  overflow: hidden;
  box-shadow: var(--v07a-shadow);
}
.v07a-slides { display: flex; transition: transform .5s ease; }
.v07a-slide {
  min-width: 100%;
  position: relative;
}
.v07a-slide img { width: 100%; height: 18rem; object-fit: cover; }
.v07a-slide-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}
.v07a-slider-dots {
  position: absolute;
  bottom: 0.8rem;
  right: 1rem;
  display: flex;
  gap: 0.4rem;
}
.v07a-dot {
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  border: none;
}
.v07a-dot.active { background: var(--v07a-gold); }

/* ===== Sections ===== */
.v07a-section {
  padding: 1.5rem 1rem;
}
.v07a-section-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.7rem;
  color: var(--v07a-gold);
  margin-bottom: 1rem;
  border-left: 0.4rem solid var(--v07a-crimson);
  padding-left: 0.8rem;
}
.v07a-section-title i { color: var(--v07a-orange); }

/* ===== Category Tabs ===== */
.v07a-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}
.v07a-tab {
  white-space: nowrap;
  padding: 0.6rem 1.2rem;
  background: var(--v07a-card);
  color: var(--v07a-cream);
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: 0.1rem solid transparent;
  transition: all .2s;
}
.v07a-tab.active {
  background: linear-gradient(135deg, var(--v07a-crimson), var(--v07a-orange));
  color: #fff;
  border-color: var(--v07a-gold);
}

/* ===== Game Grid ===== */
.v07a-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.v07a-game-card {
  background: var(--v07a-card);
  border-radius: 0.8rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: 0.1rem solid #333355;
}
.v07a-game-card:active { transform: scale(0.96); }
.v07a-game-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: #15152a;
}
.v07a-game-card .v07a-game-name {
  padding: 0.4rem 0.3rem;
  font-size: 1rem;
  text-align: center;
  color: var(--v07a-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}
.v07a-game-card .v07a-game-play {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.v07a-game-card:hover .v07a-game-play,
.v07a-game-card:active .v07a-game-play { opacity: 1; }
.v07a-game-play i { font-size: 2.4rem; color: var(--v07a-gold); }
.v07a-badge-hot {
  position: absolute;
  top: 0.3rem; left: 0.3rem;
  background: var(--v07a-crimson);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 0.3rem;
  z-index: 2;
}

/* ===== Features ===== */
.v07a-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.v07a-feature {
  background: var(--v07a-card);
  border-radius: 0.8rem;
  padding: 1rem;
  text-align: center;
  border: 0.1rem solid #333355;
}
.v07a-feature i { font-size: 2.4rem; color: var(--v07a-orange); margin-bottom: 0.4rem; }
.v07a-feature h4 { color: var(--v07a-gold); font-size: 1.25rem; margin-bottom: 0.3rem; }
.v07a-feature p { color: var(--v07a-muted); font-size: 1.1rem; }

/* ===== Promo / SEO content ===== */
.v07a-content-block {
  background: var(--v07a-card);
  border-radius: var(--v07a-radius);
  padding: 1.3rem;
  margin: 1rem;
  border-left: 0.3rem solid var(--v07a-gold);
}
.v07a-content-block h2 {
  color: var(--v07a-gold);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.v07a-content-block h3 {
  color: var(--v07a-orange);
  font-size: 1.35rem;
  margin: 0.8rem 0 0.4rem;
}
.v07a-content-block p {
  color: var(--v07a-cream);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.v07a-content-block a { color: var(--v07a-orange); font-weight: 600; }
.v07a-content-block ul { padding-left: 1.6rem; margin-bottom: 0.6rem; }
.v07a-content-block li { color: var(--v07a-cream); font-size: 1.2rem; margin-bottom: 0.3rem; }

/* ===== FAQ ===== */
.v07a-faq-item {
  background: var(--v07a-card);
  border-radius: 0.6rem;
  margin-bottom: 0.6rem;
  overflow: hidden;
  border: 0.1rem solid #333355;
}
.v07a-faq-q {
  padding: 0.9rem 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--v07a-gold);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.v07a-faq-q .v07a-faq-icon { transition: transform .2s; color: var(--v07a-orange); }
.v07a-faq-item.open .v07a-faq-icon { transform: rotate(45deg); }
.v07a-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1rem;
  color: var(--v07a-cream);
  font-size: 1.15rem;
}
.v07a-faq-item.open .v07a-faq-a {
  max-height: 30rem;
  padding: 0 1rem 0.9rem;
}

/* ===== Footer ===== */
.v07a-footer {
  background: var(--v07a-darker);
  padding: 1.5rem 1rem 7rem;
  border-top: 0.2rem solid var(--v07a-gold);
  margin-top: 1rem;
}
.v07a-footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.v07a-footer-col h4 {
  color: var(--v07a-gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.v07a-footer-col a {
  display: block;
  color: var(--v07a-muted);
  font-size: 1.1rem;
  padding: 0.25rem 0;
}
.v07a-footer-col a:hover { color: var(--v07a-orange); }
.v07a-footer-bottom {
  text-align: center;
  color: var(--v07a-muted);
  font-size: 1.05rem;
  padding-top: 1rem;
  border-top: 0.1rem solid #333355;
}
.v07a-footer-pay { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin: 0.8rem 0; }
.v07a-footer-pay i { font-size: 2rem; color: var(--v07a-cream); }

/* ===== Mobile Bottom Nav ===== */
.v07a-bottom-nav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 6rem;
  background: linear-gradient(180deg, var(--v07a-dark), var(--v07a-darker));
  border-top: 0.15rem solid var(--v07a-gold);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -0.4rem 1rem rgba(0,0,0,.5);
}
.v07a-nav-btn {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  color: var(--v07a-muted);
  cursor: pointer;
  transition: color .2s, transform .2s;
  font-family: inherit;
  gap: 0.2rem;
}
.v07a-nav-btn i { font-size: 2.2rem; }
.v07a-nav-btn span { font-size: 1rem; font-weight: 600; }
.v07a-nav-btn.active { color: var(--v07a-gold); }
.v07a-nav-btn:active { transform: scale(0.92); }
.v07a-nav-btn.v07a-nav-promo {
  color: var(--v07a-orange);
}
.v07a-nav-btn.v07a-nav-promo i {
  background: linear-gradient(135deg, var(--v07a-crimson), var(--v07a-orange));
  color: #fff;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-top: -1.6rem;
  box-shadow: 0 0.3rem 0.8rem rgba(220,20,60,.5);
  border: 0.2rem solid var(--v07a-gold);
}

/* ===== Desktop ===== */
@media (min-width: 769px) {
  body { max-width: 430px; box-shadow: var(--v07a-shadow); }
  .v07a-bottom-nav { display: none; }
  .v07a-footer { padding-bottom: 2rem; }
}
@media (max-width: 768px) {
  main { padding-bottom: 7rem; }
}
@media (max-width: 360px) {
  .v07a-game-grid { grid-template-columns: repeat(2, 1fr); }
  .v07a-hero h1 { font-size: 2rem; }
}
