/* English comments only: sone 623 mobile-first foundation */
:root {
  font-size: 62.5%;
  --g14c-primary: #ff8000;
  --g14c-secondary: #ff6347;
  --g14c-accent: #ffeb3b;
  --g14c-silver: #c0c0c0;
  --g14c-bg: #1e1e1e;
  --g14c-bg-soft: #29221f;
  --g14c-bg-card: #2d2621;
  --g14c-text: #fff8df;
  --g14c-muted: #c9bdb2;
  --g14c-line: rgba(255, 235, 59, .22);
  --g14c-shadow: 0 1.8rem 4rem rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: radial-gradient(circle at top left, rgba(255,128,0,.28), transparent 32rem), var(--g14c-bg);
  color: var(--g14c-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5rem;
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }
main { padding-top: 7.2rem; }
body.g14c-lock { overflow: hidden; }

.g14c-page {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, #1e1e1e 0%, #241c1b 48%, #151313 100%);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 0 4rem rgba(0,0,0,.45);
}
.g14c-container { width: min(100% - 2.4rem, 40.6rem); margin-inline: auto; }
.g14c-wrapper { padding: 1.4rem 0; }
.g14c-grid { display: grid; gap: 1.2rem; }
.g14c-section { padding: 2rem 0; position: relative; }
.g14c-section-title { margin: 0 0 1rem; font-size: 2.2rem; line-height: 1.18; color: var(--g14c-accent); }
.g14c-section-kicker { margin: 0 0 .7rem; color: var(--g14c-primary); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: 1.15rem; }
.g14c-text { color: var(--g14c-text); line-height: 1.65; margin: .8rem 0; }
.g14c-muted { color: var(--g14c-muted); }
.g14c-highlight { color: var(--g14c-accent); font-weight: 900; }
.g14c-link { color: var(--g14c-accent); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(255,235,59,.45); }
.g14c-link:hover { color: #fff; }

.g14c-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 430px;
  background: rgba(30, 30, 30, .94);
  backdrop-filter: blur(1.4rem);
  border-bottom: .1rem solid var(--g14c-line);
}
.g14c-topbar { display: flex; align-items: center; justify-content: space-between; gap: .8rem; min-height: 6.4rem; padding: .8rem 1rem; }
.g14c-brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; min-width: 0; }
.g14c-logo { width: 3.2rem; height: 3.2rem; border-radius: 1rem; box-shadow: 0 0 1.8rem rgba(255,128,0,.45); }
.g14c-brand-text { display: grid; line-height: 1.05; }
.g14c-brand-name { font-size: 1.7rem; font-weight: 900; color: var(--g14c-accent); white-space: nowrap; }
.g14c-brand-sub { font-size: 1rem; color: var(--g14c-silver); }
.g14c-actions { display: flex; align-items: center; gap: .6rem; }
.g14c-btn {
  min-height: 4.4rem;
  border: 0;
  border-radius: 1.4rem;
  padding: .9rem 1.15rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-weight: 900;
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}
.g14c-btn:hover, .g14c-btn:focus { transform: translateY(-.1rem) scale(1.02); filter: brightness(1.08); outline: none; }
.g14c-btn-primary { background: linear-gradient(135deg, var(--g14c-primary), var(--g14c-secondary)); color: #190b00; box-shadow: 0 .9rem 2rem rgba(255,99,71,.32); }
.g14c-btn-ghost { background: rgba(255,255,255,.08); color: var(--g14c-text); border: .1rem solid rgba(255,255,255,.12); }
.g14c-btn-wide { width: 100%; }
.g14c-btn-small { min-height: 3.8rem; padding: .75rem .95rem; border-radius: 1.1rem; font-size: 1.3rem; }
.g14c-menu-button { width: 4.4rem; height: 4.4rem; padding: 0; background: rgba(255,235,59,.12); color: var(--g14c-accent); border: .1rem solid rgba(255,235,59,.28); }
.g14c-desktop-nav { display: none; }

.g14c-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.g14c-overlay.g14c-menu-open { opacity: 1; pointer-events: auto; }
.g14c-mobile-menu {
  position: fixed;
  top: 0;
  right: 50%;
  transform: translate(50%, -110%);
  z-index: 9999;
  width: min(100%, 430px);
  background: linear-gradient(180deg, #2d211b, #171313);
  border-bottom: .2rem solid var(--g14c-primary);
  box-shadow: var(--g14c-shadow);
  padding: 7rem 1.6rem 2rem;
  transition: transform .26s ease;
}
.g14c-mobile-menu.g14c-menu-open { transform: translate(50%, 0); }
.g14c-mobile-menu a { display: flex; align-items: center; gap: 1rem; min-height: 4.6rem; color: var(--g14c-text); text-decoration: none; border-bottom: .1rem solid rgba(255,255,255,.08); font-weight: 800; }
.g14c-mobile-menu a i, .g14c-mobile-menu a span.material-icons, .g14c-mobile-menu a ion-icon { color: var(--g14c-primary); font-size: 2.2rem; }

.g14c-hero { padding: 1.6rem 0 2rem; }
.g14c-hero-card { overflow: hidden; border-radius: 2.4rem; background: linear-gradient(145deg, rgba(255,128,0,.16), rgba(255,235,59,.07)); border: .1rem solid var(--g14c-line); box-shadow: var(--g14c-shadow); }
.g14c-hero-copy { padding: 1.6rem; }
.g14c-h1 { margin: 0 0 1rem; font-size: 2.85rem; line-height: 1.08; letter-spacing: -.04em; color: #fff; }
.g14c-hero-lead { margin: 0 0 1.2rem; color: var(--g14c-muted); line-height: 1.6; }
.g14c-hero-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
.g14c-badge { display: inline-flex; align-items: center; gap: .45rem; padding: .65rem .85rem; border-radius: 999px; background: rgba(255,235,59,.11); color: var(--g14c-accent); border: .1rem solid rgba(255,235,59,.22); font-weight: 800; font-size: 1.2rem; }

.g14c-slider { position: relative; min-height: 17rem; overflow: hidden; border-radius: 2rem; margin: 1rem; }
.g14c-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.04); transition: opacity .45s ease, transform .45s ease; cursor: pointer; }
.g14c-slide.g14c-active { opacity: 1; transform: scale(1); }
.g14c-slide img { width: 100%; height: 17rem; object-fit: cover; }
.g14c-slide-caption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; padding: .9rem 1rem; border-radius: 1.4rem; background: rgba(0,0,0,.58); color: #fff; font-weight: 900; }
.g14c-dots { display: flex; justify-content: center; gap: .7rem; padding: 0 0 1.2rem; }
.g14c-dot { width: .9rem; height: .9rem; border-radius: 999px; border: 0; background: rgba(255,255,255,.3); cursor: pointer; padding: 0; }
.g14c-dot.g14c-active { width: 2.2rem; background: var(--g14c-accent); }

.g14c-card { background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,128,0,.06)); border: .1rem solid rgba(255,255,255,.09); border-radius: 1.8rem; padding: 1.35rem; box-shadow: 0 1rem 2.8rem rgba(0,0,0,.22); }
.g14c-card-strong { border-color: rgba(255,128,0,.35); background: linear-gradient(145deg, rgba(255,128,0,.18), rgba(255,235,59,.08)); }
.g14c-card h3 { margin: 0 0 .7rem; color: var(--g14c-accent); font-size: 1.75rem; line-height: 1.22; }
.g14c-card p { margin: .6rem 0; line-height: 1.65; color: var(--g14c-muted); }
.g14c-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g14c-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g14c-stat { text-align: center; padding: 1.15rem .8rem; border-radius: 1.5rem; background: rgba(0,0,0,.2); border: .1rem solid rgba(255,235,59,.15); }
.g14c-stat strong { display: block; color: var(--g14c-accent); font-size: 2rem; }
.g14c-stat span { color: var(--g14c-muted); font-size: 1.15rem; }

