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

:root {
    --bg: #05080d;
    --bg2: #080d14;
    --panel: rgba(13, 18, 27, .72);
    --panel2: rgba(8, 12, 19, .92);
    --line: rgba(255, 255, 255, .105);
    --line2: rgba(178, 25, 5, .28);
    --text: #f6f8fb;
    --muted: #98a3b1;
    --blue: #b21905;
    --blue2: #d12a12;
    --deep: #7a1005;
    --green: #39f46f;
    --red: #ff4b4b;
    --shadow: 0 26px 80px rgba(0, 0, 0, .42)
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #5b1515 rgba(5, 8, 13, .95)
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background: #05080d
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5b1515, #320909);
    border-radius: 999px;
    border: 2px solid #05080d
}

body {
    min-height: 100vh;
    font-family: Inter, system-ui, sans-serif;
    color: var(--text);
    background: #05080d;
    overflow-x: hidden;
    isolation: isolate
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent 76%)
}

.site-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #05080d
}

.site-background::before {
    content: "";
    position: absolute;
    inset: -18px;
    background: url("../images/background.png?v=2") center center/cover no-repeat;
    filter: blur(2px) brightness(.42) saturate(1.08);
    transform: scale(1.06);
    animation: backgroundFadeIn .8s ease both
}

.site-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 13, .34), rgba(5, 8, 13, .64) 58%, rgba(5, 8, 13, .9)), radial-gradient(circle at 50% 0, rgba(178, 25, 5, .16), transparent 34rem), radial-gradient(circle at 12% 28%, rgba(122, 16, 5, .10), transparent 28rem), rgba(0, 0, 0, .22)
}

@keyframes backgroundFadeIn {
    from {
        opacity: 0;
        transform: scale(1.1)
    }

    to {
        opacity: 1;
        transform: scale(1.06)
    }
}

main,
.minimal-footer {
    position: relative;
    z-index: 1
}

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

button,
input {
    font: inherit
}

[hidden] {
    display: none !important
}

.minimal-topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    height: 82px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
    padding: 0 clamp(18px, 4vw, 62px);

    background:
        linear-gradient(
            180deg,
            rgba(5, 8, 13, .92) 0%,
            rgba(5, 8, 13, .82) 18%,
            rgba(5, 8, 13, .62) 42%,
            rgba(5, 8, 13, .36) 68%,
            rgba(5, 8, 13, .14) 88%,
            rgba(5, 8, 13, 0) 100%
        );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.brand-mark {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 56px;
    max-width: 300px;
    object-fit: contain;
}

.minimal-nav {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3.7vw, 52px)
}

.minimal-nav a {
    position: relative;
    color: rgba(246, 248, 251, .72);
    font-family: Montserrat, Inter, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .45px;
    text-transform: uppercase;
    transition: .22s ease
}

.minimal-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    border-radius: 999px;
    background: #b21905;
    opacity: 0;
    transform: scaleX(.45);
    transition: .22s ease
}

.minimal-nav a:hover,
.minimal-nav a.active {
    color: white
}

.minimal-nav a:hover::after,
.minimal-nav a.active::after {
    opacity: 1;
    transform: scaleX(1)
}

.account-area {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 180px
}

.account-area.account-pending .steam-login-btn,
.account-area.account-pending .account-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.steam-login-btn,
.primary-btn,
.secondary-btn,
.connect-btn,
.view-kit-btn,
.cart-btn,
.gift-btn,
.gift-row button {
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .1px;
    text-transform: none;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease, color .22s ease
}

.steam-login-btn,
.secondary-btn,
.gift-btn {
    padding: 0 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .045);
    color: rgba(246, 248, 251, .9)
}

.primary-btn,
.connect-btn,
.view-kit-btn,
.cart-btn,
.gift-row button {
    padding: 0 24px;
    border: 1px solid rgba(209, 42, 18, .48);
    background: linear-gradient(180deg, #b21905, #7a1005);
    color: white;
    box-shadow: 0 18px 44px rgba(178, 25, 5, .26)
}

.steam-login-btn:hover,
.secondary-btn:hover,
.gift-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(209, 42, 18, .44);
    background: rgba(178, 25, 5, .12);
    color: white
}

.primary-btn:hover,
.connect-btn:hover,
.view-kit-btn:hover,
.cart-btn:hover,
.gift-row button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(178, 25, 5, .34)
}

