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

:root {
    --bg: #050507;
    --bg-soft: #0a0a12;
    --bg-elevated: rgba(14, 14, 22, 0.84);
    --surface: rgba(17, 17, 28, 0.72);
    --surface-strong: rgba(20, 20, 32, 0.92);
    --surface-soft: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #f7f7fb;
    --text-soft: rgba(247, 247, 251, 0.78);
    --text-muted: rgba(247, 247, 251, 0.52);
    --red: #ff4646;
    --red-soft: #ff7a7a;
    --orange: #ff8c4b;
    --blue: #5ea8ff;
    --green: #9cffd5;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1380px;
    --header-height: 84px;
    --font-body: "Geist", sans-serif;
    --font-display: "Unbounded", sans-serif;
    --transition: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 70, 70, 0.45) rgba(255, 255, 255, 0.02);
}

body {
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

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

img,
video {
    display: block;
    width: 100%;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
}

input {
    border: 0;
    outline: 0;
}

code {
    padding: 0.15rem 0.45rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 70, 70, 0.35);
    border-radius: 999px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.site-bg {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 73, 73, 0.18), transparent 28%),
        radial-gradient(circle at 80% 18%, rgba(94, 168, 255, 0.12), transparent 24%),
        radial-gradient(circle at 52% 85%, rgba(255, 140, 75, 0.12), transparent 28%),
        linear-gradient(180deg, #07070b 0%, #050507 34%, #080811 100%);
}

.site-grid,
.site-noise,
.aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.site-grid {
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 0%, rgba(0, 0, 0, 0.78) 58%, transparent 100%);
}

.site-noise {
    opacity: 0.055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 220px 220px;
}

.aurora {
    filter: blur(80px);
    opacity: 0.32;
    animation: drift 18s ease-in-out infinite alternate;
}

.aurora-a {
    background: radial-gradient(circle, rgba(255, 70, 70, 0.56), transparent 65%);
    inset: -18% auto auto -12%;
    width: 48vw;
    height: 48vw;
}

.aurora-b {
    background: radial-gradient(circle, rgba(255, 140, 75, 0.34), transparent 68%);
    inset: auto -10% 8% auto;
    width: 40vw;
    height: 40vw;
    animation-duration: 24s;
}

.aurora-c {
    background: radial-gradient(circle, rgba(94, 168, 255, 0.22), transparent 64%);
    inset: 26% auto auto 40%;
    width: 30vw;
    height: 30vw;
    animation-duration: 20s;
}

@keyframes drift {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(4vw, -3vh, 0) scale(1.08);
    }
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition:
        opacity var(--transition),
        width 260ms cubic-bezier(0.22, 1, 0.36, 1),
        height 260ms cubic-bezier(0.22, 1, 0.36, 1),
        margin 260ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
        background 260ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    margin-left: -4px;
    margin-top: -4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: -15px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(0.8px);
    background: rgba(255, 255, 255, 0.02);
    mix-blend-mode: difference;
}

body.cursor-enabled {
    cursor: none;
}

body.cursor-enabled a,
body.cursor-enabled button {
    cursor: none;
}

body.cursor-hover .cursor-dot {
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -5px;
    background: rgba(255, 255, 255, 1);
}

body.cursor-hover .cursor-ring {
    width: 38px;
    height: 38px;
    margin-left: -19px;
    margin-top: -19px;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.03);
}

.page-main {
    padding-top: var(--header-height);
}

.home-loading-strip {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 980;
    height: 3px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}

.home-loading-strip span {
    display: block;
    width: 36%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 70, 70, 0), rgba(255, 110, 110, 0.88), rgba(255, 163, 79, 0.92), rgba(255, 70, 70, 0));
    filter: drop-shadow(0 0 10px rgba(255, 110, 110, 0.42));
    animation: homeLoadingStrip 1.35s ease-in-out infinite;
}

body.home-products-loading .home-loading-strip {
    opacity: 1;
}

@keyframes homeLoadingStrip {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(360%);
    }
}

