
:root{
  --bg:#05070d;
  --panel:rgba(8,12,22,.78);
  --panel-strong:rgba(8,12,22,.92);
  --text:#f8f8ff;
  --muted:#b5bed5;
  --line:rgba(255,255,255,.12);
  --pink:#ff4fa3;
  --pink2:#ff75c2;
  --blue:#38c9ff;
  --yellow:#ffcf63;
  --shadow:0 24px 80px rgba(0,0,0,.46);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:
    radial-gradient(circle at 78% 4%,rgba(255,79,163,.14),transparent 22%),
    radial-gradient(circle at 16% 0%,rgba(56,201,255,.12),transparent 24%),
    linear-gradient(180deg,#080a14,#05070d 42%,#05070d);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button{font:inherit}
.shell{width:min(100% - 42px,1260px);margin:0 auto}
.nav{
  position:sticky;
  top:10px;
  z-index:30;
  width:min(100% - 42px,1260px);
  margin:10px auto 14px;
  padding:9px 16px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:14px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px;
  background:rgba(7,10,18,.76);
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
}
.brand{font-size:23px;font-weight:900;letter-spacing:-.06em}
.nav-links{display:flex;gap:20px;justify-content:center;color:#e0e7fa;font-size:14px;font-weight:800}
.nav-links a{opacity:.82;transition:.2s}
.nav-links a:hover{opacity:1}
.nav-cta{
  justify-self:end;
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--pink),var(--blue));
  color:#fff;
  font-size:14px;
  font-weight:900;
}
.hero{
  position:relative;
  min-height:690px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:34px;
  background:#0b0d17;
  box-shadow:var(--shadow);
}
.hero-bg{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center}
.hero-bg:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(5,7,13,.95) 0%,rgba(5,7,13,.76) 38%,rgba(5,7,13,.22) 68%,rgba(5,7,13,.74) 100%),
    linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.60));
}
.hero-inner{
  position:relative;
  z-index:2;
  min-height:690px;
  display:grid;
  grid-template-columns:1fr 390px;
  gap:30px;
  align-items:center;
  padding:38px;
}
.hero-copy{max-width:720px}
.gta-logo{
  width:min(100%,360px);
  margin-bottom:18px;
  filter:drop-shadow(0 18px 28px rgba(0,0,0,.32));
}
.eyebrow{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,207,99,.12);
  border:1px solid rgba(255,207,99,.34);
  color:#ffe39a;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.09em;
}
h1{
  margin:16px 0 14px;
  font-size:clamp(44px,6vw,82px);
  line-height:.96;
  letter-spacing:-.075em;
}
.hero-copy p{
  margin:0;
  color:#c2c9da;
  font-size:18px;
  line-height:1.65;
  max-width:670px;
}
.actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 24px;
  border-radius:18px;
  border:1px solid transparent;
  font-weight:900;
  transition:.2s ease;
}
.button:hover{transform:translateY(-1px)}
.button.primary{
  background:linear-gradient(90deg,var(--pink),var(--blue));
  color:#fff;
  box-shadow:0 18px 38px rgba(255,79,163,.22);
}
.button.ghost{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  color:#fff;
}
.release-card{
  padding:22px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(7,10,18,.76);
  backdrop-filter:blur(16px);
  box-shadow:var(--shadow);
}
.release-label{
  display:block;
  margin-bottom:6px;
  color:#9ca9c7;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.11em;
}
.release-date{
  margin-bottom:18px;
  font-size:30px;
  font-weight:900;
  letter-spacing:-.05em;
}
.countdown{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.count-unit{
  padding:14px 10px;
  border-radius:18px;
  text-align:center;
  background:linear-gradient(180deg,rgba(255,79,163,.12),rgba(56,201,255,.05));
  border:1px solid rgba(255,255,255,.10);
}
.count-unit strong{
  display:block;
  font-size:36px;
  line-height:1;
  letter-spacing:-.06em;
}
.count-unit span{
  display:block;
  margin-top:7px;
  color:#c2c9da;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.section{
  margin-top:16px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:30px;
  background:var(--panel);
  backdrop-filter:blur(16px);
  box-shadow:var(--shadow);
}
.section-title{margin-bottom:16px}
.section-title span{
  display:inline-block;
  margin-bottom:7px;
  color:#ff9bd0;
  font-size:12px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.section h2{
  margin:0;
  font-size:clamp(32px,4.5vw,56px);
  line-height:1;
  letter-spacing:-.065em;
}
.section p{color:var(--muted);line-height:1.68}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.card{
  padding:20px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.042);
}
.card h3{margin:0 0 8px;font-size:22px;letter-spacing:-.045em}
.card p{margin:0}
.price-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:16px}
.price-card{
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
}
.price-card span{
  display:block;
  color:#aeb9d1;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.price-card strong{
  display:block;
  margin-top:8px;
  font-size:34px;
  letter-spacing:-.06em;
}
.video{
  overflow:hidden;
  aspect-ratio:16/9;
  border-radius:24px;
  border:1px solid var(--line);
  background:#000;
}
.video iframe{width:100%;height:100%;border:0}
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.gallery img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid var(--line);
  background:#101524;
}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.step{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.042);
  border:1px solid rgba(255,255,255,.09);
}
.step b{
  display:inline-flex;
  width:34px;
  height:34px;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--pink),var(--blue));
}
.step h3{margin:0 0 6px;font-size:18px}
.step p{margin:0;font-size:14px}
.faq details{
  margin-bottom:10px;
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.042);
  border:1px solid rgba(255,255,255,.09);
}
.faq summary{cursor:pointer;font-weight:900}
.faq p{margin:12px 0 0}
.final-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.final-cta p{max-width:700px;margin:8px 0 0}
.disclaimer{
  margin:16px 0 30px;
  color:#7f8aa2;
  font-size:12px;
  line-height:1.65;
  text-align:center;
}
@media(max-width:1000px){
  .hero-inner{grid-template-columns:1fr}
  .cards,.steps{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:760px){
  .shell{width:min(100% - 16px,1260px)}
  .nav{width:calc(100% - 24px);display:flex;justify-content:space-between;padding:10px 14px}
  .nav-links{display:none}
  .hero{min-height:auto;border-radius:24px}
  .hero-inner{min-height:auto;padding:20px}
  .hero-bg img{object-position:62% center}
  .gta-logo{width:230px}
  h1{font-size:38px}
  .hero-copy p{font-size:16px}
  .actions{flex-direction:column}
  .button{width:100%}
  .section{padding:20px;border-radius:24px}
  .cards,.price-grid,.steps,.gallery{grid-template-columns:1fr}
  .gallery img{height:auto}
  .final-cta{flex-direction:column;align-items:flex-start}
}


/* v2 — visual alignment with brazka.shop */
:root{
  --brand-blue:#22b8ff;
  --brand-blue2:#5e6bff;
  --brand-bg:#05070d;
  --brand-panel:#0b0f18;
  --brand-text:#f5f7fd;
  --brand-muted:#a8b4cb;
}

body{
  background:
    radial-gradient(circle at top,#0c1433 0,#070a14 38%,#05070d 100%) !important;
}

.nav{
  grid-template-columns:1fr auto 1fr;
  background:rgba(7,10,18,.72) !important;
  border-color:rgba(255,255,255,.08) !important;
  border-radius:20px !important;
  box-shadow:0 18px 60px rgba(0,0,0,.35) !important;
}

.brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.brand img{
  width:146px;
  height:auto;
}

.nav-cta{
  background:rgba(255,255,255,.04) !important;
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.hero{
  border-radius:30px !important;
  border-color:rgba(255,255,255,.09) !important;
  box-shadow:0 18px 60px rgba(0,0,0,.35) !important;
}

.hero-bg:after{
  background:
    linear-gradient(90deg,rgba(5,7,13,.96) 0%,rgba(5,7,13,.80) 40%,rgba(5,7,13,.26) 70%,rgba(5,7,13,.76) 100%),
    linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.62)) !important;
}

.eyebrow{
  background:rgba(94,107,255,.16) !important;
  border-color:rgba(94,107,255,.30) !important;
  color:#dce3ff !important;
}

.button.primary{
  background:linear-gradient(90deg,var(--brand-blue2),var(--brand-blue)) !important;
  box-shadow:0 16px 34px rgba(24,168,255,.22) !important;
}

.button.ghost{
  background:rgba(255,255,255,.04) !important;
  border-color:rgba(255,255,255,.11) !important;
}

.release-card,
.section{
  background:linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.025)) !important;
  border-color:rgba(255,255,255,.09) !important;
  box-shadow:0 18px 60px rgba(0,0,0,.35) !important;
}