.account-menu {
    display: inline-flex;
    align-items: center;
    gap: 14px
}

.account-profile-link,
.account-logout-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(246, 248, 251, .78);
    font-family: Montserrat, Inter, sans-serif;
    font-weight: 500;
    text-transform: none
}

.account-profile-link img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover
}

.account-profile-link {
    position: relative;
    padding: 5px 6px 5px 5px;
    border-radius: 999px;
    transition: transform .26s cubic-bezier(.2, .8, .2, 1), color .26s ease, background .26s ease
}

.account-profile-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .035);
    color: white
}

.account-profile-link img {
    transition: transform .26s cubic-bezier(.2, .8, .2, 1), box-shadow .26s ease, outline-color .26s ease;
    outline: 1px solid transparent;
    outline-offset: 2px
}

.account-profile-link:hover img {
    transform: scale(1.05);
    outline-color: rgba(209, 42, 18, .55);
    box-shadow: 0 0 22px rgba(209, 42, 18, .26)
}

.account-text-swap {
    position: relative;
    height: 20px;
    min-width: 96px;
    display: inline-block;
    overflow: hidden;
    line-height: 20px
}

.account-name-text,
.account-hover-text {
    position: absolute;
    inset: 0 auto auto 0;
    white-space: nowrap;
    transition: transform .28s cubic-bezier(.2, .8, .2, 1), opacity .28s ease
}

.account-name-text {
    opacity: 1;
    transform: translateY(0)
}

.account-hover-text {
    opacity: 0;
    transform: translateY(100%);
    color: white
}

.account-profile-link:hover .account-name-text {
    opacity: 0;
    transform: translateY(-100%)
}

.account-profile-link:hover .account-hover-text {
    opacity: 1;
    transform: translateY(0)
}

.account-hover-text::after {
    content: "";
    display: inline-block;
    transform: translateX(-4px);
    opacity: 0;
    transition: transform .28s cubic-bezier(.2, .8, .2, 1), opacity .28s ease
}

.account-profile-link:hover .account-hover-text::after {
    transform: translateX(0);
    opacity: 1
}

.account-logout-link {
    color: var(--red)
}

.menu-toggle {
    display: none
}

.hero-section {
    position: relative;
    min-height: 92vh;
    width: min(1320px, calc(100% - 42px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 132px 0 92px;
    text-align: center
}

.hero-copy {
    position: relative;
    z-index: 2;
    width: min(940px, 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center
}

.eyebrow {
    color: #b21905;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase
}

.hero-copy h1,
.store-hero h1 {
    max-width: 860px;
    margin-top: 16px;
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(56px, 7.5vw, 112px);
    line-height: .94;
    letter-spacing: -3px;
    text-transform: none
}

.hero-subtitle,
.store-hero p,
.cta-section p {
    max-width: 740px;
    margin-top: 22px;
    color: #a9b3c1;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.8
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 38px
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none
}

.hero-orb-one {
    width: 420px;
    height: 420px;
    right: 18%;
    top: 20%;
    background: radial-gradient(circle, rgba(209, 42, 18, .20), transparent 68%)
}

.hero-orb-two {
    width: 260px;
    height: 260px;
    left: 18%;
    bottom: 18%;
    background: radial-gradient(circle, rgba(122, 16, 5, .16), transparent 70%)
}

.server-status-card {
    position: relative;
    z-index: 2;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(13, 18, 27, .84), rgba(7, 11, 17, .70));
    box-shadow: var(--shadow);
    overflow: hidden
}

.server-status-card::before,
.store-card::before,
.kit-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32), transparent)
}

.status-topline {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #c5ced9;
    font-family: Montserrat, Inter, sans-serif;
    font-weight: 500;
    text-transform: none
}

.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 20px rgba(57, 244, 111, .65)
}

.server-status-card h2 {
    margin-top: 18px;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 36px;
    line-height: 1.05;
    text-transform: none
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0
}

.status-grid div,
.countdown-grid div {
    padding: 18px 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035);
    text-align: center
}

.status-grid strong,
.countdown-grid strong {
    display: block;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 35px;
    line-height: 1
}

.status-grid span,
.countdown-grid span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase
}

.connect-btn {
    width: 100%
}

