/*!
 * vin99.click - core stylesheet
 * Palette: #1E1E1E (bg) | #6C757D (muted) | #BDB76B (accent)
 * All custom classes use the v426- prefix for namespace isolation.
 * Mobile-first: main wrapper caps at max-width: 430px.
 */

:root {
  --v426-bg: #1E1E1E;
  --v426-bg-2: #232323;
  --v426-bg-3: #2c2c2c;
  --v426-text: #f4f1e6;
  --v426-muted: #6C757D;
  --v426-accent: #BDB76B;
  --v426-accent-2: #d8d28a;
  --v426-danger: #c0392b;
  --v426-success: #2ecc71;
  --v426-radius: 14px;
  --v426-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Be Vietnam Pro", "Segoe UI", Roboto, system-ui, sans-serif;
  background: var(--v426-bg);
  color: var(--v426-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--v426-accent);
  text-decoration: none;
}

.v426-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  background: var(--v426-bg);
  min-height: 100vh;
}

main.v426-main {
  padding-top: 64px;
  padding-bottom: 24px;
}

/* ===== Header ===== */
.v426-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #181818, #1E1E1E);
  border-bottom: 1px solid rgba(189, 183, 107, 0.25);
  box-shadow: var(--v426-shadow);
}

.v426-header-inner {
  max-width: 430px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}

.v426-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--v426-accent);
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}

.v426-brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.v426-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v426-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.v426-btn:active {
  transform: scale(0.95);
}

.v426-btn-register {
  background: linear-gradient(135deg, var(--v426-accent), var(--v426-accent-2));
  color: #1E1E1E;
}

.v426-btn-login {
  background: transparent;
  color: var(--v426-accent);
  border: 1px solid var(--v426-accent);
}

.v426-menu-btn {
  background: transparent;
  border: none;
  color: var(--v426-text);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 6px 8px;
}

/* ===== Mobile dropdown menu ===== */
.v426-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #161616;
  border-bottom: 1px solid rgba(189, 183, 107, 0.2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.v426-mobile-menu.v426-menu-open {
  max-height: 420px;
}

.v426-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 12px;
}

.v426-mobile-menu li a {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(108, 117, 125, 0.25);
  color: var(--v426-text);
  font-size: 1.4rem;
}

.v426-mobile-menu li a:hover {
  color: var(--v426-accent);
}

/* ===== Carousel ===== */
.v426-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--v426-radius);
  overflow: hidden;
  margin: 12px 0;
  box-shadow: var(--v426-shadow);
}

.v426-slide {
  display: none;
  cursor: pointer;
}

.v426-slide.v426-slide-active {
  display: block;
}

.v426-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.v426-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.v426-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(244, 241, 230, 0.4);
  cursor: pointer;
}

.v426-dot.v426-dot-active {
  background: var(--v426-accent);
}

/* ===== Sections ===== */
.v426-section {
  padding: 18px 12px;
}

.v426-h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--v426-accent);
  margin: 8px 0 12px;
  line-height: 1.3;
}

.v426-h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--v426-accent-2);
  margin: 18px 0 10px;
}

.v426-h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--v426-text);
  margin: 12px 0 8px;
}

.v426-text-muted {
  color: var(--v426-muted);
}

.v426-p {
  margin: 0 0 10px;
  color: #d8d5cc;
}

/* ===== Game grid ===== */
.v426-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.v426-card {
  background: var(--v426-bg-2);
  border-radius: 10px;
  padding: 6px;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(189, 183, 107, 0.12);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.v426-card:hover {
  transform: translateY(-2px);
  border-color: var(--v426-accent);
}

.v426-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.v426-card-name {
  font-size: 1.05rem;
  color: var(--v426-text);
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== Generic info / feature cards ===== */
.v426-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.v426-feature {
  background: var(--v426-bg-2);
  border-radius: 12px;
  padding: 12px;
  border-left: 3px solid var(--v426-accent);
}

.v426-feature .v426-ico {
  font-size: 1.8rem;
  color: var(--v426-accent);
}

/* ===== Promo / play CTA ===== */
.v426-cta {
  background: linear-gradient(135deg, #2a2a2a, #1E1E1E);
  border: 1px solid var(--v426-accent);
  border-radius: var(--v426-radius);
  padding: 16px;
  text-align: center;
  margin: 16px 0;
}

.v426-cta .v426-btn {
  width: 100%;
  min-height: 44px;
  font-size: 1.5rem;
  margin-top: 8px;
}

.v426-link-text {
  color: var(--v426-accent);
  font-weight: 700;
}

/* ===== Testimonial / winners ===== */
.v426-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v426-list li {
  background: var(--v426-bg-2);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v426-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(189, 183, 107, 0.18);
  color: var(--v426-accent);
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ===== Footer ===== */
.v426-footer {
  background: #161616;
  border-top: 1px solid rgba(189, 183, 107, 0.2);
  padding: 18px 12px 100px;
}

.v426-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.v426-footer-links a {
  color: var(--v426-text);
  font-size: 1.2rem;
  padding: 4px 0;
}

.v426-footer-copy {
  color: var(--v426-muted);
  font-size: 1.1rem;
  margin-top: 12px;
  text-align: center;
}

/* ===== Bottom mobile nav ===== */
.v426-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(180deg, #1a1a1a, #111111);
  border-top: 1px solid rgba(189, 183, 107, 0.3);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.v426-bottom-nav a,
.v426-bottom-nav button {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--v426-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

.v426-bottom-nav a:active,
.v426-bottom-nav button:active {
  transform: scale(0.92);
}

.v426-bottom-nav .v426-ico {
  font-size: 2rem;
  line-height: 1;
}

.v426-bottom-nav .v426-active {
  color: var(--v426-accent);
}

/* ===== Reveal animation ===== */
.v426-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.v426-reveal.v426-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (min-width: 769px) {
  .v426-bottom-nav {
    display: none;
  }
  main.v426-main {
    padding-bottom: 32px;
  }
}

@media (max-width: 768px) {
  main.v426-main {
    padding-bottom: 80px;
  }
}
