/* ============================================================
 * 1234b.click - Core stylesheet
 * Class prefix: v262-
 * Palette: #CD853F | #E9967A | #DCDCDC | #808080 | #FF69B4 | #1C2833
 * Mobile-first, max-width 430px
 * ============================================================ */

:root {
  --v262-primary: #CD853F;
  --v262-accent: #E9967A;
  --v262-pink: #FF69B4;
  --v262-light: #DCDCDC;
  --v262-grey: #808080;
  --v262-bg: #1C2833;
  --v262-bg-2: #243447;
  --v262-bg-3: #2c3e50;
  --v262-text: #f4f1ec;
  --v262-muted: #b9c2cc;
  --v262-gold: #f3c969;
  --v262-success: #4caf7a;
  --v262-danger: #e35e6a;
  --v262-radius: 14px;
  --v262-shadow: 0 6px 22px rgba(0,0,0,0.35);
  --v262-header-h: 60px;
  --v262-bottom-h: 62px;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--v262-header-h) + 10px);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", "Roboto", "Arial", sans-serif;
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(255,105,180,0.10), transparent 60%),
    radial-gradient(700px 480px at -10% 30%, rgba(205,133,63,0.12), transparent 60%),
    linear-gradient(180deg, #1C2833 0%, #19242f 100%);
  color: var(--v262-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--v262-gold); text-decoration: none; }
a:hover { color: var(--v262-pink); }

h1, h2, h3, h4 { margin: 0 0 .8rem; line-height: 1.25; }
h1 { font-size: 2.4rem; }
h2 { font-size: 2.0rem; }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.5rem; }

p { margin: 0 0 1rem; }

/* ---------- Layout ---------- */
.v262-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 14px; }
.v262-wrapper { padding: 16px 0; }
.v262-section { padding: 22px 0; }
.v262-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 2rem;
  color: var(--v262-gold);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.v262-section-title i { color: var(--v262-pink); }

.v262-row { display: flex; gap: 10px; }
.v262-justify-between { justify-content: space-between; }
.v262-align-center { align-items: center; }
.v262-flex-wrap { flex-wrap: wrap; }
.v262-grid { display: grid; gap: 12px; }
.v262-grid-2 { grid-template-columns: repeat(2, 1fr); }
.v262-grid-3 { grid-template-columns: repeat(3, 1fr); }
.v262-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Header ---------- */
.v262-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--v262-header-h);
  z-index: 1000;
  background: linear-gradient(180deg, rgba(28,40,51,0.96), rgba(28,40,51,0.88));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(205,133,63,0.35);
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.v262-header .v262-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.v262-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--v262-text);
}
.v262-brand img { width: 30px; height: 30px; border-radius: 8px; }
.v262-brand .v262-brand-accent { color: var(--v262-primary); }
.v262-brand small { display: block; font-size: 1rem; color: var(--v262-muted); font-weight: 500; }

.v262-header-actions { display: flex; align-items: center; gap: 6px; }

/* ---------- Buttons ---------- */
.v262-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 14px;
  border: none;
  border-radius: 24px;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  background: linear-gradient(135deg, var(--v262-primary), var(--v262-accent));
  color: #1C2833;
  white-space: nowrap;
}
.v262-btn:hover { transform: translateY(-2px); filter: brightness(1.06); color: #1C2833; }
.v262-btn:active { transform: translateY(0); }
.v262-btn-outline {
  background: transparent;
  color: var(--v262-text);
  border: 1.5px solid var(--v262-primary);
}
.v262-btn-outline:hover { background: rgba(205,133,63,0.12); color: var(--v262-text); }
.v262-btn-pink {
  background: linear-gradient(135deg, var(--v262-pink), var(--v262-accent));
  color: #1C2833;
}
.v262-btn-lg { min-height: 48px; padding: 12px 22px; font-size: 1.6rem; }
.v262-btn-sm { min-height: 32px; padding: 5px 10px; font-size: 1.2rem; border-radius: 18px; }
.v262-btn-block { width: 100%; }

/* ---------- Menu toggle ---------- */
.v262-menu-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--v262-text);
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
}
.v262-menu-toggle.v262-active { background: rgba(205,133,63,0.18); }