.wipe-band {
    width: min(1320px, calc(100% - 42px));
    margin: 0 auto 42px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .035);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px
}

.wipe-band h2,
.cta-section h2,
.section-heading h2 {
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 1.04;
    text-transform: none
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 92px);
    gap: 10px
}

.minimal-section {
    width: min(1320px, calc(100% - 42px));
    margin: 0 auto;
    padding: 88px 0
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px
}

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

.feature-grid article {
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .022));
    transition: .22s ease
}

.feature-grid article:hover {
    transform: translateY(-4px);
    border-color: var(--line2);
    background: rgba(178, 25, 5, .055)
}

.feature-grid span {
    color: #b21905;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 18px;
    font-weight: 500
}

.feature-grid h3 {
    margin-top: 34px;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 25px;
    line-height: 1.12;
    text-transform: none
}

.feature-grid p {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.65
}


/* Server experience carousel */
.feature-carousel {
    position: relative;
}

.feature-pages {
    position: relative;
    min-height: var(--feature-carousel-height, auto);
    transition: min-height .32s cubic-bezier(.22, 1, .36, 1);
}

.feature-page {
    width: 100%;
    opacity: 0;
    transform: translateX(0);
    transition: opacity .32s cubic-bezier(.22, 1, .36, 1), transform .32s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

.feature-page.is-active {
    opacity: 1;
    transform: translateX(0);
}

.feature-carousel.is-carousel-animating .feature-page {
    position: absolute;
    inset: 0;
}

.feature-carousel.is-carousel-animating .feature-page.is-active {
    position: absolute;
}

.feature-page.is-exiting-left {
    opacity: 0;
    transform: translateX(-14px);
}

.feature-page.is-exiting-right {
    opacity: 0;
    transform: translateX(14px);
}

.feature-page.is-entering-left {
    opacity: 0;
    transform: translateX(-14px);
}

.feature-page.is-entering-right {
    opacity: 0;
    transform: translateX(14px);
}

.feature-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.feature-dot {
    width: 13px;
    height: 13px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    cursor: pointer;
    transition: transform .22s ease, width .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.feature-dot:hover {
    transform: scale(1.12);
    border-color: rgba(209, 42, 18, .52);
    background: rgba(209, 42, 18, .14);
}

.feature-dot.is-active {
    width: 28px;
    border-color: rgba(209, 42, 18, .72);
    background: linear-gradient(90deg, rgba(178, 25, 5, .95), rgba(209, 42, 18, .72));
    box-shadow: 0 0 22px rgba(209, 42, 18, .28);
}

.cta-section {
    width: min(1000px, calc(100% - 42px));
    margin: 46px auto 70px;
    padding: 58px 28px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: radial-gradient(circle at 50% 0, rgba(209, 42, 18, .14), transparent 52%), rgba(255, 255, 255, .035);
    text-align: center
}

.cta-section p {
    margin-left: auto;
    margin-right: auto
}

.cta-section .primary-btn {
    margin-top: 26px
}

.minimal-footer {
    padding: 30px 24px 44px;
    color: var(--muted);
    text-align: center;
    font-size: 14px
}

.store-main {
    min-height: 100vh;
    padding: 152px clamp(20px, 4vw, 62px) 92px
}

.store-hero {
    width: min(1120px, 100%);
    margin: 0 auto 58px;
    text-align: center
}

.store-hero h1 {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(46px, 6vw, 82px)
}

.store-hero p {
    margin-left: auto;
    margin-right: auto
}

.store-shell {
    width: min(1320px, 100%);
    margin: 0 auto
}

.store-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 26px
}

.store-title span {
    width: min(92px, 18vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .24), transparent)
}

.store-title h2 {
    font-family: Montserrat, Inter, sans-serif;
    font-size: 40px;
    text-transform: none;
    letter-spacing: -0.8px
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px
}

.store-card {
    position: relative;
    min-height: 346px;
    display: grid;
    grid-template-rows: 1fr auto;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(13, 18, 27, .78), rgba(7, 11, 17, .62));
    box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
    overflow: hidden;
    cursor: pointer;
    transition: .22s ease
}

.store-card:hover,
.store-card:focus-visible {
    transform: translateY(-5px);
    border-color: var(--line2);
    box-shadow: 0 28px 82px rgba(0, 0, 0, .38)
}

.store-card-art {
    display: grid;
    place-items: center;
    padding: 22px 20px 6px
}

