:root {
    --bg-color: #0d0d0d;
    --card-bg: #151515;
    --card-bg-hover: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #909090;
    --accent-gradient: linear-gradient(92deg, #FF0055 0%, #FF264D 25%, #FF8800 100%);
    --accent-gradient-hover: linear-gradient(92deg, #ff1a66 0%, #ff4060 25%, #ffa333 100%);
    --accent-color: #FF264D;
    --border-soft: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 136, 0, 0.3);
    --glass-bg: rgba(20, 20, 20, 0.95);
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    background: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

main,
section {
    max-width: 100vw;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    font: inherit;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-soft);
}

header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-soft);
}

.header-content,
.header-actions {
    display: flex;
    align-items: center;
}

.header-content {
    justify-content: space-between;
}

.container.header-content {
    width: min(1200px, calc(100% - 40px));
}

.logo img {
    display: block;
    height: 25px;
}

.header-actions {
    gap: 14px;
}

.my-purchases-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(#111, #111) padding-box, linear-gradient(to right, #FF3D67, #FF8A00) border-box;
    border: 1.5px solid transparent;
}

.hero {
    position: relative;
    min-height: min(860px, 100svh);
    padding: 128px 0 56px;
    display: grid;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 70px 0 0;
    background:
        linear-gradient(180deg, rgba(13, 13, 13, 0.18) 0%, #0d0d0d 98%),
        linear-gradient(90deg, rgba(13, 13, 13, 0.90) 0%, rgba(13, 13, 13, 0.66) 42%, rgba(13, 13, 13, 0.22) 100%),
        url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_01.135x56yoeu.6t.jpg?akim=1&imdensity=1&imwidth=1920") center 54% / cover no-repeat;
    opacity: 0.92;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    bottom: 0;
    background:
        linear-gradient(180deg, #0d0d0d 0, rgba(13, 13, 13, 0.72) 72px, rgba(13, 13, 13, 0) 210px),
        linear-gradient(180deg, rgba(13, 13, 13, 0) 78%, #0d0d0d 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    margin-bottom: 18px;
    padding: 9px 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-soft);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
}

body[data-preorder-open="1"] .eyebrow {
    display: none;
}

h1 {
    max-width: none;
    margin: 0 0 20px;
    font-size: clamp(38px, 5.8vw, 78px);
    line-height: 0.95;
    letter-spacing: 0;
    white-space: nowrap;
    overflow-wrap: break-word;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-copy {
    max-width: 650px;
    margin: 0 0 28px;
    color: #d4d4d4;
    font-size: clamp(16px, 1.6vw, 20px);
    overflow-wrap: anywhere;
}

.hero-actions,
.proof-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-primary,
.btn-secondary,
.order-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 0 24px;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.btn-primary,
.order-button {
    background: var(--accent-gradient);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-soft);
}

.btn-primary:hover,
.btn-secondary:hover,
.order-button:not(:disabled):hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.hero-panel {
    padding: 22px;
    border-radius: 20px;
    background: rgba(17, 17, 17, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.44);
}

.hero-cover-panel {
    position: relative;
    width: min(100%, 608px);
    justify-self: center;
    align-self: center;
    padding: 10px;
    overflow: visible;
    background:
        linear-gradient(#101010, #101010) padding-box,
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 138, 0, 0.18), rgba(255, 61, 103, 0.16)) border-box;
    border: 1px solid transparent;
    box-shadow:
        0 34px 96px rgba(0, 0, 0, 0.66),
        0 14px 42px rgba(0, 0, 0, 0.34),
        0 10px 34px rgba(255, 138, 0, 0.06);
    transform: rotate(1.25deg);
}

.hero-cover-panel::before {
    content: "";
    position: absolute;
    inset: 8% -10% -8%;
    z-index: -1;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 61, 103, 0.14), rgba(255, 138, 0, 0.10), rgba(0, 0, 0, 0.28));
    filter: blur(38px);
}

.hero-cover-panel img {
    display: block;
    width: 100%;
    aspect-ratio: 0.9 / 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.section {
    padding: 56px 0;
}

#preorder,
#media {
    scroll-margin-top: 92px;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 30px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.05;
    overflow-wrap: break-word;
}

.section-heading p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 16px;
    overflow-wrap: anywhere;
}

.preorder-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 420px);
    gap: 22px;
    align-items: stretch;
}