/* ---------- Mobile menu ---------- */
.v262-mobile-menu {
  position: fixed;
  top: var(--v262-header-h);
  left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #1C2833, #243447);
  border-bottom: 1px solid rgba(205,133,63,0.3);
  padding: 10px 14px 18px;
  transform: translateY(-150%);
  transition: transform .28s ease;
  box-shadow: var(--v262-shadow);
}
.v262-mobile-menu.v262-menu-open { transform: translateY(0); }
.v262-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  color: var(--v262-text);
  font-size: 1.45rem;
}
.v262-mobile-menu a i { color: var(--v262-primary); width: 22px; text-align: center; }
.v262-mobile-menu a:hover { color: var(--v262-gold); background: rgba(205,133,63,0.08); }

/* ---------- Hero / Carousel ---------- */
.v262-hero { margin-top: calc(var(--v262-header-h) + 12px); }
.v262-carousel {
  position: relative;
  border-radius: var(--v262-radius);
  overflow: hidden;
  box-shadow: var(--v262-shadow);
  border: 1px solid rgba(205,133,63,0.25);
}
.v262-slides { position: relative; }
.v262-slide {
  position: relative;
  display: none;
  cursor: pointer;
}
.v262-slide.v262-active { display: block; animation: v262-fade .6s ease; }
.v262-slide img { width: 100%; height: 180px; object-fit: cover; }
.v262-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(28,40,51,0.92));
}
.v262-slide-cap h3 { color: var(--v262-gold); margin: 0 0 4px; font-size: 1.7rem; }
.v262-slide-cap p { margin: 0; color: var(--v262-text); font-size: 1.25rem; }
@keyframes v262-fade { from { opacity: 0; } to { opacity: 1; } }

.v262-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(28,40,51,0.6);
  color: #fff;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}
.v262-carousel-arrow.v262-prev { left: 8px; }
.v262-carousel-arrow.v262-next { right: 8px; }
.v262-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.v262-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none; cursor: pointer;
}
.v262-dot.v262-active { background: var(--v262-pink); width: 22px; border-radius: 4px; }

/* ---------- Hero CTA banner ---------- */
.v262-cta-banner {
  background: linear-gradient(135deg, rgba(205,133,63,0.18), rgba(255,105,180,0.14));
  border: 1px solid rgba(205,133,63,0.4);
  border-radius: var(--v262-radius);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.v262-cta-banner .v262-text-block { flex: 1; }
.v262-cta-banner h3 { color: var(--v262-gold); font-size: 1.6rem; margin: 0 0 4px; }
.v262-cta-banner p { margin: 0; font-size: 1.2rem; color: var(--v262-muted); }

/* ---------- Quick category chips ---------- */
.v262-cat-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
  margin: 0 -14px 6px;
  padding-left: 14px; padding-right: 14px;
  scrollbar-width: none;
}
.v262-cat-chips::-webkit-scrollbar { display: none; }
.v262-cat-link {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(205,133,63,0.3);
  color: var(--v262-text);
  font-size: 1.25rem;
  font-weight: 600;
}
.v262-cat-link i { margin-right: 4px; color: var(--v262-primary); }
.v262-cat-link:hover, .v262-cat-link.v262-current { background: linear-gradient(135deg, var(--v262-primary), var(--v262-accent)); color: #1C2833; }
.v262-cat-link:hover i, .v262-cat-link.v262-current i { color: #1C2833; }

/* ---------- Game grid ---------- */
.v262-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.v262-game-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(205,133,63,0.25);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
}
.v262-game-card:hover {
  transform: translateY(-3px);
  border-color: var(--v262-pink);
  box-shadow: 0 10px 24px rgba(255,105,180,0.18);
}
.v262-game-card .v262-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #0e1620;
  overflow: hidden;
}
.v262-game-card .v262-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.v262-game-card .v262-game-name {
  padding: 6px 6px 8px;
  font-size: 1.15rem;
  text-align: center;
  color: var(--v262-text);
  font-weight: 600;
  line-height: 1.25;
  min-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.v262-game-card .v262-game-tag {
  position: absolute;
  top: 4px; left: 4px;
  background: rgba(255,105,180,0.85);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 6px;
}

.v262-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(205,133,63,0.22);
  border-radius: var(--v262-radius);
  padding: 14px;
}