.store-art-placeholder {
    width: 100%;
    height: 154px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    background: radial-gradient(circle at 50% 30%, rgba(209, 42, 18, .18), transparent 70%), rgba(255, 255, 255, .035);
    color: white;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    text-transform: none
}

.store-card-content {
    display: grid;
    gap: 13px;
    padding: 0 20px 22px;
    text-align: center
}

.store-card-content h2 {
    font-family: Montserrat, Inter, sans-serif;
    font-size: 28px;
    line-height: 1.05;
    text-transform: none
}

.store-card-content p {
    color: #b21905;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 21px;
    font-weight: 500
}

.view-kit-btn {
    width: 100%;
    height: 44px;
    border: 1px solid rgba(209, 42, 18, .35)
}

.kit-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    overflow-y: auto;
    padding: 36px 0
}

.kit-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .74);
    backdrop-filter: blur(10px);
    animation: fadeIn .18s ease forwards
}

.kit-panel {
    position: relative;
    width: min(880px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(13, 18, 27, .98), rgba(6, 10, 16, .98));
    box-shadow: 0 40px 120px rgba(0, 0, 0, .72);
    overflow: hidden;
    animation: modalIn .2s ease forwards
}

.kit-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer
}

.kit-panel-header {
    padding-right: 58px;
    margin-bottom: 20px
}

.kit-panel-header h2 {
    font-family: Montserrat, Inter, sans-serif;
    font-size: 46px;
    line-height: 1.05;
    text-transform: none
}

.kit-panel-header p,
.kit-banner {
    display: none
}

.kit-inventory {
    min-height: 310px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .032);
    overflow: hidden
}

.kit-inventory img {
    width: 100%;
    display: block;
    object-fit: contain
}

.kit-inventory-placeholder {
    width: calc(100% - 38px);
    min-height: 260px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(209, 42, 18, .32);
    border-radius: 18px;
    color: #aab4c2;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase
}

.kit-section {
    margin-bottom: 22px
}

.kit-section h3 {
    margin-bottom: 12px;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 28px;
    text-transform: none
}

.kit-perks {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.kit-perks li {
    position: relative;
    padding: 15px 16px 15px 42px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
    color: #dce5ef;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 17px;
    font-weight: 500
}

.kit-perks li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    color: var(--green)
}

.gift-panel {
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035)
}

.gift-panel label {
    display: block;
    margin-bottom: 10px;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: none
}

.gift-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px
}

.gift-row input {
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(0, 0, 0, .22);
    color: white
}

.gift-row input:focus {
    outline: 0;
    border-color: rgba(209, 42, 18, .58)
}

.gift-panel small {
    display: block;
    margin-top: 10px;
    color: var(--red);
    font-weight: 500
}

.kit-actions {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--line)
}

.kit-footer-price {
    color: #b21905;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 28px;
    font-weight: 500
}

.cart-btn,
.gift-btn,
.gift-row button {
    height: 48px
}

.gift-btn {
    min-width: 96px
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.985)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@media(max-width:1180px) {
    .hero-section {
        min-height: 88vh
    }

    .server-status-card {
        max-width: 620px
    }

    .store-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:900px) {
    .minimal-topbar {
        grid-template-columns: 1fr auto;
        height: 76px
    }

    .brand-mark {
        grid-column: 1
    }

    .minimal-menu-toggle {
        grid-column: 2;
        display: grid;
        width: 42px;
        gap: 6px;
        background: transparent;
        border: 0
    }

    .minimal-menu-toggle span {
        height: 2px;
        background: white;
        border-radius: 999px
    }

    .minimal-nav,
    .account-area {
        display: none
    }

    .minimal-topbar.open .minimal-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        background: rgba(5, 8, 13, .98);
        border-bottom: 1px solid var(--line)
    }

    .minimal-topbar.open .minimal-nav a {
        padding: 17px 24px;
        border-top: 1px solid var(--line)
    }

    .minimal-topbar.open .account-area {
        position: fixed;
        top: 323px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        padding: 18px 24px;
        background: rgba(5, 8, 13, .98);
        border-bottom: 1px solid var(--line)
    }

    .wipe-band {
        grid-template-columns: 1fr
    }

    .countdown-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .store-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:620px) {

    .brand-logo {
        height: 38px;
        max-width: 190px;
    }

    .hero-section,
    .minimal-section,
    .wipe-band,
    .cta-section {
        width: calc(100% - 28px)
    }

    .hero-section {
        padding-top: 126px
    }

    .hero-copy h1,
    .store-hero h1 {
        font-size: clamp(44px, 14vw, 66px);
        letter-spacing: -1.4px
    }

    .hero-actions {
        display: grid
    }

    .status-grid,
    .feature-grid,
    .store-grid,
    .kit-perks {
        grid-template-columns: 1fr
    }

    .countdown-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .store-main {
        padding: 124px 14px 60px
    }

    .gift-row,
    .kit-actions {
        grid-template-columns: 1fr
    }

    .kit-footer-price {
        text-align: center
    }

    .store-card {
        min-height: 310px
    }
}

