:root {
    --purple: #4c18b8;
    --purple-dark: #2c0875;
    --purple-deep: #16033f;
    --pink: #ff579a;
    --yellow: #ffd51f;
    --white: #ffffff;
    --text: #17121e;
    --muted: #6f6879;
    --border: #e7e2ee;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: var(--white);
    background: var(--purple);
}

.header-main {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -2px;
    text-decoration: none;
}

.logo span,
.cover-logo span {
    color: var(--yellow);
}

.search-box {
    width: 100%;
    max-width: 590px;
    height: 48px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(27, 3, 84, 0.22);
}

.search-box:focus-within {
    border-color: var(--white);
    outline: 3px solid rgba(255, 213, 31, 0.3);
}

.search-icon {
    margin: 0 15px;
    font-size: 28px;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    color: var(--white);
    background: transparent;
    font-size: 16px;
}

.search-box input::placeholder {
    color: #cdbcef;
}

.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sign-in-button,
.basket-button {
    border: none;
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.sign-in-button {
    white-space: nowrap;
    font-weight: 700;
}

.basket-button {
    position: relative;
    padding: 8px;
}

.basket-icon {
    font-size: 23px;
}

.basket-counter {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--purple-deep);
    background: var(--yellow);
    font-size: 11px;
    font-weight: 800;
}

.navigation {
    background: var(--purple-dark);
}

.navigation-content {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 30px;
    overflow-x: auto;
}

.navigation a {
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 600;
}

.navigation a:hover {
    color: var(--yellow);
}

.store-location {
    margin-left: auto;
    color: #c9b9eb;
    white-space: nowrap;
    font-size: 13px;
}

/* Hero */

.hero {
    min-height: 610px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(154, 74, 255, 0.45),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            var(--purple-deep),
            #3c1093 60%,
            #621bc0
        );
}