main,
.site-header,
.site-footer {
    transition:
        opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.locale-switching-out main,
body.locale-switching-out .site-header,
body.locale-switching-out .site-footer {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(8px);
    pointer-events: none;
}

body.locale-switching-in main,
body.locale-switching-in .site-header,
body.locale-switching-in .site-footer {
    animation: localeContentIn 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes localeContentIn {
    from {
        opacity: 0;
        transform: translateY(12px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.section-block {
    position: relative;
    padding: 48px 0 96px;
}

.section-shell {
    width: min(var(--container), calc(100% - 28px));
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.accent-text {
    background: linear-gradient(135deg, #fff, var(--red-soft), var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 760px;
    margin-bottom: 34px;
}

.section-title,
.hero-title,
.product-title,
.checkout-form-panel h2 {
    font-family: var(--font-display);
    letter-spacing: -0.04em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.04;
}

.section-copy,
.hero-subtitle,
.product-description,
.footer-description,
.invoice-receive-copy {
    color: var(--text-soft);
    font-size: 1rem;
}

.section-hint {
    color: rgba(156, 255, 213, 0.72);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.primary-btn,
.ghost-btn,
.buy-btn,
.icon-square-btn,
.link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    transition:
        transform var(--transition),
        border-color var(--transition),
        background-color var(--transition),
        box-shadow var(--transition),
        color var(--transition);
}

.primary-btn,
.buy-btn {
    position: relative;
    overflow: hidden;
    padding: 0.95rem 1.25rem;
    border: 1px solid rgba(255, 122, 122, 0.24);
    background: linear-gradient(135deg, rgba(255, 70, 70, 0.16), rgba(255, 140, 75, 0.14));
    color: #fff;
    box-shadow: 0 16px 40px rgba(255, 70, 70, 0.16);
    font-weight: 800;
}

.primary-btn::before,
.buy-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 88, 88, 0.96), rgba(255, 140, 75, 0.88), rgba(255, 88, 88, 0.96));
    transform: translateX(-102%);
    transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.primary-btn span,
.primary-btn svg,
.buy-btn span,
.buy-btn svg {
    position: relative;
    z-index: 1;
}

.primary-btn:hover,
.buy-btn:hover,
.ghost-btn:hover,
.icon-square-btn:hover {
    transform: translateY(-2px);
}

.primary-btn:hover::before,
.buy-btn:hover::before {
    transform: translateX(0);
}

.primary-btn svg,
.buy-btn svg,
.icon-square-btn svg,
.ghost-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

.ghost-btn.wide {
    width: 100%;
}

.ghost-btn {
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.ghost-btn.compact,
.buy-btn.compact {
    padding: 0.72rem 0.95rem;
    border-radius: 14px;
}

.icon-square-btn {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.link-btn {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.loader-state,
.empty-state {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    text-align: center;
    color: var(--text-soft);
}

.loader-state.compact,
.empty-state.compact {
    min-height: 0;
    padding: 22px;
}

.empty-state.wide,
.loader-state.wide {
    grid-column: 1 / -1;
}

.loader-spinner {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--red);
    animation: spin 0.8s linear infinite;
}

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

.media-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 70, 70, 0.2), rgba(94, 168, 255, 0.12));
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.media-fallback.large {
    min-height: 420px;
    border-radius: inherit;
}

.panel-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(11, 11, 18, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.panel-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.panel-head.space-between {
    justify-content: space-between;
}

.status-chip,
.product-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
}

.delivery-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    border: 1px solid rgba(144, 255, 198, 0.22);
    background: rgba(144, 255, 198, 0.08);
    color: #90ffc6;
    font-size: 0.78rem;
    font-weight: 600;
}

.status-chip {
    border: 1px solid rgba(156, 255, 213, 0.18);
    background: rgba(156, 255, 213, 0.08);
    color: var(--green);
}

.product-chip {
    border: 1px solid rgba(255, 122, 122, 0.16);
    background: rgba(255, 70, 70, 0.08);
    color: var(--red-soft);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(156, 255, 213, 0.08);
}

.price-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-stack.inline-price {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.price-stack span {
    color: var(--text-muted);
    font-size: 0.84rem;
}

.price-stack strong {
    font-size: 1.2rem;
    color: #fff;
}

.price-stack.large strong {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.price-stack.large s {
    color: var(--text-muted);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 80ms;
}

.reveal-delay-2 {
    transition-delay: 160ms;
}

.reveal-delay-3 {
    transition-delay: 240ms;
}

.reveal-delay-4 {
    transition-delay: 320ms;
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 540ms cubic-bezier(0.22, 1, 0.36, 1), transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 140ms; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 200ms; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 260ms; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 320ms; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(14, 14, 22, 0.56);
    backdrop-filter: blur(22px) saturate(1.16);
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.18);
    transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
    background: rgba(14, 14, 22, 0.72);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 54px rgba(0, 0, 0, 0.3);
}

.site-nav {
    width: min(calc(var(--container) + 24px), calc(100% - 24px));
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    padding-inline: 12px;
    position: relative;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-link img,
.checkout-brand img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-sub {
    color: var(--text-muted);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex: 1;
}

.nav-links,
.nav-actions,
.locale-switch {
    display: flex;
    align-items: center;
}

.nav-links {
    gap: 26px;
    justify-content: center;
}

.nav-links a,
.footer-links a {
    position: relative;
    color: var(--text-soft);
    transition: color var(--transition);
}

.nav-links a::after,
.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--red), var(--orange));
    transition: transform var(--transition);
}

.nav-links a:hover,
.footer-links a:hover {
    color: #fff;
}

.nav-links a:hover::after,
.footer-links a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    gap: 12px;
}

.locale-switch {
    gap: 6px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.locale-switch.compact {
    background: rgba(255, 255, 255, 0.03);
}

.locale-btn {
    min-width: 44px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.84rem;
    font-weight: 700;
    transition: background-color var(--transition), color var(--transition);
}

.locale-btn.active {
    background: linear-gradient(135deg, rgba(255, 70, 70, 0.18), rgba(255, 140, 75, 0.14));
    color: #fff;
}

.nav-cart-btn,
.nav-icon-link,
.nav-dashboard-btn,
.icon-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.nav-cart-btn,
.nav-icon-link,
.icon-close {
    width: 46px;
    height: 46px;
    border-radius: 16px;
}

.nav-cart-btn {
    position: relative;
}

.nav-cart-btn svg,
.nav-icon-link svg,
.nav-dashboard-btn svg,
.icon-close svg {
    width: 18px;
    height: 18px;
}

.nav-icon-link {
    color: #cbd5ff;
    background: linear-gradient(135deg, rgba(113, 137, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.nav-icon-link svg {
    fill: currentColor;
}

.nav-dashboard-btn {
    gap: 10px;
    height: 46px;
    padding: 0 0.96rem;
    border-radius: 16px;
    line-height: 1;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

@media (min-width: 861px) {
    .site-nav {
        display: grid;
        grid-template-columns: auto auto auto;
        justify-content: center;
        align-items: center;
        gap: 38px;
    }

    .brand-link {
        grid-column: 1;
        justify-self: end;
        margin: 0;
    }

    .nav-panel {
        display: contents;
    }

    .nav-links {
        grid-column: 2;
        justify-self: center;
        position: static;
        top: auto;
        left: auto;
        transform: none;
        width: max-content;
        gap: 34px;
        z-index: auto;
    }

    .nav-actions {
        grid-column: 3;
        justify-self: start;
        position: static;
        top: auto;
        left: auto;
        transform: none;
        margin: 0;
        margin-left: 0;
        z-index: auto;
    }
}

.nav-cart-btn,
.nav-icon-link,
.nav-dashboard-btn,
.icon-close,
.nav-toggle {
    transition: transform var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
}

.nav-cart-btn:hover,
.nav-icon-link:hover,
.nav-dashboard-btn:hover,
.icon-close:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 122, 0.26);
    background: rgba(255, 70, 70, 0.08);
    color: #fff;
}

.nav-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity var(--transition), transform var(--transition);
}

.nav-cart-count.visible {
    opacity: 1;
    transform: scale(1);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); }

.hero-section {
    min-height: calc(100vh - 20px);
    display: flex;
    align-items: center;
    padding: 56px 0 24px;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
    align-items: center;
    gap: 42px;
}

.hero-copy,
.hero-preview {
    position: relative;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    max-width: 760px;
    padding-right: 10px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.72rem 1.3rem;
    border: 1px solid rgba(255, 196, 92, 0.22);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 188, 78, 0.2), rgba(255, 140, 75, 0.1)),
        rgba(255, 255, 255, 0.04);
    color: #ffe4aa;
    box-shadow: 0 18px 42px rgba(255, 164, 42, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-badge-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.hero-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(255, 154, 77, 0.26));
}

.hero-preview {
    justify-self: end;
    width: 100%;
    max-width: 560px;
    margin-right: -26px;
}

.hero-title {
    font-size: clamp(3.2rem, 5.6vw, 5.4rem);
    line-height: 0.94;
    max-width: 17ch;
    text-wrap: balance;
    text-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
}

.hero-subtitle {
    max-width: 34rem;
    font-size: 1rem;
    margin-top: -4px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.hero-action-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    flex: 0 0 auto;
    background: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.hero-action-icon-video {
    mask-image: url("/assets/img/video_clip_multiple_regular_icon_202661.svg");
    -webkit-mask-image: url("/assets/img/video_clip_multiple_regular_icon_202661.svg");
}

.hero-stats {
    width: min(100%, 620px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 6px;
}

.hero-stat-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 18px 16px;
    border: 1px solid rgba(255, 181, 96, 0.14);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 196, 92, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(10, 10, 16, 0.58);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.hero-stat-head {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.hero-stat-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #ffc15a;
}

.hero-stat-icon svg {
    width: 100%;
    height: 100%;
}

.hero-stat-card strong {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.hero-stat-head span {
    color: rgba(255, 236, 199, 0.76);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.15;
}

.hero-preview-card {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top left, rgba(255, 78, 78, 0.18), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
        rgba(8, 8, 14, 0.9);
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color var(--transition), box-shadow var(--transition);
}

.hero-preview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 122, 0.24);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.hero-preview-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-preview-card:hover video {
    transform: scale(1.03);
}

.hero-preview-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.12) 50%, transparent 68%);
    transform: translateX(-130%);
    transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-preview-card:hover .hero-preview-sheen {
    transform: translateX(120%);
}

.hero-preview-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(9, 9, 14, 0.44);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.92);
    transform: translateY(-50%);
    transition:
        transform var(--transition),
        border-color var(--transition),
        background-color var(--transition),
        opacity var(--transition);
}