/* Montserrat typography refinements */
.minimal-nav a,
.steam-login-btn,
.primary-btn,
.secondary-btn,
.connect-btn,
.view-kit-btn,
.cart-btn,
.gift-btn,
.gift-row button,
.account-profile-link,
.account-logout-link {
    font-weight: 500;
}

.hero-copy h1,
.store-hero h1,
.wipe-band h2,
.cta-section h2,
.section-heading h2,
.server-status-card h2,
.store-title h2,
.store-card-content h2,
.kit-panel-header h2,
.kit-section h3 {
    font-weight: 500;
}

.status-grid strong,
.countdown-grid strong,
.store-card-content p,
.kit-footer-price {
    font-weight: 500;
}

.account-area {
    padding-right: clamp(14px, 1.4vw, 24px);
}

/* Profile page */
.profile-main {
    min-height: 100vh;
    padding: 152px clamp(20px, 4vw, 62px) 92px;
}

.profile-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.profile-hero {
    text-align: center;
    margin-bottom: 38px;
}

.profile-hero h1 {
    margin-top: 16px;
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(46px, 6vw, 82px);
    line-height: .96;
    letter-spacing: -2.4px;
    font-weight: 500;
}

.profile-hero p {
    max-width: 690px;
    margin: 20px auto 0;
    color: #a9b3c1;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.75;
}

.profile-card,
.profile-table-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(13, 18, 27, .84), rgba(7, 11, 17, .70));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.profile-card::before,
.profile-table-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32), transparent);
}

.profile-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 30px;
    margin-bottom: 22px;
}

.profile-avatar-wrap {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(180deg, rgba(209, 42, 18, .58), rgba(122, 16, 5, .20));
    box-shadow: 0 0 36px rgba(209, 42, 18, .18);
}

.profile-avatar-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, .06);
}

.profile-identity h2 {
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -1.8px;
    font-weight: 500;
}

.profile-steamid {
    margin-top: 12px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    word-break: break-all;
}

.profile-steamid strong {
    color: rgba(246, 248, 251, .72);
    font-weight: 500;
}

.discord-status {
    justify-self: end;
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
    color: rgba(246, 248, 251, .9);
    font-family: Montserrat, Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.discord-status.is-linked {
    border-color: rgba(57, 244, 111, .34);
    background: rgba(57, 244, 111, .08);
    color: #dfffe8;
}

.discord-status .checkmark {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(57, 244, 111, .16);
    color: var(--green);
    font-size: 12px;
}

.profile-panels {
    display: grid;
    gap: 22px;
}

.profile-table-card {
    padding: 26px;
}

.profile-table-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.profile-table-heading h2 {
    font-family: Montserrat, Inter, sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.8px;
    font-weight: 500;
}

.profile-table-heading p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.profile-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .025);
}

.profile-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.profile-table th,
.profile-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

.profile-table th {
    color: rgba(246, 248, 251, .72);
    font-family: Montserrat, Inter, sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.profile-table td {
    color: #dce5ef;
    font-size: 14px;
    line-height: 1.5;
}

.profile-table tr:last-child td {
    border-bottom: 0;
}

.status-pill,
.type-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .045);
    font-family: Montserrat, Inter, sans-serif;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.status-pill.active {
    color: #dfffe8;
    border-color: rgba(57, 244, 111, .34);
    background: rgba(57, 244, 111, .08);
}

.status-pill.expiring {
    color: #fff3d1;
    border-color: rgba(255, 198, 75, .34);
    background: rgba(255, 198, 75, .08);
}

