:root {
  font-size: 62.5%;
  --gfc7-bg: #161616;
  --gfc7-panel: #23201c;
  --gfc7-panel-soft: #312819;
  --gfc7-primary: #ffbf00;
  --gfc7-secondary: #ff8000;
  --gfc7-cream: #faf0e6;
  --gfc7-muted: #f5deb3;
  --gfc7-text: #fff8ec;
  --gfc7-dark: #3a3a3a;
  --gfc7-line: rgba(255, 191, 0, .28);
  --gfc7-shadow: 0 1.6rem 4rem rgba(0, 0, 0, .38);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(255,128,0,.18), transparent 32rem), linear-gradient(160deg, #111 0%, var(--gfc7-bg) 44%, #2a2115 100%);
  color: var(--gfc7-text);
  line-height: 1.5rem;
  overflow-x: hidden;
}
a { color: var(--gfc7-primary); text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
.gfc7-page {
  width: min(100%, 43rem);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(58,58,58,.84), rgba(22,22,22,.94));
  box-shadow: var(--gfc7-shadow);
}
.gfc7-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 43rem);
  z-index: 1000;
  background: rgba(22, 22, 22, .94);
  border-bottom: .1rem solid var(--gfc7-line);
  backdrop-filter: blur(1.4rem);
}
.gfc7-topbar {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .8rem 1rem;
}
.gfc7-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
  flex: 1;
}
.gfc7-logo {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  border: .1rem solid var(--gfc7-primary);
  background: var(--gfc7-panel);
}
.gfc7-brand-name {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--gfc7-cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gfc7-header-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.gfc7-btn {
  border: 0;
  min-height: 4.4rem;
  min-width: 4.4rem;
  border-radius: 1.4rem;
  padding: 0 1.2rem;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: pointer;
  color: #19130a;
  background: linear-gradient(135deg, var(--gfc7-primary), var(--gfc7-secondary));
  box-shadow: 0 .8rem 1.8rem rgba(255,128,0,.25);
  transition: transform .18s ease, filter .18s ease, background .18s ease;
}
.gfc7-btn:hover, .gfc7-btn:focus { transform: translateY(-.1rem) scale(1.02); filter: brightness(1.08); }
.gfc7-btn-soft { color: var(--gfc7-cream); background: rgba(255,255,255,.08); border: .1rem solid var(--gfc7-line); box-shadow: none; }
.gfc7-menu-button { padding: 0; color: var(--gfc7-primary); background: rgba(255,191,0,.1); }
.gfc7-menu {
  display: none;
  position: absolute;
  top: 5.7rem;
  left: 1rem;
  right: 1rem;
  z-index: 9999;
  padding: 1rem;
  border-radius: 1.8rem;
  background: #211b13;
  border: .1rem solid var(--gfc7-line);
  box-shadow: 0 2rem 5rem rgba(0,0,0,.55);
}
.gfc7-menu-open { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.gfc7-menu a {
  min-height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.2rem;
  color: var(--gfc7-cream);
  background: rgba(255,255,255,.06);
  font-size: 1.18rem;
  font-weight: 800;
  text-align: center;
}
.gfc7-main { padding: 7.4rem 1.1rem 2.4rem; }
.gfc7-hero { position: relative; overflow: hidden; border-radius: 2.4rem; border: .1rem solid var(--gfc7-line); background: var(--gfc7-panel); }
.gfc7-slide { display: none; position: relative; cursor: pointer; }
.gfc7-slide-active { display: block; animation: gfc7fade .35s ease; }
.gfc7-slide img { width: 100%; min-height: 15.4rem; object-fit: cover; }
.gfc7-slide-caption { position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem; padding: 1rem; border-radius: 1.4rem; background: rgba(0,0,0,.58); }
.gfc7-slide-caption strong { display: block; font-size: 1.8rem; color: var(--gfc7-primary); }
.gfc7-slide-caption span { font-size: 1.2rem; color: var(--gfc7-cream); }
.gfc7-dots { position: absolute; top: 1rem; right: 1rem; display: flex; gap: .5rem; }
.gfc7-dot { width: .8rem; height: .8rem; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); }
.gfc7-dot-active { background: var(--gfc7-primary); transform: scale(1.25); }
.gfc7-title { font-size: 2.7rem; line-height: 3.1rem; margin: 1.8rem 0 1rem; letter-spacing: -.07em; color: var(--gfc7-cream); }
.gfc7-lead { font-size: 1.42rem; line-height: 2.2rem; color: var(--gfc7-muted); margin: 0 0 1.4rem; }
.gfc7-section { margin: 1.6rem 0; padding: 1.4rem; border-radius: 2rem; background: rgba(35,32,28,.92); border: .1rem solid rgba(255,191,0,.18); }
.gfc7-section-alt { background: linear-gradient(145deg, rgba(255,128,0,.12), rgba(35,32,28,.95)); }
.gfc7-section h2 { margin: 0 0 1rem; font-size: 2rem; line-height: 2.5rem; color: var(--gfc7-primary); }
.gfc7-section h3 { margin: 1.1rem 0 .6rem; font-size: 1.55rem; color: var(--gfc7-cream); }
.gfc7-section p, .gfc7-section li { font-size: 1.35rem; line-height: 2.12rem; color: var(--gfc7-muted); }
.gfc7-link { font-weight: 900; color: var(--gfc7-primary); text-decoration: underline; text-decoration-thickness: .12rem; }
.gfc7-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; }
.gfc7-cta-text { display: inline-flex; align-items: center; gap: .4rem; min-height: 4.4rem; font-size: 1.32rem; font-weight: 900; color: var(--gfc7-primary); cursor: pointer; }
.gfc7-pill-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.gfc7-pill { padding: 1rem; border-radius: 1.4rem; background: rgba(255,255,255,.06); border: .1rem solid rgba(255,255,255,.08); }
.gfc7-pill b { display: block; font-size: 1.45rem; color: var(--gfc7-cream); }
.gfc7-pill span { font-size: 1.12rem; color: var(--gfc7-muted); }
.gfc7-game-category { margin: 1.8rem 0; }
.gfc7-category-title { display: flex; align-items: center; justify-content: space-between; margin: 0 0 .9rem; }
.gfc7-category-title h2 { margin: 0; font-size: 1.8rem; color: var(--gfc7-primary); }
.gfc7-category-title span { font-size: 1.05rem; color: var(--gfc7-muted); }
.gfc7-game-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gfc7-game-card { min-width: 0; padding: .55rem; border-radius: 1.3rem; background: rgba(255,255,255,.06); border: .1rem solid rgba(255,191,0,.15); text-align: center; cursor: pointer; transition: transform .18s ease, border-color .18s ease; }
.gfc7-game-card:hover { transform: translateY(-.2rem); border-color: var(--gfc7-primary); }
.gfc7-game-card img { width: 100%; aspect-ratio: 1/1; border-radius: 1rem; object-fit: cover; }
.gfc7-game-card span { display: block; margin-top: .45rem; min-height: 2.6rem; color: var(--gfc7-cream); font-size: 1.05rem; line-height: 1.3rem; font-weight: 800; }
.gfc7-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1rem 0; }
.gfc7-stat { padding: 1rem .6rem; border-radius: 1.4rem; background: #2d2417; text-align: center; border: .1rem solid var(--gfc7-line); }
.gfc7-stat strong { display: block; font-size: 1.7rem; color: var(--gfc7-primary); }
.gfc7-stat span { font-size: 1.05rem; color: var(--gfc7-muted); }
.gfc7-review { padding: 1rem; border-left: .3rem solid var(--gfc7-secondary); background: rgba(255,255,255,.05); border-radius: 1.2rem; margin: .8rem 0; }
.gfc7-review b { color: var(--gfc7-cream); font-size: 1.25rem; }
.gfc7-payment { display: flex; flex-wrap: wrap; gap: .7rem; }
.gfc7-payment span { padding: .8rem 1rem; border-radius: 99rem; background: rgba(255,191,0,.12); color: var(--gfc7-cream); font-weight: 900; font-size: 1.15rem; }
.gfc7-footer { padding: 1.6rem 1.1rem 8.6rem; background: #15120f; border-top: .1rem solid var(--gfc7-line); }
.gfc7-footer p { margin: .5rem 0; color: var(--gfc7-muted); font-size: 1.22rem; line-height: 1.9rem; }
.gfc7-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin: 1rem 0; }
.gfc7-footer-links a { color: var(--gfc7-cream); background: rgba(255,255,255,.06); border-radius: 1.1rem; padding: .9rem; font-size: 1.12rem; text-align: center; font-weight: 800; }
.gfc7-footer-cta { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin: 1rem 0; }
.gfc7-footer-logo { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.gfc7-footer-logo img { width: 3.4rem; height: 3.4rem; border-radius: 1rem; }
.gfc7-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 43rem);
  height: 6.2rem;
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #1e170e;
  border-top: .1rem solid var(--gfc7-line);
  box-shadow: 0 -1rem 2.5rem rgba(0,0,0,.36);
}
.gfc7-bottom-item {
  min-width: 6rem;
  min-height: 6rem;
  border: 0;
  background: transparent;
  color: var(--gfc7-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease;
}
.gfc7-bottom-item i, .gfc7-bottom-item ion-icon, .gfc7-bottom-item .material-icons, .gfc7-bottom-item .ti { font-size: 2.3rem; line-height: 2.4rem; }
.gfc7-bottom-item:hover, .gfc7-bottom-active { color: var(--gfc7-primary); transform: translateY(-.25rem) scale(1.04); }
.gfc7-badge { position: absolute; margin-left: 2.6rem; margin-top: -3.6rem; min-width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--gfc7-secondary); color: white; font-size: .95rem; }
.gfc7-steps { counter-reset: gfc7step; list-style: none; padding: 0; }
.gfc7-steps li { counter-increment: gfc7step; position: relative; padding-left: 3.4rem; margin: 1rem 0; }
.gfc7-steps li::before { content: counter(gfc7step); position: absolute; left: 0; top: .2rem; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--gfc7-primary); color: #1b1409; display: grid; place-items: center; font-weight: 900; }
.gfc7-alert { padding: 1.1rem; border-radius: 1.4rem; background: rgba(255,128,0,.13); border: .1rem solid rgba(255,128,0,.35); }
@keyframes gfc7fade { from { opacity: .45; transform: scale(1.01); } to { opacity: 1; transform: scale(1); } }
@media (min-width: 769px) {
  .gfc7-bottom-nav { display: none; }
  .gfc7-footer { padding-bottom: 2rem; }
  .gfc7-page, .gfc7-header { border-left: .1rem solid rgba(255,255,255,.08); border-right: .1rem solid rgba(255,255,255,.08); }
}
@media (max-width: 768px) {
  main { padding-bottom: 8rem; }
}
@media (max-width: 360px) {
  .gfc7-btn { padding: 0 .8rem; font-size: 1.08rem; }
  .gfc7-game-grid { gap: .6rem; }
  .gfc7-game-card span { font-size: .98rem; }
  .gfc7-title { font-size: 2.35rem; line-height: 2.8rem; }
}