/* ---------- Info / Feature cards ---------- */
.v262-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.v262-feature {
  background: linear-gradient(160deg, rgba(205,133,63,0.12), rgba(255,105,180,0.08));
  border: 1px solid rgba(205,133,63,0.25);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.v262-feature i { font-size: 2.2rem; color: var(--v262-gold); margin-bottom: 6px; }
.v262-feature h4 { color: var(--v262-text); margin: 0 0 4px; font-size: 1.3rem; }
.v262-feature p { margin: 0; font-size: 1.15rem; color: var(--v262-muted); }

/* ---------- FAQ ---------- */
.v262-faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(205,133,63,0.2);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}
.v262-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  color: var(--v262-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.v262-faq-item summary::-webkit-details-marker { display: none; }
.v262-faq-item summary i { color: var(--v262-pink); }
.v262-faq-item[open] summary { background: rgba(205,133,63,0.12); }
.v262-faq-item .v262-faq-a {
  padding: 0 14px 12px;
  color: var(--v262-muted);
  font-size: 1.3rem;
}

/* ---------- Testimonials ---------- */
.v262-testimonial {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-left: 3px solid var(--v262-pink);
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.v262-testimonial .v262-stars { color: var(--v262-gold); font-size: 1.2rem; margin-bottom: 4px; }
.v262-testimonial p { margin: 0 0 6px; font-size: 1.3rem; }
.v262-testimonial .v262-author { font-size: 1.15rem; color: var(--v262-muted); }

/* ---------- Payment methods ---------- */
.v262-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.v262-pay {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(205,133,63,0.2);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--v262-muted);
}
.v262-pay i { font-size: 1.8rem; color: var(--v262-gold); display: block; margin-bottom: 3px; }

/* ---------- Winners ---------- */
.v262-winner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(205,133,63,0.2);
  padding: 8px 10px;
  border-radius: 10px;
  margin-bottom: 6px;
}
.v262-winner .v262-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--v262-primary), var(--v262-pink));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1.2rem;
}
.v262-winner .v262-w-info { flex: 1; }
.v262-winner .v262-w-name { font-weight: 700; font-size: 1.25rem; }
.v262-winner .v262-w-game { font-size: 1.05rem; color: var(--v262-muted); }
.v262-winner .v262-w-amount { color: var(--v262-gold); font-weight: 800; font-size: 1.3rem; }

/* ---------- Stats ---------- */
.v262-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.v262-stat {
  background: linear-gradient(160deg, rgba(205,133,63,0.12), rgba(255,105,180,0.08));
  border: 1px solid rgba(205,133,63,0.22);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.v262-stat .v262-stat-num { font-size: 1.9rem; font-weight: 800; color: var(--v262-gold); display: block; }
.v262-stat .v262-stat-label { font-size: 1.1rem; color: var(--v262-muted); }

/* ---------- Steps ---------- */
.v262-step {
  display: flex; gap: 12px; margin-bottom: 12px;
  background: rgba(255,255,255,0.04);
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(205,133,63,0.18);
}
.v262-step-num {
  flex: 0 0 30px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v262-pink), var(--v262-primary));
  color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.v262-step h4 { margin: 0 0 4px; font-size: 1.35rem; }
.v262-step p { margin: 0; font-size: 1.2rem; color: var(--v262-muted); }