.status-pill.expired {
    color: #ffd9d9;
    border-color: rgba(255, 75, 75, .34);
    background: rgba(255, 75, 75, .08);
}

.renew-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(209, 42, 18, .38);
    border-radius: 999px;
    background: rgba(178, 25, 5, .10);
    color: white;
    font-family: Montserrat, Inter, sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.renew-link:hover {
    transform: translateY(-2px);
    border-color: rgba(209, 42, 18, .65);
    background: rgba(178, 25, 5, .16);
}

.empty-profile-row {
    padding: 22px;
    color: var(--muted);
    text-align: center;
}

.profile-loading {
    opacity: .72;
}

@media(max-width:900px) {
    .profile-main {
        padding-top: 124px;
    }

    .profile-card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .discord-status {
        justify-self: center;
    }

    .profile-table-heading {
        display: grid;
    }
}

@media(max-width:620px) {
    .profile-main {
        padding: 124px 14px 60px;
    }

    .profile-card,
    .profile-table-card {
        padding: 22px;
        border-radius: 24px;
    }

    .profile-avatar-wrap {
        width: 96px;
        height: 96px;
    }
}


/* =========================================================
   RustEx red accent override
   ========================================================= */
:root {
    --line2: rgba(178, 25, 5, .28);
    --blue: #b21905;
    --blue2: #d12a12;
    --deep: #7a1005;
}

.minimal-nav a::after,
.eyebrow,
.store-card-content p,
.kit-footer-price,
.feature-grid span {
    color: #b21905;
}

.minimal-nav a::after {
    background: #b21905;
}

.primary-btn,
.connect-btn,
.view-kit-btn,
.cart-btn,
.gift-row button,
.checkout-proceed {
    border-color: rgba(178, 25, 5, .58);
    background: linear-gradient(180deg, #d12a12, #7a1005);
    box-shadow: 0 18px 44px rgba(178, 25, 5, .28);
}

.primary-btn:hover,
.connect-btn:hover,
.view-kit-btn:hover,
.cart-btn:hover,
.gift-row button:hover,
.checkout-proceed:hover {
    box-shadow: 0 24px 60px rgba(178, 25, 5, .38);
}

.steam-login-btn:hover,
.secondary-btn:hover,
.gift-btn:hover {
    border-color: rgba(178, 25, 5, .44);
    background: rgba(178, 25, 5, .12);
}

.account-profile-link:hover img {
    outline-color: rgba(178, 25, 5, .55);
    box-shadow: 0 0 22px rgba(178, 25, 5, .26);
}

.hero-orb-one {
    background: radial-gradient(circle, rgba(178, 25, 5, .20), transparent 68%);
}

.hero-orb-two {
    background: radial-gradient(circle, rgba(122, 16, 5, .16), transparent 70%);
}

.feature-grid article:hover {
    background: rgba(178, 25, 5, .055);
}

.feature-dot:hover {
    border-color: rgba(178, 25, 5, .52);
    background: rgba(178, 25, 5, .14);
}

.feature-dot.is-active {
    border-color: rgba(178, 25, 5, .72);
    background: linear-gradient(90deg, rgba(178, 25, 5, .95), rgba(209, 42, 18, .72));
    box-shadow: 0 0 22px rgba(178, 25, 5, .28);
}

.cta-section {
    background: radial-gradient(circle at 50% 0, rgba(178, 25, 5, .14), transparent 52%), rgba(255, 255, 255, .035);
}

.store-art-placeholder {
    background: radial-gradient(circle at 50% 30%, rgba(178, 25, 5, .18), transparent 70%), rgba(255, 255, 255, .035);
}

.view-kit-btn,
.kit-inventory-placeholder,
.gift-row input:focus,
.renew-link {
    border-color: rgba(178, 25, 5, .38);
}

.renew-link {
    background: rgba(178, 25, 5, .10);
}

.renew-link:hover {
    border-color: rgba(209, 42, 18, .65);
    background: rgba(178, 25, 5, .16);
}

.profile-avatar-wrap {
    background: linear-gradient(180deg, rgba(209, 42, 18, .58), rgba(122, 16, 5, .20));
    box-shadow: 0 0 36px rgba(178, 25, 5, .18);
}

.checkout-drawer::before {
    background:
        linear-gradient(135deg, rgba(255,255,255,.08), transparent 28%),
        radial-gradient(circle at 50% 0%, rgba(178,25,5,.12), transparent 36%);
}


/* =========================================================
   Store checkout drawer — RustEx red
   ========================================================= */

body.checkout-open {
    overflow: hidden;
}

.checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.checkout-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 4, 8, .50);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.checkout-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.checkout-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: min(460px, 100%);
    min-height: 100vh;
    border-left: 1px solid rgba(255, 255, 255, .28);
    background:
        radial-gradient(circle at 50% 0, rgba(255, 255, 255, .12), transparent 34%),
        linear-gradient(180deg, rgba(13, 14, 20, .985), rgba(5, 7, 11, .99));
    box-shadow:
        -30px 0 80px rgba(0, 0, 0, .52),
        -8px 0 30px rgba(255, 255, 255, .08);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 470ms cubic-bezier(.18, 1, .22, 1),
        opacity 300ms ease;
}