.count-unit{
  background:linear-gradient(145deg,rgba(24,168,255,.12),rgba(255,255,255,.04)) !important;
  border-color:rgba(24,168,255,.20) !important;
}

.section-title span{
  color:#8ea1c0 !important;
}

.card,
.step{
  background:rgba(255,255,255,.04) !important;
  border-color:rgba(255,255,255,.09) !important;
}

.price-card{
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.025)) !important;
  border-color:rgba(255,255,255,.09) !important;
}

.step b{
  background:linear-gradient(90deg,var(--brand-blue2),var(--brand-blue)) !important;
}

.hero-trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hero-trust span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.09);
  color:#d6e3ff;
  font-size:13px;
  font-weight:700;
}

.final-cta{
  display:grid !important;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:22px;
  background:
    radial-gradient(circle at top right,rgba(24,168,255,.22),transparent 32%),
    linear-gradient(180deg,rgba(15,19,31,.94),rgba(11,15,24,.88)) !important;
}

.final-cta-logo img{
  width:150px;
  height:auto;
}

.site-return{
  display:flex;
  justify-content:center;
  margin:18px 0 0;
}

.site-return a{
  color:#9aa9c5;
  font-size:13px;
  font-weight:800;
  opacity:.9;
}

.site-return a:hover{
  color:#fff;
}