.hero-preview-nav svg {
    width: 18px;
    height: 18px;
}

.hero-preview-nav:hover {
    background: rgba(255, 70, 70, 0.2);
    border-color: rgba(255, 122, 122, 0.3);
}

.hero-preview-nav:focus-visible,
.hero-preview-sound:focus-visible {
    outline: 2px solid rgba(255, 140, 75, 0.48);
    outline-offset: 2px;
}

.hero-preview-prev {
    left: 18px;
}

.hero-preview-next {
    right: 18px;
}

.hero-preview-nav[hidden] {
    display: none;
}

.hero-preview-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 10px;
    padding: 22px 22px 34px;
    background: linear-gradient(180deg, rgba(7, 7, 11, 0.05), rgba(7, 7, 11, 0.78) 78%, rgba(7, 7, 11, 0.94));
    text-align: left;
}

.hero-preview-overlay strong {
    max-width: 22ch;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.06;
}

.hero-preview-sound {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    transition: color var(--transition), transform var(--transition);
}

.hero-preview-sound:hover {
    color: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
}

.hero-preview-sound::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red-soft), var(--orange));
    box-shadow: 0 0 0 8px rgba(255, 122, 122, 0.08);
}

.hero-preview-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.hero-preview-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 122, 122, 0.96), rgba(255, 140, 75, 0.96));
    box-shadow: 0 0 20px rgba(255, 122, 122, 0.22);
    will-change: transform;
}

.hero-discord-btn svg {
    fill: currentColor;
    color: #cbd5ff;
}

.hero-discord-btn {
    border-color: rgba(132, 149, 255, 0.24);
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.22), rgba(135, 150, 255, 0.12));
}

.section-products {
    padding-top: 10px;
    overflow: hidden;
}

.spotlight-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.9;
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.45) 12%,
        #000 28%,
        #000 72%,
        rgba(0, 0, 0, 0.45) 88%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.45) 12%,
        #000 28%,
        #000 72%,
        rgba(0, 0, 0, 0.45) 88%,
        transparent 100%
    );
}

.products-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    z-index: 1;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
        rgba(10, 10, 17, 0.9);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card.reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    filter: blur(10px);
    transition:
        opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color var(--transition),
        box-shadow var(--transition);
}

.product-card.reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 122, 0.2);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.58);
}

.product-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.product-card-media img,
.summary-item-media img,
.cart-item-media img,
.clip-card-media video,
.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-media img {
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card-media img {
    transform: scale(1.04);
}

.product-card-glow {
    position: absolute;
    inset: auto -10% -28% -10%;
    height: 40%;
    background: radial-gradient(circle, rgba(255, 70, 70, 0.3), transparent 70%);
    filter: blur(30px);
}

.product-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    flex: 1;
}

.product-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.product-card-head-row {
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.product-card-title {
    min-width: 0;
    flex: 1;
}

.product-card h3,
.product-card h3 a {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.18;
}

.product-card-title a {
    display: block;
}

.product-card-status {
    flex-shrink: 0;
    white-space: nowrap;
}

.product-card-meta {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.product-card-foot {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
}

.product-card-actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.product-card-actions.single {
    justify-content: stretch;
}

.product-card-buy {
    width: 100%;
    min-height: 56px;
    border-radius: 18px;
    padding-inline: 1.2rem;
    box-shadow: 0 18px 38px rgba(255, 70, 70, 0.16);
}

.product-card:hover .product-card-buy {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(255, 70, 70, 0.2);
}

.product-card:hover .product-card-buy::before {
    transform: translateX(0);
}

.buy-btn {
    padding: 0.78rem 1rem;
    border-radius: 16px;
}

.product-card-price-line {
    justify-content: space-between;
    gap: 16px;
}

.product-card-price-line span {
    font-size: 0.9rem;
}

#buyNowBtn {
    border-color: rgba(255, 122, 122, 0.32);
    background: linear-gradient(135deg, rgba(255, 92, 92, 0.24), rgba(255, 140, 75, 0.22));
    box-shadow: 0 22px 48px rgba(255, 70, 70, 0.22);
}

#buyNowBtn::before {
    transform: translateX(0);
    background: linear-gradient(120deg, rgba(255, 88, 88, 0.98), rgba(255, 140, 75, 0.92), rgba(255, 88, 88, 0.98));
}

#buyNowBtn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, transparent 34%, rgba(255, 255, 255, 0.16) 50%, transparent 66%);
    transform: translateX(-120%);
    animation: buyNowGlowSweep 5.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

#buyNowBtn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 26px 56px rgba(255, 70, 70, 0.28);
}

#buyNowBtn:hover::after {
    animation-duration: 3.2s;
}

@keyframes buyNowGlowSweep {
    0%,
    18% {
        transform: translateX(-120%);
    }
    48%,
    100% {
        transform: translateX(120%);
    }
}

.games-grid,
.feature-grid,
.feature-stack {
    display: grid;
    gap: 18px;
}

.games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.game-tile,
.feature-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(11, 11, 18, 0.82);
    box-shadow: var(--shadow);
}

.game-tile {
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    width: 100%;
}