.hero-content {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.hero-information {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-label {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(58px, 7vw, 100px);
    line-height: 0.92;
    letter-spacing: -6px;
}

.hero h1 span {
    color: var(--pink);
}

.hero-information > p {
    max-width: 600px;
    margin: 28px 0;
    color: #dfd3f8;
    font-size: 17px;
    line-height: 1.7;
}

.platform-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.platform-button {
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    font-weight: 700;
}

.platform-button.active {
    border-color: var(--yellow);
    color: var(--purple-deep);
    background: var(--yellow);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.primary-button {
    padding: 15px 23px;
    border-radius: 7px;
    color: var(--purple-deep);
    background: var(--yellow);
    text-decoration: none;
    font-weight: 800;
}

.details-button {
    border: none;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.sun {
    position: absolute;
    top: 70px;
    left: 50%;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        #ff9870,
        #ff4e9a
    );
    box-shadow: 0 0 90px rgba(255, 78, 154, 0.45);
}

.game-title {
    position: absolute;
    top: 110px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(3deg);
}

.game-title small {
    width: 190px;
    padding: 10px;
    color: var(--purple-deep);
    background: var(--white);
    text-align: center;
    font-size: 13px;
    font-weight: 900;
}

.game-title strong {
    color: var(--yellow);
    font-size: 190px;
    line-height: 0.8;
    letter-spacing: -18px;
    text-shadow: 9px 9px 0 var(--pink);
}

.release-card {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: auto;

    width: 230px;
    padding: 19px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    background: rgba(29, 3, 82, 0.85);

    z-index: 2;
}

.release-card span,
.release-card small {
    display: block;
    color: #cdbcf1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.release-card strong {
    display: block;
    margin: 7px 0;
    font-size: 25px;
}

/* Benefits */

.benefits {
    border-bottom: 1px solid var(--border);
}

.benefits-grid {
    min-height: 95px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.benefit {
    display: flex;
    flex-direction: column;
    padding-left: 24px;
    border-left: 3px solid var(--yellow);
}

.benefit span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

/* Products */

.products-section {
    padding: 85px 0 110px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.section-heading span {
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin-top: 8px;
    font-size: 48px;
    letter-spacing: -3px;
}

.section-heading p {
    max-width: 450px;
    color: var(--muted);
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(41, 8, 100, 0.15);
}

.product-cover {
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    color: var(--white);
    background: linear-gradient(
        145deg,
        var(--purple-deep),
        var(--purple),
        var(--pink)
    );
}

.product-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-logo {
    font-size: 22px;
    font-weight: 800;
}

.product-cover > strong {
    font-size: 43px;
    letter-spacing: -3px;
}

.product-information {
    padding: 23px;
}

.product-platform {
    color: var(--purple);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-information h3 {
    margin: 8px 0;
    font-size: 19px;
}

.product-information p {
    min-height: 40px;
    color: var(--muted);
    line-height: 1.5;
}

.product-bottom {
    margin-top: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.product-bottom > strong {
    font-size: 20px;
}

.add-button {
    padding: 11px 16px;
    border: none;
    border-radius: 7px;
    color: var(--white);
    background: var(--purple);
    cursor: pointer;
    font-weight: 800;
}

/* Responsive */

@media (max-width: 850px) {
    .header-main {
        min-height: 72px;
    }

    .search-box {
        position: absolute;
        top: 72px;
        left: 0;
        max-width: none;
        padding: 0 20px;
        border: none;
        background: #42109d;
    }

    .navigation {
        padding-top: 48px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-information {
        padding-bottom: 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 25px 0;
    }
}

@media (max-width: 600px) {
    .container {
        width: calc(100% - 28px);
    }

    .sign-in-button {
        display: none;
    }

    .store-location {
        display: none;
    }

    .hero h1 {
        font-size: 58px;
        letter-spacing: -4px;
    }

    .hero-visual {
        min-height: 410px;
    }

    .sun {
        width: 290px;
        height: 290px;
    }

    .game-title strong {
        font-size: 145px;
    }

    .game-title small {
        width: 150px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 38px;
    }

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

/* Basket panel */

.page-overlay {
    position: fixed;
    z-index: 80;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(18, 3, 48, 0.65);
    backdrop-filter: blur(3px);
    transition: 0.3s;
}

.page-overlay.visible {
    visibility: visible;
    opacity: 1;
}

.basket-panel {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    width: min(430px, 100%);
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--white);
    box-shadow: -20px 0 60px rgba(20, 3, 60, 0.25);
    transform: translateX(105%);
    transition: transform 0.3s ease;
}

.basket-panel.open {
    transform: translateX(0);
}

.basket-header {
    min-height: 100px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.basket-header span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.basket-header h2 {
    margin-top: 4px;
    font-size: 30px;
}

.close-basket {
    border: none;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    font-size: 38px;
    line-height: 1;
}

.basket-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px 28px;
}

.empty-basket {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--muted);
    text-align: center;
}

.empty-basket strong {
    margin-bottom: 7px;
    color: var(--text);
}

.basket-item {
    padding: 17px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--border);
}

.basket-item h3 {
    margin-bottom: 5px;
    font-size: 16px;
}

.basket-item span {
    color: var(--muted);
    font-size: 13px;
}

.basket-item-price {
    text-align: right;
}

.basket-item-price strong {
    display: block;
    margin-bottom: 7px;
}

.remove-item {
    border: none;
    color: #a52570;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.basket-footer {
    padding: 24px 28px;
    border-top: 1px solid var(--border);
}

.basket-total {
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    font-size: 19px;
}

.checkout-button {
    width: 100%;
    min-height: 52px;
    border: none;
    border-radius: 8px;
    color: var(--purple-deep);
    background: var(--yellow);
    cursor: pointer;
    font-weight: 800;
}

.checkout-button:disabled {
    color: #81798b;
    background: #eae7ee;
    cursor: not-allowed;
}

.basket-footer small {
    display: block;
    margin-top: 11px;
    color: var(--muted);
    text-align: center;
}

body.basket-open {
    overflow: hidden;
}

/* Modals */

.modal {
    position: fixed;
    inset: 0;
    width: min(500px, calc(100% - 30px));
    max-height: calc(100vh - 40px);
    margin: auto;
    padding: 38px;
    overflow-y: auto;
    border: none;
    border-radius: 20px;
    color: var(--text);
    background: var(--white);
    box-shadow: 0 25px 70px rgba(20, 3, 60, 0.3);
}

.modal::backdrop {
    background: rgba(18, 3, 48, 0.7);
    backdrop-filter: blur(4px);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: none;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    font-size: 34px;
}

.modal-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.modal h2 {
    margin-bottom: 15px;
    font-size: 32px;
    letter-spacing: -1px;
}

.modal p {
    margin-bottom: 15px;
    color: var(--muted);
    line-height: 1.7;
}

.modal-primary {
    min-height: 48px;
    padding: 0 22px;
    border: none;
    border-radius: 8px;
    color: var(--purple-deep);
    background: var(--yellow);
    cursor: pointer;
    font-weight: 800;
}

.sign-in-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sign-in-form label {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 700;
}

.sign-in-form input {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
}

.sign-in-form input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(76, 24, 184, 0.12);
}

.sign-in-form .modal-primary {
    margin-top: 10px;
}

.account-message {
    margin-top: 15px;
    margin-bottom: 0 !important;
    font-size: 13px;
}

@media (max-width: 600px) {
    .modal {
        width: calc(100% - 28px);
        max-height: calc(100dvh - 28px);
        padding: 32px 24px;
    }
}

.gift-cards-section {
    padding-top: 20px;
}

.gift-cards-grid {
    grid-template-columns: repeat(4, 1fr);
}

.gift-card-cover {
    height: 210px;
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255, 255, 255, 0.22),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #170347,
            #4c18b8,
            #f1499a
        );
}

.gift-card-cover.xbox-cover {
    background:
        radial-gradient(
            circle at 75% 20%,
            rgba(255, 255, 255, 0.2),
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #06291f,
            #087f53,
            #62d27d
        );
}

.gift-card-cover small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

@media (max-width: 1000px) {
    .gift-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gift-cards-grid {
        grid-template-columns: 1fr;
    }
}

.quantity-controls {
    width: fit-content;
    margin-top: 13px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 7px;
}

.quantity-controls button {
    width: 34px;
    height: 32px;
    border: none;
    color: var(--purple);
    background: #f4f1f8;
    cursor: pointer;
    font-size: 19px;
    font-weight: 700;
}

.quantity-controls strong {
    min-width: 34px;
    text-align: center;
    font-size: 14px;
}

/* Footer */

.site-footer {
    color: #d9cff0;
    background: #130332;
}

.footer-top {
    padding: 65px 0 50px;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 45px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 310px;
    margin-bottom: 17px;
    color: #afa2ca;
    line-height: 1.7;
}

.independent-store {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    color: #d8cff0;
    font-size: 12px;
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: 15px;
}

.footer-column a,
.footer-column button {
    padding: 0;
    border: none;
    color: #afa2ca;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
}

.footer-column a:hover,
.footer-column button:hover {
    color: var(--yellow);
}

.payment-row {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-row > div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-row > div:first-child span {
    color: #afa2ca;
    font-size: 13px;
}

.payment-row > div:first-child strong {
    color: var(--white);
    font-size: 25px;
    letter-spacing: -1px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.payment-methods span {
    padding: 8px 10px;
    border-radius: 5px;
    color: #211044;
    background: var(--white);
    font-size: 11px;
    font-weight: 800;
}

.footer-bottom {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #887ba4;
    font-size: 12px;
}

.footer-bottom p:last-child {
    max-width: 580px;
    text-align: right;
    line-height: 1.6;
}

@media (max-width: 850px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-row,
    .footer-bottom {
        padding: 24px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom p:last-child {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        width: 100%;
    }
}

.information-modal {
    width: min(620px, calc(100% - 30px));
}

.information-content {
    margin-bottom: 25px;
    color: var(--muted);
    line-height: 1.7;
}

.information-content p {
    margin-bottom: 14px;
}

.information-content strong {
    color: var(--text);
}

/* Cookie banner */

.cookie-banner {
    position: fixed;
    z-index: 120;
    right: 24px;
    bottom: 24px;
    width: min(520px, calc(100% - 48px));
    padding: 26px;
    display: flex;
    align-items: flex-end;
    gap: 25px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(20, 3, 60, 0.28);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-information {
    flex: 1;
}

.cookie-label {
    display: block;
    margin-bottom: 8px;
    color: var(--purple);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.cookie-information h2 {
    margin-bottom: 9px;
    font-size: 20px;
}

.cookie-information p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.cookie-policy-button {
    margin-top: 10px;
    padding: 0;
    border: none;
    color: var(--purple);
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cookie-primary,
.cookie-secondary {
    min-width: 125px;
    min-height: 43px;
    padding: 0 15px;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 800;
}

.cookie-primary {
    border: none;
    color: var(--purple-deep);
    background: var(--yellow);
}

.cookie-secondary {
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--white);
}

@media (max-width: 600px) {
    .cookie-banner {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-actions {
        flex-direction: row;
    }

    .cookie-primary,
    .cookie-secondary {
        flex: 1;
    }
}

/* Customer account */

.account-modal {
    width: min(540px, calc(100% - 30px));
}

.account-tabs {
    margin: 5px 0 25px;
    padding: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    background: #f1eef6;
}

.account-tab {
    min-height: 43px;
    border: none;
    border-radius: 7px;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    font-weight: 800;
}

.account-tab.active {
    color: var(--purple);
    background: var(--white);
    box-shadow: 0 4px 14px rgba(33, 8, 85, 0.1);
}

.account-form[hidden],
.signed-in-account[hidden] {
    display: none;
}

.account-form h2 {
    margin-bottom: 20px;
}

.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.name-fields div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-response {
    min-height: 22px;
    margin: 16px 0 0 !important;
    font-size: 13px;
    font-weight: 700;
}

.account-response.error {
    color: #b42358;
}

.account-response.success {
    color: #087a55;
}

.signed-in-account {
    padding: 15px 0 5px;
    text-align: center;
}

.account-avatar {
    width: 75px;
    height: 75px;
    margin: 0 auto 17px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--purple-deep);
    background: var(--yellow);
    font-size: 30px;
    font-weight: 900;
}

.signed-in-account p {
    margin-bottom: 22px;
}

.logout-button {
    min-height: 47px;
    padding: 0 22px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    font-weight: 800;
}

@media (max-width: 520px) {
    .name-fields {
        grid-template-columns: 1fr;
    }
}

/* Order confirmation */

.order-modal {
    text-align: center;
}

.order-success-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: #087a55;
    font-size: 30px;
    font-weight: 900;
}

.order-summary {
    margin: 25px 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: left;
}

.order-summary div {
    min-height: 55px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid var(--border);
}

.order-summary div:last-child {
    border-bottom: none;
}

.order-summary span {
    color: var(--muted);
    font-size: 13px;
}

.order-summary strong {
    text-align: right;
    font-size: 14px;
}

#created-order-status {
    color: #966500;
    text-transform: capitalize;
}

/* GTA VI product image dimensions */

#products .product-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 0;
    background: #16033f;
}

#products .product-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* Main GTA VI hero image */

.hero-main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 112%;
    height: 112%;
    display: block;
    object-fit: contain;
    object-position: center;
    transform: translate(-50%, -50%);

    -webkit-mask-image: radial-gradient(
        ellipse 78% 76% at center,
        #000 45%,
        rgba(0, 0, 0, 0.95) 62%,
        rgba(0, 0, 0, 0.45) 78%,
        transparent 100%
    );

    mask-image: radial-gradient(
        ellipse 78% 76% at center,
        #000 45%,
        rgba(0, 0, 0, 0.95) 62%,
        rgba(0, 0, 0, 0.45) 78%,
        transparent 100%
    );

    filter: drop-shadow(
        0 24px 35px rgba(18, 3, 55, 0.25)
    );
}

.hero-visual {
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 12% 4%;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255, 75, 155, 0.16);
    filter: blur(55px);
}

.hero-visual .release-card {
    z-index: 2;
}

@media (max-width: 600px) {
    .hero-main-image {
        object-position: center top;
    }

    .hero-visual .release-card {
        right: 50%;
        bottom: 15px;
        left: auto;
        transform: translateX(50%);
    }
}