.checkout-drawer.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.checkout-drawer.is-closing {
    transform: translateX(100%);
    opacity: 0;
    transition:
        transform 340ms cubic-bezier(.4, 0, .2, 1),
        opacity 240ms ease;
}

.checkout-drawer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .055), transparent 26%),
        radial-gradient(circle at 50% 0, rgba(178, 25, 5, .10), transparent 38%);
}

.checkout-panel-inner {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 34px 34px 30px;
    display: flex;
    flex-direction: column;
    color: var(--text);
}

.checkout-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    color: var(--muted);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    transition:
        color 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        transform 180ms ease;
}

.checkout-close:hover {
    color: white;
    border-color: rgba(178, 25, 5, .42);
    background: rgba(178, 25, 5, .10);
    transform: translateY(-1px);
}

.checkout-drawer h1 {
    margin-top: 26px;
    margin-bottom: 28px;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.05em;
}

.checkout-steam-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.checkout-avatar,
.checkout-avatar-fallback {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 17px;
    flex: 0 0 auto;
    box-shadow: none;
}

.checkout-avatar {
    object-fit: cover;
}

.checkout-avatar-fallback {
    display: grid;
    place-items: center;
    color: var(--muted);
    background: rgba(255, 255, 255, .055);
    font-weight: 700;
}

.checkout-steam-details strong {
    display: block;
    font-size: 16px;
    line-height: 1.2;
}

.checkout-steam-details span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    word-break: break-all;
}

.checkout-divider {
    height: 1px;
    margin: 28px 0;
    background: rgba(255, 255, 255, .12);
}

.checkout-section-title {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.checkout-item-row,
.checkout-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.checkout-item-row span,
.checkout-item-row strong {
    color: white;
    font-size: 17px;
    font-weight: 700;
}

.checkout-item-row strong,
.checkout-total-row strong {
    white-space: nowrap;
}

.checkout-spacer {
    flex: 1;
    min-height: 90px;
}

.checkout-total-row {
    font-size: 22px;
    font-weight: 700;
}

.checkout-total-row span,
.checkout-total-row strong {
    color: white;
}

.checkout-proceed {
    width: 100%;
    min-height: 56px;
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(209, 42, 18, .58);
    border-radius: 18px;
    color: white;
    background: linear-gradient(180deg, #b21905, #7a1005);
    box-shadow: 0 18px 44px rgba(178, 25, 5, .28);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition:
        transform .18s ease,
        filter .18s ease,
        box-shadow .18s ease;
}

.checkout-proceed:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 22px 54px rgba(178, 25, 5, .38);
}

.checkout-proceed:disabled {
    cursor: not-allowed;
    opacity: .9;
}

.checkout-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .36);
    border-top-color: white;
    border-radius: 50%;
    animation: checkoutSpin .7s linear infinite;
}

.checkout-proceed.loading {
    pointer-events: none;
}

.checkout-proceed.loading .checkout-loader {
    display: inline-block;
}

.checkout-secure-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
}

@keyframes checkoutSpin {
    to {
        transform: rotate(360deg);
    }
}

@media(max-width:520px) {
    .checkout-drawer {
        width: 100%;
        border-left: 0;
    }

    .checkout-panel-inner {
        padding: 28px 20px;
    }

    .checkout-drawer h1 {
        margin-top: 30px;
        font-size: 32px;
    }

    .checkout-spacer {
        min-height: 70px;
    }
}