.package,
.order-box,
.info-card,
.faq-item {
    background: #111;
    border: 1px solid var(--border-soft);
    border-radius: 20px;
}

.package {
    padding: 30px;
}

.media-package {
    min-width: 0;
    padding: 0;
    overflow: hidden;
}

.package h3,
.order-box h3,
.info-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.package p,
.order-box p,
.info-card p,
.faq-item p {
    color: var(--text-secondary);
}

.order-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    text-align: center;
}

.product-config {
    display: grid;
    gap: 20px;
    margin: 22px 0 18px;
}

.config-label {
    margin: 0 0 10px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}

.choice-row,
.edition-grid {
    display: grid;
    gap: 10px;
}

.choice-row {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    min-height: 50px;
    padding: 4px;
    border-radius: 999px;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.choice-row::before {
    content: "";
    position: absolute;
    inset: 4px auto 4px 4px;
    z-index: 0;
    width: calc(50% - 4px);
    border-radius: 999px;
    background: var(--accent-gradient);
    transition: transform 0.24s ease;
}

.choice-row[data-active-index="1"]::before {
    transform: translateX(100%);
}

.edition-grid {
    grid-template-columns: 1fr;
}

.extra-options {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.extra-options[hidden] {
    display: none;
}

.extra-grid {
    display: grid;
    gap: 10px;
}

.choice-pill,
.edition-card,
.extra-card {
    width: 100%;
    min-width: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-soft);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.choice-pill {
    position: relative;
    z-index: 1;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 999px;
    background: transparent;
    border: 0;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.edition-card {
    display: grid;
    gap: 5px;
    padding: 15px;
    border-radius: 16px;
}

.extra-card {
    display: grid;
    gap: 5px;
    padding: 14px 15px;
    border-radius: 14px;
}

.edition-card-header,
.extra-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.checkbox-card .extra-card-header {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) max-content;
    justify-content: initial;
    gap: 10px;
}

.extra-check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.06);
    position: relative;
}

.checkbox-card.active .extra-check {
    border-color: transparent;
    background: var(--accent-gradient);
}

.checkbox-card.active .extra-check::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.edition-card strong,
.extra-card strong {
    font-size: 15px;
}

.checkbox-card strong {
    overflow-wrap: anywhere;
}

.edition-card .edition-card-price,
.extra-card .extra-card-price {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.edition-card > span:not(.edition-card-header) {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.35;
}

.extra-card > span:not(.extra-card-header) {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.35;
}

.choice-pill:hover,
.edition-card:hover,
.extra-card:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.09);
}

.choice-pill:hover {
    background: transparent;
}

