/* ============================================================
 * 6622.click - layout stylesheet (gc0e- prefix)
 * Mobile-first, max wrapper width 430px.
 * Palette: #FF91A4 (pink accent) | #0A0A0A (dark bg)
 *          #BAE1FF (cool light) | #FFDFBA (peach) | #999999 (muted)
 * ============================================================ */

:root {
  --gc0e-primary: #FF91A4;
  --gc0e-primary-dark: #e57a8d;
  --gc0e-bg: #0A0A0A;
  --gc0e-bg-soft: #151515;
  --gc0e-bg-card: #1c1c1c;
  --gc0e-text: #FFFFFF;
  --gc0e-text-muted: #999999;
  --gc0e-cool: #BAE1FF;
  --gc0e-peach: #FFDFBA;
  --gc0e-border: rgba(255, 255, 255, 0.08);
  --gc0e-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  --gc0e-radius: 14px;
}

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

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

body {
  margin: 0;
  padding: 0;
  font-family: "Be Vietnam Pro", "Segoe UI", Roboto, system-ui, sans-serif;
  background-color: var(--gc0e-bg);
  color: var(--gc0e-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(--gc0e-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gc0e-peach);
}

/* ---------- Layout containers ---------- */
.gc0e-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  background-color: var(--gc0e-bg);
}

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

main.gc0e-main {
  padding-top: 6rem;
  padding-bottom: 8.5rem; /* clear fixed bottom nav */
}

/* ---------- Header ---------- */
.gc0e-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,10,10,0.98), rgba(10,10,10,0.88));
  border-bottom: 1px solid var(--gc0e-border);
  backdrop-filter: blur(8px);
}

.gc0e-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  gap: 0.6rem;
}

.gc0e-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
}

.gc0e-brand img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.6rem;
}

.gc0e-brand-name {
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--gc0e-text);
  white-space: nowrap;
}

.gc0e-brand-name span {
  color: var(--gc0e-primary);
}

.gc0e-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gc0e-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
  min-height: 3.6rem;
  line-height: 1;
}

.gc0e-btn:active {
  transform: scale(0.94);
}

.gc0e-btn-primary {
  background: linear-gradient(135deg, var(--gc0e-primary), #ff6f86);
  color: #1a0408;
  box-shadow: 0 4px 14px rgba(255, 145, 164, 0.35);
}

.gc0e-btn-ghost {
  background: transparent;
  color: var(--gc0e-text);
  border: 1px solid var(--gc0e-border);
}

.gc0e-btn-block {
  width: 100%;
  padding: 1.1rem 1rem;
  font-size: 1.5rem;
}

.gc0e-menu-toggle {
  background: transparent;
  border: 1px solid var(--gc0e-border);
  color: var(--gc0e-text);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.7rem;
}

/* ---------- Mobile slide-down menu ---------- */
.gc0e-mobile-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  width: 100%;
  max-width: 430px;
  background: var(--gc0e-bg-soft);
  border-bottom-left-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
  padding: 6rem 1.4rem 1.6rem;
  z-index: 9999;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 3px solid var(--gc0e-primary);
}

.gc0e-mobile-menu.gc0e-menu-open {
  transform: translate(-50%, 0);
}

.gc0e-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.gc0e-menu-backdrop.gc0e-backdrop-show {
  opacity: 1;
  visibility: visible;
}

.gc0e-menu-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.05rem 0.4rem;
  font-size: 1.4rem;
  color: var(--gc0e-text);
  border-bottom: 1px solid var(--gc0e-border);
}

.gc0e-menu-link i,
.gc0e-menu-link span.material-icons-outlined {
  color: var(--gc0e-primary);
  font-size: 1.8rem;
  width: 2rem;
  text-align: center;
}

/* ---------- Carousel ---------- */
.gc0e-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--gc0e-radius);
  overflow: hidden;
  margin: 1rem 0 1.4rem;
  box-shadow: var(--gc0e-shadow);
}

.gc0e-slide {
  position: relative;
  display: none;
  cursor: pointer;
}

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

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

.gc0e-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 1.2rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.85));
  font-weight: 700;
  font-size: 1.4rem;
}

.gc0e-dots {
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  z-index: 4;
}

.gc0e-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
}

.gc0e-dot.gc0e-dot-active {
  background: var(--gc0e-primary);
  width: 1.6rem;
  border-radius: 999px;
}

/* ---------- Sections ---------- */
.gc0e-section {
  margin: 2rem 0;
}

.gc0e-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.6rem;
}

.gc0e-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.gc0e-section-title i {
  color: var(--gc0e-primary);
}

.gc0e-section-title .accent {
  color: var(--gc0e-primary);
}

.gc0e-section-sub {
  color: var(--gc0e-text-muted);
  font-size: 1.25rem;
  margin: 0.3rem 0 0;
}

.gc0e-h1 {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0.6rem 0 0.4rem;
}

.gc0e-h1 .accent,
.gc0e-h2 .accent {
  color: var(--gc0e-primary);
}

.gc0e-h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 1.6rem 0 0.8rem;
}

.gc0e-h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gc0e-peach);
  margin: 1.2rem 0 0.5rem;
}

.gc0e-lead {
  color: var(--gc0e-text-muted);
  font-size: 1.3rem;
  margin: 0 0 0.6rem;
}

/* ---------- Game grid ---------- */
.gc0e-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.gc0e-game-card {
  background: var(--gc0e-bg-card);
  border: 1px solid var(--gc0e-border);
  border-radius: 1rem;
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease;
  overflow: hidden;
}

.gc0e-game-card:active {
  transform: scale(0.95);
  border-color: var(--gc0e-primary);
}

.gc0e-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.7rem;
}