.game-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 25;
    border-radius: 24px;
    border: 1px solid rgba(255, 70, 70, 0.16);
    background: rgba(11, 11, 18, 0.42);
}

.game-media-stack .game-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    object-fit: cover;
}

.game-img-hover {
    opacity: 0;
    transform: scale(1.04);
}

.game-tile {
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.game-tile:hover {
    transform: translateY(-4px);
}

.game-tile:hover .game-img-default {
    opacity: 0;
    transform: scale(1.06);
}

.game-tile:hover .game-img-hover {
    opacity: 1;
    transform: scale(1);
}

.game-tile span {
    display: none;
}

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

.feature-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

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

.product-skeleton-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
        rgba(11, 11, 18, 0.74);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.2);
}

.product-skeleton-media,
.product-skeleton-line,
.product-skeleton-btn {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.product-skeleton-media::after,
.product-skeleton-line::after,
.product-skeleton-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.14) 50%, transparent 80%);
    transform: translateX(-120%);
    animation: skeletonSweep 1.4s ease-in-out infinite;
}

.product-skeleton-media {
    aspect-ratio: 16 / 9;
}

.product-skeleton-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
}

.product-skeleton-line {
    height: 12px;
    border-radius: 999px;
}

.product-skeleton-line-title {
    width: 58%;
    height: 16px;
}

.product-skeleton-line-sub {
    width: 34%;
}

.product-skeleton-line-price {
    width: 28%;
}

.product-skeleton-btn {
    width: 100%;
    height: 48px;
    margin-top: 2px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 70, 70, 0.14), rgba(255, 140, 75, 0.12));
}

@keyframes skeletonSweep {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

.feature-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
}

.feature-media img,
.feature-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-media iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.feature-frame {
    padding: 0;
    overflow: hidden;
}

.feature-media-youtube {
    aspect-ratio: 16 / 9;
}

.feature-media-payment {
    aspect-ratio: 16 / 9;
    background:
        radial-gradient(circle at top left, rgba(255, 109, 70, 0.16), transparent 34%),
        rgba(7, 7, 12, 0.94);
}

.feature-media-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    padding: 22px 22px 24px;
    background:
        linear-gradient(180deg, rgba(7, 7, 12, 0.84) 0%, rgba(7, 7, 12, 0.48) 34%, rgba(7, 7, 12, 0.08) 68%),
        linear-gradient(135deg, rgba(255, 109, 70, 0.08), transparent 40%);
    pointer-events: none;
}

.feature-media-overlay h3 {
    font-size: clamp(1.06rem, 1.8vw, 1.28rem);
    line-height: 1.08;
}

.feature-media-overlay p {
    max-width: 32ch;
    color: rgba(255, 236, 199, 0.82);
    font-size: 0.98rem;
    line-height: 1.5;
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(8, 8, 14, 0.82);
    backdrop-filter: blur(18px);
}

.footer-shell {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    padding: 36px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto auto;
    align-items: center;
    gap: 24px;
}

.footer-brand-link {
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links svg {
    width: 16px;
    height: 16px;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
}

.footer-copy {
    color: var(--text-muted);
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: transparent;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: var(--cart-top, calc(var(--header-height) + 10px));
    left: var(--cart-left, calc(100vw - 364px));
    z-index: 1101;
    width: min(348px, calc(100vw - 24px));
    max-height: min(78vh, 520px);
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 78, 78, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 92, 92, 0.025), rgba(255, 255, 255, 0.015)),
        rgba(8, 8, 14, 0.98);
    border: 1px solid rgba(255, 122, 122, 0.16);
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease, visibility 200ms ease;
}

.cart-drawer.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.cart-drawer-head,
.cart-drawer-foot {
    padding: 16px 16px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cart-drawer-head > div {
    min-width: 0;
}

.cart-drawer-foot {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 0;
    margin-top: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 88, 88, 0.028));
}

.cart-drawer-head .eyebrow {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 122, 122, 0.92);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.cart-drawer-head h2 {
    display: none;
}

.cart-drawer .icon-close {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    flex: 0 0 auto;
}

.cart-drawer .icon-close svg {
    width: 13px;
    height: 13px;
}

.cart-drawer .icon-close:hover {
    border-color: rgba(255, 122, 122, 0.18);
    background: rgba(255, 70, 70, 0.08);
    color: #fff;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-empty-state {
    min-height: 176px;
    justify-content: center;
    border: 0;
    background: transparent;
    padding: 8px 6px 4px;
}

.cart-empty-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.42);
}

.cart-empty-icon svg {
    width: 18px;
    height: 18px;
}

.cart-empty-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.cart-empty-copy strong {
    font-size: 1rem;
}

.cart-empty-copy span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cart-item-card,
.summary-item {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.cart-item-media,
.summary-item-media {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.04);
}

.cart-item-copy,
.summary-item-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cart-item-copy span,
.summary-item-copy span,
.summary-item-copy small {
    color: var(--text-muted);
}

.cart-item-copy strong,
.summary-item-copy strong {
    font-size: 0.94rem;
}

.cart-item-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
    transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.qty-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(145, 101, 255, 0.28);
    background: rgba(145, 101, 255, 0.1);
}

.cart-item-side {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
}

.cart-summary-line,
.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cart-summary-line span {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cart-summary-line strong {
    font-size: 1.05rem;
}

.cart-footer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.cart-checkout-btn {
    min-height: 48px;
    border-radius: 16px;
}

.cart-checkout-btn::before {
    transform: translateX(0);
}

.cart-checkout-btn:hover::before {
    transform: translateX(0);
}

.cart-checkout-btn.is-disabled {
    opacity: 0.56;
    pointer-events: none;
    box-shadow: none;
}

.cart-checkout-btn.is-disabled::before {
    opacity: 0.65;
}

#cartClearBtn[hidden] {
    display: none !important;
}

.product-section {
    padding-top: 18px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.back-link svg {
    width: 18px;
    height: 18px;
}

.product-render {
    min-height: 420px;
}

.product-render.is-pending {
    min-height: 680px;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 22px;
}

.product-gallery-panel,
.product-side-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-layout-enter {
    animation: productPageIn 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes productPageIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-main-media {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow);
}

.product-main-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-main-media:hover img {
    transform: scale(1.03);
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.thumb-btn {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    transition: transform var(--transition), border-color var(--transition);
}

.thumb-btn.active,
.thumb-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 122, 0.28);
}

.product-title {
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.02;
}

.product-description-card,
.product-summary-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-description {
    margin-top: 4px;
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.meta-box {
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
}

.variant-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-purchase-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.variant-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
    text-align: left;
}

.variant-card.active,
.variant-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 122, 0.28);
    background: rgba(255, 70, 70, 0.08);
}