.edition-card.active,
.extra-card.active {
    background: linear-gradient(#171717, #171717) padding-box, var(--accent-gradient) border-box;
    border-color: transparent;
}

.choice-pill.active {
    background: transparent;
    border-color: transparent;
}

.edition-description {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #d7d7d7;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.account-info {
    margin: -6px 0 20px;
    padding: 13px 15px;
    border-radius: 16px;
    color: #d7d7d7;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

.summary-footer {
    width: 100%;
}

.total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.total-row span:first-child {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

.total-price {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-align: right;
}

.checkout-btn {
    width: 100%;
    min-height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 20px;
    border: none;
    border-radius: 16px;
    color: #fff;
    background: var(--accent-gradient);
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 38, 77, 0.4);
}

.checkout-btn:disabled {
    cursor: not-allowed;
    opacity: 1;
    filter: none;
    color: rgba(255, 255, 255, 0.76);
    background: linear-gradient(180deg, #2b2b2b 0%, #1d1d1d 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.agreement-text {
    margin: 0;
    color: #555;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
}

.agreement-text a {
    color: #FF264D;
    text-decoration: none;
}

.order-button-title {
    font-size: 17px;
    line-height: 1;
}

.order-button-timer {
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.order-hint {
    display: none;
}

.gallery-shell {
    position: relative;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 78%);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    position: relative;
    min-height: clamp(260px, 46vw, 560px);
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #111;
    border: 1px solid var(--border-soft);
    scroll-snap-align: center;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    object-fit: cover;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #fff;
    background: rgba(17, 17, 17, 0.82);
    border: 1px solid var(--border-soft);
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    transform: translateY(-50%);
}

.gallery-shell.is-static .gallery-arrow {
    display: none;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
}

.gallery-shell.is-static .gallery-dots {
    display: none;
}

.gallery-dot {
    flex: 1 1 0;
    width: auto;
    max-width: 36px;
    height: 5px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: flex-basis 0.2s ease, background 0.2s ease;
}

.gallery-dot.active {
    flex-basis: 32px;
    background: var(--accent-gradient);
}

.gallery-prev {
    left: -23px;
}

.gallery-next {
    right: -23px;
}

.preorder-gallery {
    height: 100%;
}

.preorder-gallery .gallery-track {
    height: 100%;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.preorder-gallery .gallery-track:active {
    cursor: grabbing;
}

.preorder-gallery .gallery-slide {
    min-height: 440px;
    border-radius: 20px;
    scroll-snap-align: center;
}

.preorder-gallery .gallery-slide img {
    cursor: zoom-in;
}

.preorder-gallery .gallery-dots {
    display: flex;
    width: min(360px, calc(100% - 28px));
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}

.preorder-gallery .gallery-arrow {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 0 3px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    font-size: 28px;
    font-family: Arial, sans-serif;
    line-height: 1;
    opacity: 0.72;
}

.preorder-gallery .gallery-prev {
    left: 8px;
}

.preorder-gallery .gallery-next {
    right: 8px;
}

.preorder-gallery .gallery-arrow:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.44);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
}

.gallery-lightbox.is-open {
    display: flex;
}

.gallery-lightbox img {
    max-width: min(100%, 1440px);
    max-height: min(100%, 86vh);
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(17, 17, 17, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.16);
    cursor: pointer;
}

.lightbox-close {
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 30px;
}

.lightbox-nav {
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    font-size: 38px;
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 22px;
}

.lightbox-next {
    right: 22px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.info-card {
    padding: 24px;
    text-align: center;
}

.info-card .step-icon {
    margin-bottom: 15px;
}

.info-card .step-icon img {
    width: 32px;
    height: 32px;
    display: inline-block;
}

.info-timer {
    width: fit-content;
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 11px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 12px;
    font-weight: 800;
}

.game-world-section {
    padding-top: 18px;
}

.game-world-card {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 4vw, 42px);
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.86) 55%, rgba(17, 17, 17, 0.52) 100%),
        url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_03.0nqz~lrqdmlze.jpg?akim=1&imdensity=1&imwidth=1600") center 56% / cover no-repeat;
    border: 1px solid var(--border-soft);
}