.g14c-games-section { padding: 2rem 0; }
.g14c-category { margin-bottom: 1.8rem; }
.g14c-category-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .9rem; }
.g14c-category-title { margin: 0; font-size: 1.85rem; color: var(--g14c-accent); }
.g14c-category-count { color: var(--g14c-primary); font-weight: 900; font-size: 1.2rem; }
.g14c-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
.g14c-game { min-width: 0; text-decoration: none; text-align: center; border-radius: 1.3rem; padding: .7rem .45rem; background: rgba(255,255,255,.06); border: .1rem solid rgba(255,255,255,.08); transition: transform .18s ease, border-color .18s ease; }
.g14c-game:hover, .g14c-game:focus { transform: translateY(-.2rem); border-color: var(--g14c-primary); outline: none; }
.g14c-game img { width: 5.8rem; height: 5.8rem; margin: 0 auto .45rem; border-radius: 1.25rem; object-fit: cover; background: #111; }
.g14c-game span { display: block; color: var(--g14c-text); font-size: 1.05rem; font-weight: 800; line-height: 1.2; min-height: 2.5rem; }

.g14c-steps { counter-reset: g14cStep; display: grid; gap: 1rem; }
.g14c-step { position: relative; padding-left: 4.4rem; }
.g14c-step::before { counter-increment: g14cStep; content: counter(g14cStep); position: absolute; left: 0; top: .1rem; width: 3.2rem; height: 3.2rem; border-radius: 1rem; display: grid; place-items: center; background: var(--g14c-primary); color: #1e1e1e; font-weight: 900; }
.g14c-list { padding-left: 1.8rem; margin: .8rem 0; color: var(--g14c-muted); line-height: 1.7; }
.g14c-review { display: flex; gap: 1rem; align-items: flex-start; }
.g14c-avatar { flex: 0 0 4.2rem; width: 4.2rem; height: 4.2rem; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--g14c-primary), var(--g14c-accent)); color: #1e1e1e; font-weight: 900; }
.g14c-payments { display: flex; flex-wrap: wrap; gap: .8rem; }
.g14c-payment { padding: .8rem 1rem; border-radius: 1.2rem; background: rgba(255,255,255,.07); color: var(--g14c-text); font-weight: 800; border: .1rem solid rgba(255,255,255,.1); }
.g14c-winner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem; border-radius: 1.4rem; background: rgba(0,0,0,.18); }
.g14c-winner strong { color: var(--g14c-accent); }
.g14c-cta-strip { display: grid; gap: 1rem; padding: 1.5rem; border-radius: 2rem; background: linear-gradient(135deg, rgba(255,128,0,.28), rgba(255,99,71,.18)); border: .1rem solid rgba(255,235,59,.24); }
.g14c-faq details { border-bottom: .1rem solid rgba(255,255,255,.1); padding: .9rem 0; }
.g14c-faq summary { cursor: pointer; color: var(--g14c-accent); font-weight: 900; min-height: 4.4rem; display: flex; align-items: center; }
.g14c-faq p { color: var(--g14c-muted); line-height: 1.65; }