.variant-card.premium {
    border-color: rgba(255, 220, 138, 0.16);
    background: linear-gradient(135deg, rgba(255, 214, 122, 0.05), rgba(255, 255, 255, 0.03));
}

.variant-card.premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 32%, rgba(255, 225, 158, 0.18) 50%, transparent 68%);
    transform: translateX(-130%);
    transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.variant-card.premium:hover::after,
.variant-card.premium.active::after {
    transform: translateX(120%);
}

.variant-card.premium.active {
    border-color: rgba(255, 220, 138, 0.38);
    background: linear-gradient(135deg, rgba(255, 214, 122, 0.12), rgba(255, 255, 255, 0.04));
    box-shadow: 0 18px 38px rgba(255, 210, 92, 0.08);
}

.variant-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.variant-copy small {
    color: var(--text-muted);
}

.variant-note {
    color: rgba(255, 226, 156, 0.84);
    font-size: 0.78rem;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.variant-price {
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.variant-price-stack {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.variant-price-stack s,
.product-price-compare {
    color: var(--text-muted);
}

.action-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: nowrap;
}

.price-display > span {
    color: var(--text-muted);
    font-size: 0.92rem;
    white-space: nowrap;
}

#productPriceStack {
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: nowrap;
}

#productPriceStack strong {
    font-size: clamp(1.5rem, 2.3vw, 2rem);
    font-weight: 800;
    line-height: 1;
}

#productPriceStack s {
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1;
}

.action-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-row-stack {
    flex-direction: column;
    align-items: stretch;
}

.add-cart-wide-btn {
    min-height: 54px;
    border-radius: 18px;
}

.payment-mini-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem 0 0;
}

.payment-mini-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

.checkout-main {
    min-height: 100vh;
    padding: 32px 0 48px;
}

.checkout-shell {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.checkout-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
}

.checkout-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.checkout-grid,
.invoice-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: start;
}

.checkout-form-panel,
.invoice-detail-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-card,
.summary-card strong {
    color: #fff;
}

.summary-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.summary-total-row {
    margin: 10px 0 18px;
}

.summary-total-row strong,
.invoice-total {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3rem);
    letter-spacing: -0.04em;
}

.checkout-items-list,
.summary-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-lines {
    margin-top: 18px;
}

.summary-line.total {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.invoice-steps {
    margin: 20px 0 24px;
}

.step-card {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
}

.step-card.active,
.step-card.complete {
    color: #fff;
}

.step-card.active {
    border-color: rgba(255, 122, 122, 0.44);
}

.step-card.complete {
    border-color: rgba(156, 255, 213, 0.24);
}

.step-index {
    display: block;
    margin-bottom: 10px;
    color: var(--red-soft);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field-group > span {
    font-weight: 600;
}

.field-group small {
    color: var(--text-muted);
}

.field-group input {
    width: 100%;
    padding: 0.98rem 1rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.field-inline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    text-align: left;
    transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.payment-method-card.active,
.payment-method-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 122, 0.3);
    background: rgba(255, 70, 70, 0.08);
}

.payment-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.payment-icon svg {
    width: 22px;
    height: 22px;
}

.payment-logo-box {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
}

.payment-logo-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payment-logo-box-stripe {
    padding: 0;
}

.payment-logo-box-paypal {
    padding: 0;
}

.payment-logo-box-ltc {
    padding: 0;
}

.payment-copy {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.payment-copy-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.payment-method-art {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.payment-method-art img {
    display: block;
    width: auto;
    height: 28px;
    max-width: min(300px, 48vw);
    object-fit: contain;
}

.payment-copy small,
.form-feedback,
.inline-note,
.note-banner {
    color: var(--text-muted);
}

.form-feedback[data-state="error"] {
    color: #ffb2b2;
}

.form-feedback[data-state="info"] {
    color: var(--green);
}

.invoice-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.invoice-info-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.invoice-info-row dt {
    color: var(--text-muted);
}

.invoice-info-row dd {
    display: inline-flex;
    align-items: center;
    justify-content: end;
    gap: 8px;
    flex-wrap: wrap;
    text-align: right;
}

.instruction-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.status-banner,
.note-banner {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.status-banner[data-state="completed"] {
    color: var(--green);
    border-color: rgba(156, 255, 213, 0.24);
}

.status-banner[data-state="pending"] {
    color: #ffd38d;
    border-color: rgba(255, 140, 75, 0.22);
}

.instruction-step {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.instruction-index {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 70, 70, 0.1);
    color: var(--red-soft);
    font-weight: 700;
}

.instruction-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.instruction-value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.instruction-value-pack {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
}

.instruction-value-text {
    word-break: break-all;
}

.instruction-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.icon-copy-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    transition: transform var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
}

.icon-copy-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 122, 122, 0.26);
    background: rgba(255, 70, 70, 0.08);
    color: #fff;
}

.icon-copy-btn svg {
    width: 16px;
    height: 16px;
}

.crypto-qr-card {
    display: grid;
    place-items: center;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.crypto-qr-image {
    width: min(220px, 100%);
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 18px;
}

.clips-shell {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.clip-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(11, 11, 18, 0.82);
    box-shadow: var(--shadow);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.clip-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 122, 0.22);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
}

.clip-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.clip-card-media video {
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
}

.clip-card:hover .clip-card-media video {
    transform: scale(1.03);
    filter: saturate(1.08);
}

.clip-play-pill {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(8, 8, 14, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.clip-card-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
}

.clip-card-copy span {
    color: var(--text-muted);
}

.clips-title {
    animation: clipsTitleRise 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes clipsTitleRise {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.clip-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.clip-modal.active {
    opacity: 1;
    visibility: visible;
}

.clip-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 8, 0.78);
    backdrop-filter: blur(8px);
}

.clip-modal-dialog {
    position: relative;
    width: min(980px, calc(100% - 24px));
    margin: 48px auto 0;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: rgba(8, 8, 14, 0.94);
    box-shadow: var(--shadow);
}

.clip-modal-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.clip-player-wrap {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: #000;
}

.clip-player-wrap video {
    width: 100%;
    height: auto;
}

.ops-auth-page,
.ops-page {
    min-height: 100vh;
    padding: 36px 0 48px;
}

.ops-auth-shell,
.ops-shell {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto;
}

.ops-auth-shell {
    min-height: calc(100vh - 84px);
    display: grid;
    place-items: center;
}

.ops-auth-card {
    width: min(480px, 100%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ops-auth-brand {
    width: fit-content;
}

.ops-auth-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ops-auth-copy h1,
.ops-panel-head h2 {
    font-family: var(--font-display);
    letter-spacing: -0.04em;
}

.ops-topbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.ops-topbar-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ops-topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ops-range-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.ops-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.ops-stat-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 168px;
}

.ops-stat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-soft);
}

.ops-stat-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 70, 70, 0.08);
    color: var(--red-soft);
    border: 1px solid rgba(255, 122, 122, 0.16);
}