.game-world-card h2 {
    max-width: 720px;
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.game-world-card p {
    max-width: 760px;
    margin: 0;
    color: #d2d2d2;
    font-size: 16px;
    line-height: 1.65;
}

.game-world-card p + p {
    margin-top: 16px;
}

.faq-list {
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

.faq-item {
    padding: 22px;
}

.faq-item h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.faq-item p {
    margin: 0;
}

footer {
    border-top: 1px solid #222;
    padding: 36px 0 30px;
    color: #555;
    font-size: 12px;
    background: #0d0d0d;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.footer-articles h3 {
    margin: 0 0 18px;
    color: #8a8a8a;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.footer-articles ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
}

.footer-articles li {
    margin: 0;
}

.footer-articles a {
    color: #777;
}

.footer-articles a:hover {
    color: #aaa;
}

.footer-articles {
    padding: 0 0 38px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-articles + .footer-articles {
    padding-top: 24px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 28px;
    padding-top: 22px;
    text-align: center;
}

.footer-links a {
    color: #666;
}

.footer-links a:hover {
    color: #aaa;
}

.footer-copy {
    margin-top: 22px;
    color: #555;
    text-align: center;
    line-height: 1.35;
}

.footer-legal {
    margin-top: 20px;
    max-width: none;
    color: #555;
    text-align: center;
    line-height: 1.35;
}

.support-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    width: 62px;
    height: 62px;
    min-height: 62px;
    padding: 0;
    border-radius: 50%;
}

.support-float img {
    width: 31px;
    height: 31px;
}

@media (min-width: 901px) {
    .gallery-shell:not(.preorder-gallery) .gallery-track {
        grid-auto-flow: initial;
        grid-auto-columns: initial;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
    }

    .gallery-shell:not(.preorder-gallery) .gallery-arrow,
    .gallery-shell:not(.preorder-gallery) .gallery-dots {
        display: none;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding-top: 112px;
    }

    .hero-inner,
    .preorder-card,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        align-self: start;
    }

    .hero-cover-panel {
        justify-self: center;
    }

    .gallery-track {
        grid-auto-columns: minmax(0, 86%);
    }

    .preorder-gallery .gallery-track {
        grid-auto-flow: column;
        grid-auto-columns: 100%;
        grid-template-columns: none;
        overflow-x: auto;
    }
}

@media (max-width: 560px) {
    .container {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
        padding-right: 0;
        padding-left: 0;
    }

    .container.header-content {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
    }

    .hero-inner,
    .hero-inner > *,
    .hero-panel,
    .preorder-card,
    .package,
    .order-box,
    .gallery-shell,
    .gallery-track,
    .info-grid,
    .faq-list {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    h1,
    .hero-copy,
    .section-heading,
    .section-heading h2,
    .section-heading p,
    .package p,
    .order-box p,
    .info-card p,
    .faq-item p {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .hero-inner,
    .hero-actions,
    .hero-panel,
    .preorder-card,
    .section-heading,
    .package,
    .order-box,
    .gallery-shell,
    .gallery-slide,
    .info-card,
    .faq-item,
    .gallery-track,
    .info-grid,
    .faq-list {
        width: 100%;
        max-width: 100%;
    }

    .section .container > * {
        max-width: 100%;
    }

    h1 {
        font-size: 40px;
        line-height: 1.02;
    }

    .hero h1 {
        font-size: clamp(32px, 9.2vw, 40px);
        white-space: nowrap;
    }

    .hero-actions {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .header-actions {
        gap: 10px;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .hero-actions {
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .support-float.btn-primary {
        display: none;
    }

    .footer-content {
        align-items: stretch;
    }

    .footer-articles {
        padding-bottom: 28px;
    }

    .footer-articles ul {
        gap: 10px 20px;
    }

    .footer-links {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-legal {
        max-width: none;
        text-align: center;
    }

    .footer-copy {
        width: 100%;
        text-align: center;
    }

    .package,
    .order-box,
    .info-card,
    .faq-item {
        border-radius: 16px;
    }

    .section {
        padding: 42px 0;
    }

    .hero .container,
    .hero .hero-inner,
    .hero .hero-inner > *,
    .hero .hero-actions,
    .hero .hero-panel {
        width: auto;
        max-width: none;
        min-width: 0;
    }

    .hero .container {
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-right: 0;
        margin-left: 0;
    }

    .hero .hero-inner {
        display: block;
        width: calc(100% - 32px);
        max-width: 390px;
        margin-right: auto;
        margin-left: auto;
    }

    .hero h1,
    .hero .hero-copy {
        width: auto;
        max-width: 100%;
    }

    .hero .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .hero .btn-primary,
    .hero .btn-secondary {
        width: 100%;
    }

    .hero .hero-panel {
        margin-top: 34px;
        width: min(100%, 396px);
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .hero .hero-cover-panel {
        display: none;
    }

    .section .container {
        width: calc(100% - 32px);
        max-width: 390px;
        padding-right: 0;
        padding-left: 0;
        margin-right: auto;
        margin-left: auto;
    }

    .section-heading,
    .section-heading h2,
    .section-heading p,
    .preorder-card,
    .package,
    .order-box,
    .gallery-shell,
    .gallery-track,
    .gallery-slide,
    .info-grid,
    .info-card {
        width: auto;
        max-width: 100%;
        min-width: 0;
    }

    .preorder-card,
    .info-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .choice-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-shell:not(.preorder-gallery) .gallery-track {
        grid-auto-columns: 100%;
    }

    .gallery-slide,
    .preorder-gallery .gallery-slide,
    .preorder-gallery .gallery-slide:first-child {
        min-height: 235px;
    }

    .gallery-arrow {
        display: none;
    }

    .game-world-card {
        background:
            linear-gradient(180deg, rgba(17, 17, 17, 0.94) 0%, rgba(17, 17, 17, 0.9) 100%),
            url("https://www.rockstargames.com/VI/_next/static/media/Vice_City_03.0nqz~lrqdmlze.jpg?akim=1&imdensity=1&imwidth=900") center / cover no-repeat;
    }

    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox img {
        max-height: 78vh;
        border-radius: 12px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 32px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

}