@media(max-width:760px){
  .brand img{
    width:128px;
  }

  .final-cta{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
  }

  .final-cta-logo{
    width:100%;
    display:flex;
    justify-content:center;
  }

  .final-cta-logo img{
    width:170px;
  }
}


/* v3 — compact sales landing */
.hero{
  min-height:620px !important;
}

.hero-inner{
  min-height:620px !important;
}

.compact-status{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:14px;
}

.status-box,
.region-box{
  padding:22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.04);
}

.status-box h3,
.region-box h3{
  margin:0 0 8px;
  font-size:24px;
  letter-spacing:-.045em;
}

.status-box p,
.region-box p{
  margin:0;
}

.region-prices{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:14px;
}

.region-price{
  padding:16px;
  border-radius:18px;
  background:linear-gradient(145deg,rgba(24,168,255,.10),rgba(255,255,255,.035));
  border:1px solid rgba(24,168,255,.16);
}

.region-price span{
  display:block;
  color:#9fb0ce;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.09em;
}

.region-price strong{
  display:block;
  margin-top:7px;
  font-size:22px;
  letter-spacing:-.04em;
}

.quick-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.quick-step{
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.09);
}

.quick-step b{
  display:inline-flex;
  width:34px;
  height:34px;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  border-radius:12px;
  background:linear-gradient(90deg,var(--brand-blue2),var(--brand-blue));
}

.quick-step h3{
  margin:0 0 6px;
  font-size:19px;
  letter-spacing:-.04em;
}

.quick-step p{
  margin:0;
  font-size:14px;
}

.trailer-link{
  display:inline-flex;
  margin-top:16px;
  color:#dce6ff;
  font-size:14px;
  font-weight:900;
  opacity:.9;
}

.trailer-link:hover{
  color:#fff;
}

.compact-faq details{
  margin-bottom:8px;
}

@media(max-width:900px){
  .compact-status,
  .quick-steps{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .hero{
    min-height:auto !important;
  }

  .hero-inner{
    min-height:auto !important;
  }

  .region-prices{
    grid-template-columns:1fr;
  }
}


/* v4 — cover card added for future PS Store cover */
.gta-cover-card{
  margin:-4px 0 18px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 48px rgba(0,0,0,.34);
  background:#0b0f18;
}

.gta-cover-card img{
  width:100%;
  height:auto;
  display:block;
}

.release-card{
  align-self:center;
}

@media(max-width:1000px){
  .gta-cover-card{
    width:min(100%,320px);
  }
}

@media(max-width:760px){
  .gta-cover-card{
    width:min(100%,250px);
    margin-left:auto;
    margin-right:auto;
  }
}


/* v5 corrections: removed cover, extra button, FAQ */
.release-card{
  max-width:390px;
  margin-left:auto;
}

.hero-copy .actions{
  margin-bottom:0;
}

@media(max-width:1000px){
  .release-card{
    max-width:100%;
    margin-left:0;
  }
}


/* v6 — mobile polish and inline BRAZKA logo in buy title */
.buy-title{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}

.inline-brand{
  display:inline-flex;
  align-items:center;
  transform:translateY(2px);
}

.inline-brand img{
  width:170px;
  height:auto;
  display:block;
}

@media(max-width:760px){
  .hero-copy .gta-logo{
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .hero-copy .eyebrow{
    display:flex !important;
    width:max-content;
    max-width:100%;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center;
    justify-content:center;
  }

  .buy-title{
    display:block;
  }

  .inline-brand{
    display:flex;
    margin-top:8px;
  }

  .inline-brand img{
    width:150px;
  }
}


/* v7 — buy title reverted to text BRAZKA */
.buy-title{
  display:block;
}


/* v2 — official GTA imagery + timer palette */
.gta-poster-logo{
  width:min(100%,300px) !important;
  max-height:430px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 22px 58px rgba(0,0,0,.35);
}

.count-unit{
  background:linear-gradient(180deg, rgba(255,91,168,.20), rgba(56,201,255,.08)) !important;
  border-color:rgba(255,91,168,.32) !important;
}

.count-unit strong{
  color:#ffd2e8 !important;
  text-shadow:0 0 18px rgba(255,91,168,.24);
}

.release-card{
  border-color:rgba(255,91,168,.20) !important;
}

@media(max-width:760px){
  .gta-poster-logo{
    width:min(100%,210px) !important;
    max-height:300px;
    margin-left:auto !important;
    margin-right:auto !important;
    border-radius:18px;
  }
}