.ops-stat-icon svg {
    width: 18px;
    height: 18px;
}

.ops-stat-card strong {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.ops-panels-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 18px;
}

.ops-chart-card,
.ops-pages-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ops-panel-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.ops-panel-head p,
.ops-auth-copy p {
    color: var(--text-soft);
}

.ops-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(34px, 1fr));
    align-items: end;
    gap: 10px;
    min-height: 280px;
}

.ops-chart-col {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 8px;
    min-height: 100%;
}

.ops-chart-bars {
    position: relative;
    height: 180px;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 4px;
}

.ops-chart-bar {
    width: 12px;
    min-height: 4px;
    border-radius: 999px 999px 4px 4px;
}

.ops-chart-bar-pageviews {
    background: linear-gradient(180deg, rgba(255, 140, 75, 0.88), rgba(255, 70, 70, 0.84));
}

.ops-chart-bar-visits {
    background: linear-gradient(180deg, rgba(94, 168, 255, 0.86), rgba(94, 168, 255, 0.48));
}

.ops-chart-values,
.ops-chart-label {
    display: block;
    text-align: center;
}

.ops-chart-values {
    color: var(--text-soft);
    font-size: 0.74rem;
}

.ops-chart-label {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.ops-page-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ops-page-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.ops-page-row code {
    max-width: calc(100% - 80px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1120px) {
    .hero-shell,
    .product-layout,
    .checkout-grid,
    .invoice-layout,
    .ops-panels-grid,
    .experience-shell,
    .footer-shell {
        grid-template-columns: 1fr;
    }

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

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

    .footer-meta {
        align-items: start;
    }
}

@media (max-width: 980px) {
    .products-skeleton-grid,
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
        position: relative;
        flex-shrink: 0;
    }

    .nav-panel {
        position: fixed;
        top: calc(var(--header-height) + 8px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(8, 8, 14, 0.98);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    .nav-panel.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links,
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
    }

    .nav-links a::after {
        bottom: -4px;
    }
}

@media (max-width: 720px) {
    .section-shell,
    .footer-shell,
    .checkout-shell,
    .site-nav {
        width: calc(100% - 24px);
    }

    .hero-stats,
    .ops-stats-grid,
    .meta-grid,
    .feature-grid,
    .feature-stack,
    .clips-grid,
    .products-skeleton-grid,
    .products-grid,
    .games-grid,
    .checkout-steps {
        grid-template-columns: 1fr;
    }

    .hero-preview-card {
        aspect-ratio: 16 / 9;
    }

    .hero-badge {
        font-size: 0.74rem;
    }

    .hero-copy {
        max-width: none;
        padding-right: 0;
    }

    .hero-preview {
        max-width: none;
        margin-right: 0;
    }

    .hero-stat-card {
        padding: 16px;
    }

    .price-display {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    #productPriceStack {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero-preview-nav {
        width: 40px;
        height: 40px;
    }

    .hero-preview-prev {
        left: 12px;
    }

    .hero-preview-next {
        right: 12px;
    }

    .hero-preview-overlay {
        padding: 18px 18px 30px;
    }

    .cart-drawer {
        top: calc(var(--header-height) + 8px);
        left: 12px;
        right: 12px;
        width: auto;
        max-height: calc(100vh - var(--header-height) - 20px);
        transform-origin: top center;
    }

    .ops-topbar {
        align-items: stretch;
    }

    .ops-topbar,
    .ops-topbar-actions {
        flex-direction: column;
    }

    .ops-chart {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .product-card-foot,
    .product-card-actions,
    .action-row,
    .field-inline,
    .summary-item,
    .cart-item-card,
    .instruction-value-row {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .product-card-actions,
    .action-row,
    .instruction-actions {
        flex-direction: column;
    }

    .thumb-btn,
    .icon-square-btn {
        width: 100%;
    }
}

.category-main .section-categories {
    padding-top: 0;
}

.game-tile {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-hero-section {
    padding-bottom: 18px;
}

.category-hero-shell {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.category-head .section-copy {
    max-width: 58ch;
}

.category-products-section {
    padding-top: 0;
}

.feature-frame {
    min-height: 100%;
}

.checkout-main {
    padding: 20px 0 34px;
}

.checkout-topbar {
    margin-bottom: 18px;
}

.checkout-grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
}

.invoice-layout {
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.checkout-form-panel,
.invoice-detail-panel {
    gap: 16px;
}

.checkout-steps {
    gap: 10px;
}

.step-card {
    padding: 13px 14px;
}

.step-index {
    margin-bottom: 8px;
}

.checkout-form {
    gap: 14px;
}

.field-group {
    gap: 8px;
}

.field-group small[data-state="success"] {
    color: var(--green);
}

.field-group small[data-state="error"] {
    color: #ffb2b2;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-method-card {
    min-height: 0;
    padding: 15px 16px;
    align-items: center;
}

.payment-icon {
    width: 44px;
    height: 44px;
}

body.cursor-enabled input[type="range"],
body.cursor-enabled .clip-player-stage,
body.cursor-enabled .clip-player-controls,
body.cursor-enabled .clip-control-btn,
body.cursor-enabled .clip-player-nav,
body.cursor-enabled .clip-sound-hint,
body.cursor-enabled .hero-preview-card,
body.cursor-enabled .game-tile {
    cursor: none;
}

.hero-preview-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(8, 8, 14, 0.48);
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.hero-preview-card:hover .hero-preview-play,
.hero-preview-play:focus-visible,
.hero-preview-play.paused {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.hero-preview-play:hover {
    background: rgba(255, 82, 82, 0.18);
    border-color: rgba(255, 140, 75, 0.38);
}

.hero-preview-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-preview-play-icon-play svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.hero-preview-play-icon-pause {
    gap: 6px;
}

.hero-preview-play-icon-pause span,
.clip-stage-icon-pause span,
.clip-control-icon-pause span {
    width: 4px;
    height: 20px;
    border-radius: 999px;
    background: currentColor;
}

.hero-preview-play .hero-preview-play-icon-play {
    display: none;
}

.hero-preview-play.paused .hero-preview-play-icon-play {
    display: inline-flex;
}

.hero-preview-play.paused .hero-preview-play-icon-pause {
    display: none;
}

.clip-modal-dialog {
    width: min(1120px, calc(100% - 24px));
    padding: 18px 18px 20px;
}

.clip-player-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
        rgba(6, 6, 11, 0.96);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.clip-player-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.clip-player-wrap video,
.clip-player-stage video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clip-player-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 4, 8, 0.06), transparent 55%, rgba(4, 4, 8, 0.58));
    pointer-events: none;
}

.clip-player-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(10, 10, 16, 0.44);
    color: #fff;
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition), opacity var(--transition);
}

.clip-player-nav:hover {
    transform: translateY(-50%) scale(1.04);
    background: rgba(255, 82, 82, 0.18);
    border-color: rgba(255, 140, 75, 0.32);
}

.clip-player-nav svg {
    width: 20px;
    height: 20px;
}

.clip-player-nav-prev {
    left: 18px;
}

.clip-player-nav-next {
    right: 18px;
}

.clip-player-nav[hidden] {
    display: none;
}

.clip-stage-toggle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 84px;
    height: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(7, 7, 11, 0.44);
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34);
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.clip-player-stage:hover .clip-stage-toggle,
.clip-stage-toggle:focus-visible,
.clip-stage-toggle.paused {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.clip-stage-toggle:hover {
    background: rgba(255, 82, 82, 0.18);
    border-color: rgba(255, 140, 75, 0.38);
}

.clip-stage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.clip-stage-icon-play svg,
.clip-control-icon-play svg,
.clip-stage-icon-pause svg,
.clip-control-icon-pause svg,
.clip-control-icon-volume svg,
.clip-control-icon-muted svg,
.clip-sound-hint-icon svg {
    width: 26px;
    height: 26px;
}

.clip-stage-icon-play svg,
.clip-control-icon-play svg {
    margin-left: 4px;
}

.clip-stage-icon-pause,
.clip-control-icon-pause {
    display: inline-flex;
}

.clip-stage-toggle .clip-stage-icon-play,
.clip-control-btn .clip-control-icon-play,
.clip-control-btn .clip-control-icon-muted {
    display: none;
}

.clip-stage-toggle.paused .clip-stage-icon-play,
.clip-stage-toggle.is-paused .clip-stage-icon-play,
.clip-control-btn.paused .clip-control-icon-play {
    display: inline-flex;
}

.clip-stage-toggle.paused .clip-stage-icon-pause,
.clip-stage-toggle.is-paused .clip-stage-icon-pause,
.clip-control-btn.paused .clip-control-icon-pause {
    display: none;
}

.clip-control-btn.is-paused .clip-control-icon-play {
    display: inline-flex;
}

.clip-control-btn.is-paused .clip-control-icon-pause {
    display: none;
}

.clip-control-btn.is-muted .clip-control-icon-volume {
    display: none;
}

.clip-control-btn.is-muted .clip-control-icon-muted {
    display: inline-flex;
}

.clip-sound-hint {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(9, 9, 14, 0.7);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.clip-sound-hint-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.clip-sound-hint-text {
    display: inline-flex;
    align-items: center;
}

.clip-sound-hint:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 140, 75, 0.3);
    background: rgba(255, 82, 82, 0.16);
}

.clip-sound-hint[hidden] {
    display: none;
}

.clip-player-controls {
    padding: 0 18px 18px;
}

.clip-progress-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 14px;
}