/* ---------- App download CTA ---------- */
.v262-app-cta {
  background: linear-gradient(135deg, rgba(205,133,63,0.18), rgba(255,105,180,0.14));
  border: 1px solid rgba(205,133,63,0.4);
  border-radius: var(--v262-radius);
  padding: 16px;
  text-align: center;
}
.v262-app-cta h3 { color: var(--v262-gold); margin-bottom: 6px; }
.v262-app-cta p { color: var(--v262-muted); margin-bottom: 12px; font-size: 1.3rem; }
.v262-app-buttons { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* ---------- Long-form SEO content ---------- */
.v262-prose {
  color: var(--v262-muted);
  font-size: 1.35rem;
  line-height: 1.65;
}
.v262-prose h2 { color: var(--v262-gold); margin-top: 18px; }
.v262-prose h3 { color: var(--v262-text); margin-top: 12px; }
.v262-prose p { margin-bottom: 10px; }
.v262-prose strong { color: var(--v262-text); }
.v262-prose a { color: var(--v262-primary); font-weight: 600; }
.v262-prose a:hover { color: var(--v262-pink); }
.v262-prose ul { padding-left: 18px; margin: 0 0 10px; }
.v262-prose li { margin-bottom: 4px; }

/* ---------- Footer ---------- */
.v262-footer {
  background: linear-gradient(180deg, #1C2833, #11181f);
  border-top: 1px solid rgba(205,133,63,0.3);
  padding: 24px 0 20px;
  margin-top: 24px;
}
.v262-footer .v262-footer-brand { font-size: 1.9rem; font-weight: 800; color: var(--v262-text); margin-bottom: 6px; }
.v262-footer .v262-footer-brand span { color: var(--v262-primary); }
.v262-footer p { color: var(--v262-muted); font-size: 1.2rem; line-height: 1.5; }
.v262-footer-links {
  display: flex; flex-wrap: wrap; gap: 6px 12px;
  margin: 12px 0;
}
.v262-footer-links a {
  color: var(--v262-muted);
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.v262-footer-links a:hover { color: var(--v262-pink); }
.v262-footer-promos { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.v262-footer-bottom {
  border-top: 1px dashed rgba(255,255,255,0.1);
  padding-top: 12px;
  color: var(--v262-grey);
  font-size: 1.1rem;
  text-align: center;
}

/* ---------- Bottom navigation ---------- */
.v262-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--v262-bottom-h);
  z-index: 1000;
  background: linear-gradient(180deg, rgba(36,52,71,0.98), rgba(28,40,51,0.98));
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(205,133,63,0.35);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.35);
}
.v262-bottom-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--v262-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  font-size: 1.05rem;
  text-decoration: none;
  position: relative;
  transition: color .18s ease, transform .18s ease;
}
.v262-bottom-btn .v262-bicon {
  font-size: 2.2rem;
  line-height: 1;
  transition: transform .18s ease, color .18s ease;
}
.v262-bottom-btn .v262-blabel { font-size: 1.05rem; }
.v262-bottom-btn:active { transform: scale(0.92); }
.v262-bottom-btn:hover { color: var(--v262-gold); }
.v262-bottom-btn:hover .v262-bicon { transform: translateY(-2px); }
.v262-bottom-btn.v262-current { color: var(--v262-pink); }
.v262-bottom-btn.v262-current .v262-bicon {
  color: var(--v262-gold);
  transform: translateY(-1px);
}
.v262-bottom-btn.v262-current::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--v262-pink), var(--v262-gold));
}

/* ---------- Reveal animation ---------- */
.v262-reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.v262-reveal.v262-visible { opacity: 1; transform: translateY(0); }

/* ---------- Mobile bottom padding ---------- */
@media (max-width: 768px) {
  main.v262-main { padding-bottom: calc(var(--v262-bottom-h) + 14px); }
}

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  .v262-bottom-nav { display: none; }
  .v262-container { max-width: 720px; }
  .v262-game-grid { grid-template-columns: repeat(6, 1fr); }
  .v262-feature-grid { grid-template-columns: repeat(4, 1fr); }
  .v262-pay-grid { grid-template-columns: repeat(8, 1fr); }
  .v262-stat-grid { grid-template-columns: repeat(4, 1fr); }
  .v262-slide img { height: 280px; }
}

/* ---------- Misc utility ---------- */
.v262-text-center { text-align: center; }
.v262-mt-8 { margin-top: 8px; }
.v262-mt-12 { margin-top: 12px; }
.v262-mt-16 { margin-top: 16px; }
.v262-mb-8 { margin-bottom: 8px; }
.v262-muted { color: var(--v262-muted); }
.v262-gold { color: var(--v262-gold); }
.v262-pink { color: var(--v262-pink); }
.v262-badge {
  display: inline-block;
  background: rgba(255,105,180,0.18);
  color: var(--v262-pink);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,105,180,0.4);
}
.v262-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205,133,63,0.45), transparent);
  margin: 16px 0;
}