.g14c-footer { padding: 2.4rem 0 8.8rem; background: #141212; border-top: .1rem solid var(--g14c-line); }
.g14c-footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.g14c-footer p { color: var(--g14c-muted); line-height: 1.65; }
.g14c-footer-buttons { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 1.2rem 0; }
.g14c-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin: 1.4rem 0; }
.g14c-footer-links a { color: var(--g14c-silver); font-size: 1.25rem; text-decoration: none; padding: .8rem; border-radius: 1rem; background: rgba(255,255,255,.04); }
.g14c-partners { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.g14c-partner { font-size: 1.1rem; padding: .55rem .75rem; border-radius: 999px; background: rgba(255,235,59,.1); color: var(--g14c-accent); }
.g14c-copy { margin-top: 1.3rem; color: #8f8580; font-size: 1.2rem; }

.g14c-bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 430px;
  height: 6.2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #211713;
  border-top: .1rem solid rgba(255,235,59,.25);
  box-shadow: 0 -1rem 2.8rem rgba(0,0,0,.38);
}
.g14c-bottom-item {
  min-width: 6rem;
  min-height: 6rem;
  border: 0;
  background: transparent;
  color: var(--g14c-silver);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .16s ease, color .16s ease;
  position: relative;
}
.g14c-bottom-item i, .g14c-bottom-item span.material-icons, .g14c-bottom-item ion-icon { font-size: 2.35rem; line-height: 1; }
.g14c-bottom-item:hover, .g14c-bottom-item:focus { color: var(--g14c-accent); transform: scale(1.06); outline: none; }
.g14c-bottom-item.g14c-current { color: var(--g14c-accent); }
.g14c-bottom-item.g14c-current::before { content: ''; position: absolute; top: .35rem; width: 3.4rem; height: .28rem; border-radius: 999px; background: var(--g14c-primary); }
.g14c-nav-badge { position: absolute; top: .35rem; right: .75rem; min-width: 1.7rem; height: 1.7rem; display: grid; place-items: center; border-radius: 999px; background: var(--g14c-secondary); color: #fff; font-size: .95rem; }

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

@media (min-width: 769px) {
  body { background: #111; }
  .g14c-page { max-width: 1180px; }
  .g14c-header { max-width: 1180px; }
  .g14c-container { width: min(100% - 4rem, 1100px); }
  .g14c-desktop-nav { display: flex; gap: 1rem; align-items: center; }
  .g14c-desktop-nav a { color: var(--g14c-text); text-decoration: none; font-weight: 800; }
  .g14c-menu-button { display: none; }
  .g14c-bottom-nav { display: none; }
  .g14c-mobile-menu, .g14c-overlay { display: none; }
  .g14c-hero-card { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
  .g14c-game-grid { grid-template-columns: repeat(8, 1fr); }
  .g14c-footer { padding-bottom: 3rem; }
}