.clip-progress-input,
.clip-volume-input {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 122, 122, 0.92) 0%, rgba(255, 140, 75, 0.92) var(--progress, 0%), rgba(255, 255, 255, 0.12) var(--progress, 0%), rgba(255, 255, 255, 0.12) 100%);
    outline: none;
}

.clip-volume-input {
    width: 120px;
    background: linear-gradient(90deg, rgba(255, 122, 122, 0.9) 0%, rgba(255, 140, 75, 0.9) var(--volume-progress, 100%), rgba(255, 255, 255, 0.12) var(--volume-progress, 100%), rgba(255, 255, 255, 0.12) 100%);
}

.clip-progress-input::-webkit-slider-thumb,
.clip-volume-input::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 122, 122, 0.18);
}

.clip-progress-input::-moz-range-thumb,
.clip-volume-input::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 122, 122, 0.18);
}

.clip-progress-input::-moz-range-track,
.clip-volume-input::-moz-range-track {
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: transparent;
}

.clip-time {
    min-width: 92px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.86rem;
    font-weight: 600;
    text-align: right;
}

.clip-controls-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.clip-control-btn {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition), opacity var(--transition);
}

.clip-control-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 82, 82, 0.16);
    border-color: rgba(255, 140, 75, 0.3);
}

.clip-control-btn.muted {
    opacity: 0.72;
}

@media (max-width: 820px) {
    .hero-preview-play {
        width: 62px;
        height: 62px;
    }

    .clip-modal-dialog {
        width: calc(100% - 16px);
        margin-top: 18px;
        padding: 14px;
    }

    .clip-player-nav {
        width: 44px;
        height: 44px;
    }

    .clip-player-nav-prev {
        left: 10px;
    }

    .clip-player-nav-next {
        right: 10px;
    }

    .clip-stage-toggle {
        width: 68px;
        height: 68px;
    }

    .clip-sound-hint {
        left: 12px;
        right: 12px;
        bottom: 12px;
        justify-content: center;
    }

    .clip-progress-row,
    .clip-controls-row {
        flex-wrap: wrap;
    }

    .clip-time {
        min-width: auto;
        text-align: left;
    }

    .clip-volume-input {
        width: 100%;
    }
}

.payment-copy {
    gap: 4px;
}

.payment-copy small {
    font-size: 0.86rem;
    line-height: 1.4;
}

.payment-method-art img {
    height: 26px;
    max-width: min(280px, 44vw);
}

#checkoutSubmit {
    margin-top: 2px;
}

.summary-line-discount span,
.summary-line-discount strong {
    color: #9cffd5;
}

.status-banner span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.45;
}

.invoice-summary-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.invoice-delivery-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.invoice-delivery-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.invoice-receive-copy {
    color: var(--text-muted);
    line-height: 1.6;
}

.invoice-wait-spinner {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 122, 122, 0.96),
        rgba(255, 170, 120, 0.82),
        rgba(255, 255, 255, 0.06)
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    animation: invoiceWaitSpin 1.1s linear infinite;
}

.invoice-deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.invoice-deliverable-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.invoice-deliverable-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.invoice-deliverable-copy strong {
    color: #fff;
}

.invoice-deliverable-copy code {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.24);
    color: #ffe9c7;
    white-space: pre-wrap;
    word-break: break-word;
}

.invoice-email-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.invoice-payment-complete {
    gap: 10px;
}