.gc0e-game-name {
  font-size: 1.1rem;
  color: var(--gc0e-text);
  margin-top: 0.4rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6rem;
}

.gc0e-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 145, 164, 0.15);
  color: var(--gc0e-primary);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- Cards / features ---------- */
.gc0e-card {
  background: var(--gc0e-bg-card);
  border: 1px solid var(--gc0e-border);
  border-radius: var(--gc0e-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.gc0e-feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gc0e-border);
}

.gc0e-feature-row:last-child {
  border-bottom: none;
}

.gc0e-feature-icon {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(186, 225, 255, 0.12);
  color: var(--gc0e-cool);
  font-size: 1.8rem;
}

.gc0e-feature-title {
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 0.2rem;
}

.gc0e-feature-desc {
  font-size: 1.2rem;
  color: var(--gc0e-text-muted);
  margin: 0;
}

/* ---------- Promo text link ---------- */
.gc0e-text-link {
  color: var(--gc0e-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Stats ---------- */
.gc0e-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.gc0e-stat {
  background: var(--gc0e-bg-card);
  border-radius: 1rem;
  padding: 0.9rem;
  text-align: center;
  border: 1px solid var(--gc0e-border);
}

.gc0e-stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gc0e-primary);
}

.gc0e-stat-label {
  font-size: 1.1rem;
  color: var(--gc0e-text-muted);
  margin-top: 0.2rem;
}

/* ---------- Testimonials ---------- */
.gc0e-testimonial {
  background: var(--gc0e-bg-card);
  border-left: 3px solid var(--gc0e-primary);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  margin-bottom: 0.7rem;
}

.gc0e-testimonial p {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.gc0e-testimonial .author {
  font-size: 1.05rem;
  color: var(--gc0e-peach);
  font-weight: 700;
}

/* ---------- Payment chips ---------- */
.gc0e-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gc0e-chip {
  background: var(--gc0e-bg-card);
  border: 1px solid var(--gc0e-border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gc0e-text);
}

/* ---------- FAQ ---------- */
.gc0e-faq-item {
  border-bottom: 1px solid var(--gc0e-border);
}

.gc0e-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--gc0e-text);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.gc0e-faq-q i {
  color: var(--gc0e-primary);
  transition: transform 0.2s ease;
}

.gc0e-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--gc0e-text-muted);
  font-size: 1.2rem;
}

.gc0e-answer.gc0e-answer-open {
  max-height: 600px;
  padding-bottom: 0.9rem;
}

/* ---------- CTA banner ---------- */
.gc0e-cta {
  background: linear-gradient(135deg, var(--gc0e-primary), #ff6f86);
  color: #1a0408;
  border-radius: var(--gc0e-radius);
  padding: 1.4rem;
  text-align: center;
  margin: 1.4rem 0;
}

.gc0e-cta h3 {
  color: #1a0408;
  margin: 0 0 0.4rem;
}

.gc0e-cta p {
  margin: 0 0 0.9rem;
  font-size: 1.25rem;
}

/* ---------- Footer ---------- */
.gc0e-footer {
  background: var(--gc0e-bg-soft);
  border-top: 1px solid var(--gc0e-border);
  padding: 2rem 1.4rem 7rem;
  margin-top: 2rem;
}

.gc0e-footer-brand {
  color: var(--gc0e-text-muted);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.gc0e-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0.6rem 0 1rem;
}

.gc0e-footer-links a {
  color: var(--gc0e-cool);
  font-size: 1.15rem;
}

.gc0e-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1rem;
}

.gc0e-footer-promo .gc0e-btn {
  flex: 1 1 auto;
}

.gc0e-copyright {
  font-size: 1.1rem;
  color: var(--gc0e-text-muted);
  border-top: 1px solid var(--gc0e-border);
  padding-top: 1rem;
}

/* ---------- Bottom nav ---------- */
.gc0e-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 6rem;
  background: rgba(15, 15, 15, 0.98);
  border-top: 1px solid var(--gc0e-border);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.gc0e-bottom-nav-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--gc0e-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.4rem 0.2rem;
  cursor: pointer;
  min-width: 6rem;
  min-height: 6rem;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.15s ease;
}

.gc0e-bottom-nav-btn:active {
  transform: scale(0.9);
}

.gc0e-bottom-nav-btn i,
.gc0e-bottom-nav-btn .material-icons-outlined {
  font-size: 2.2rem;
}

.gc0e-bottom-nav-btn .gc0e-nav-label {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.gc0e-bottom-nav-btn.gc0e-nav-current,
.gc0e-bottom-nav-btn.is-active {
  color: var(--gc0e-primary);
}

.gc0e-bottom-nav-btn .gc0e-badge {
  position: absolute;
  transform: translate(1.1rem, -1.1rem);
  background: var(--gc0e-primary);
  color: #1a0408;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0 0.4rem;
  min-width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
}

/* ---------- Utilities ---------- */
.gc0e-text-center { text-align: center; }
.gc0e-text-muted { color: var(--gc0e-text-muted); }
.gc0e-mt-1 { margin-top: 0.6rem; }
.gc0e-mt-2 { margin-top: 1.2rem; }
.gc0e-hidden { display: none !important; }
.gc0e-divider {
  height: 1px;
  background: var(--gc0e-border);
  margin: 1.4rem 0;
}

/* ---------- Desktop: hide bottom nav, widen wrapper ---------- */
@media (min-width: 769px) {
  .gc0e-bottom-nav { display: none; }
  main.gc0e-main { padding-bottom: 3rem; }
  .gc0e-footer { padding-bottom: 2rem; }
}

@media (max-width: 768px) {
  main.gc0e-main { padding-bottom: 8.5rem; }
}