.ops-funnel-card {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ops-funnel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ops-funnel-node {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.ops-funnel-step {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.ops-funnel-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ops-funnel-step strong {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.6vw, 2.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.ops-funnel-caption {
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.45;
}

.ops-funnel-meter {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.ops-funnel-meter-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 122, 122, 0.96), rgba(255, 170, 120, 0.92));
}

.ops-funnel-arrow {
    width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
}

.ops-funnel-arrow svg {
    width: 18px;
    height: 18px;
}

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

@media (max-width: 1080px) {
    .games-grid,
    .ops-funnel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .checkout-grid,
    .invoice-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .ops-funnel-label {
        letter-spacing: 0.05em;
    }

    .games-grid,
    .feature-stack,
    .ops-funnel {
        grid-template-columns: 1fr;
    }

    .invoice-deliverable-row,
    .invoice-email-banner,
    .invoice-delivery-head {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .ops-funnel-node {
        flex-direction: column;
    }

    .ops-funnel-arrow {
        width: 100%;
        transform: rotate(90deg);
    }
}

.dashboard-main {
    padding-bottom: 96px;
}

.dashboard-section {
    padding-top: calc(var(--header-height) + 34px);
}

.dashboard-shell {
    display: grid;
    gap: 32px;
    width: min(1260px, 100%);
    margin: 0 auto;
}

.dashboard-panel,
.dashboard-guide-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
        rgba(10, 10, 18, 0.88);
    box-shadow: var(--shadow);
}

.dashboard-login-card,
.dashboard-guide-shell {
    padding: 38px;
}

.dashboard-card-glow {
    position: absolute;
    inset: auto -10% -30% auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 70, 70, 0.28), transparent 70%);
    filter: blur(12px);
    pointer-events: none;
}

.dashboard-title {
    max-width: 14ch;
    margin-top: 10px;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.dashboard-title-kicker {
    position: relative;
    display: inline-block;
    margin-right: 0.2em;
    color: transparent;
    background: linear-gradient(120deg, #fff 10%, #ff8f8f 42%, #ffb45d 70%, #fff 100%);
    background-size: 240% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: dashboardCustomerGlow 5.5s ease-in-out infinite;
}

.dashboard-subtitle,
.dashboard-guide-copy,
.dashboard-download-copy p,
.dashboard-step-copy p {
    color: var(--text-soft);
}

.dashboard-subtitle {
    max-width: 70ch;
    margin-top: 18px;
    font-size: 1.02rem;
}

.dashboard-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.dashboard-chip {
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-soft);
    font-size: 0.92rem;
}

.dashboard-key-form {
    display: grid;
    gap: 16px;
    margin-top: 32px;
    width: min(760px, 100%);
    max-width: 100%;
}

.dashboard-input-card {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: center;
    min-height: 78px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.dashboard-input-card:focus-within {
    border-color: rgba(255, 70, 70, 0.5);
    box-shadow: 0 0 0 5px rgba(255, 70, 70, 0.08);
    transform: translateY(-1px);
}

.dashboard-input-icon {
    display: grid;
    place-items: center;
    align-self: stretch;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    color: var(--red-soft);
}

.dashboard-input-icon svg {
    width: 24px;
    height: 24px;
}

.dashboard-input-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 14px 24px 14px 18px;
}

.dashboard-input-label {
    color: rgba(247, 247, 251, 0.46);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dashboard-input {
    display: block;
    min-width: 0;
    height: 100%;
    width: 100%;
    padding: 0;
    background: transparent;
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.35;
    appearance: none;
    -webkit-appearance: none;
    -webkit-text-fill-color: var(--text);
}

.dashboard-input::placeholder {
    color: rgba(247, 247, 251, 0.42);
    opacity: 1;
}

.dashboard-submit {
    width: 100%;
    min-height: 64px;
    justify-content: center;
    font-size: 1rem;
    border-radius: 20px;
}

.dashboard-error {
    min-height: 24px;
    color: #ff9a9a;
    font-weight: 500;
}

.dashboard-guide-shell[hidden] {
    display: none;
}

.dashboard-guide-head {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
}

.dashboard-guide-title,
.dashboard-download-copy h3 {
    margin-top: 10px;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    letter-spacing: -0.04em;
}

.dashboard-download-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 28px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 70, 70, 0.12), rgba(255, 140, 75, 0.06)),
        rgba(255, 255, 255, 0.03);
}

.dashboard-download-copy {
    display: grid;
    gap: 10px;
}

.dashboard-download-btn {
    min-width: 230px;
    justify-content: center;
    white-space: nowrap;
}

.dashboard-download-btn svg {
    width: 18px;
    height: 18px;
}

.dashboard-steps-grid {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.dashboard-step-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 20px;
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.dashboard-step-danger {
    background: linear-gradient(135deg, rgba(255, 70, 70, 0.12), rgba(255, 255, 255, 0.03));
}

.dashboard-step-featured {
    background: linear-gradient(135deg, rgba(255, 70, 70, 0.12), rgba(255, 140, 75, 0.08));
}

.dashboard-step-success {
    background: linear-gradient(135deg, rgba(156, 255, 213, 0.12), rgba(255, 255, 255, 0.03));
}

.dashboard-step-index {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--red-soft);
}

.dashboard-step-copy {
    display: grid;
    gap: 12px;
}

.dashboard-step-copy h3 {
    font-size: 1.18rem;
}

.dashboard-step-body {
    color: var(--text-soft);
    line-height: 1.7;
}

.dashboard-step-body p + ul,
.dashboard-step-body p + ol {
    margin-top: 12px;
}

.dashboard-step-body ul,
.dashboard-step-body ol {
    padding-left: 1.2rem;
}

.dashboard-step-body li + li {
    margin-top: 8px;
}

.dashboard-step-body a {
    color: #ffb097;
    text-decoration: underline;
    text-decoration-color: rgba(255, 176, 151, 0.35);
    text-underline-offset: 0.18em;
}

.dashboard-step-body a:hover {
    color: #ffd6c9;
}

.dashboard-login-card.is-unlocked {
    opacity: 0.82;
    transform: scale(0.995);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1080px) {
    .dashboard-download-card,
    .dashboard-guide-head {
        flex-direction: column;
    }

    .dashboard-download-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .dashboard-login-card,
    .dashboard-guide-shell {
        padding: 24px;
    }

    .dashboard-step-card {
        grid-template-columns: 1fr;
    }

    .dashboard-step-index {
        width: 60px;
        height: 60px;
    }
}

@keyframes dashboardCustomerGlow {
    0%,
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 0 rgba(255, 132, 132, 0));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 12px rgba(255, 132, 132, 0.16));
    }
}
