/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-tertiary: #1a1a1a;
    --glow: rgba(17, 142, 255, 0.12);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-tertiary: #707070;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.15);
    --btn-bg: #1a1a1a;
    --btn-bg-hover: #252525;
    --btn-border: rgba(255, 255, 255, 0.08);
    --btn-border-hover: rgba(255, 255, 255, 0.12);
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --safe-area-top: env(safe-area-inset-top, 0px);
    --safe-area-right: env(safe-area-inset-right, 0px);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-left: env(safe-area-inset-left, 0px);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-tap-highlight-color: transparent;
}

body.loading {
    overflow: hidden;
}

/* ===== Loading Screen ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.loading-screen__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 35%, rgba(17, 142, 255, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-screen.hidden {
    display: none;
}

.loading-screen__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem;
    max-width: 320px;
}

.loading-screen__logo {
    width: 100px;
    height: auto;
    animation: loadingLogoPulse 2.2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(17, 142, 255, 0.2));
}

@keyframes loadingLogoPulse {
    0%, 100% {
        opacity: 0.9;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.03);
    }
}

.loading-screen__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.loading-screen__progress {
    width: 100%;
    max-width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.25rem;
}

.loading-screen__progress-bar {
    height: 100%;
    width: 35%;
    border-radius: 3px;
    background: linear-gradient(90deg, transparent, rgba(17, 142, 255, 0.6), rgba(17, 142, 255, 0.9), rgba(17, 142, 255, 0.6), transparent);
    background-size: 200% 100%;
    animation: loadingProgressShimmer 1.8s ease-in-out infinite;
}

@keyframes loadingProgressShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(400%);
    }
}

@media (max-width: 768px) {
    .loading-screen__logo {
        width: 88px;
    }
    
    .loading-screen__text {
        font-size: 0.875rem;
    }
    
    .loading-screen__progress {
        max-width: 160px;
    }
}

/* ===== Page index (landing) – purple atmospheric background ===== */
.page-index {
    background: #0a0a0a;
}

.page-index::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh; /* dynamic viewport fallback */
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 100% 100% at 50% 50%, transparent 28%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.45) 100%),
        radial-gradient(ellipse 180% 140% at 50% 8%, var(--glow) 0%, rgba(17, 142, 255, 0.06) 42%, transparent 68%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 0 0;
    animation: atmosphereGlow 12s ease-in-out infinite;
}

@keyframes atmosphereGlow {
    0%, 100% { opacity: 0.96; }
    50% { opacity: 1; }
}

/* Animated gloss lines (index background) – single vertical lines with gloss moving down */
.page-index .gloss-lines {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-index .gloss-line {
    position: absolute;
    left: var(--left, 50%);
    top: 0;
    width: 1px;
    height: 100%;
    background-image:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05)),
        linear-gradient(
            to bottom,
            transparent 0%,
            transparent 25%,
            rgba(255, 255, 255, 0.25) 50%,
            transparent 75%,
            transparent 100%
        );
    background-size: 100% 100%, 100% 20%;
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, 0 -20%;
    animation: glossDownLine 5s linear infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes glossDownLine {
    0% { background-position: 0 0, 0 -20%; }
    100% { background-position: 0 0, 0 100%; }
}

/* Snowflake effect (index only) */
.page-index .snowflakes {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-index .snowflake {
    position: absolute;
    top: -20px;
    background: #fff;
    border-radius: 50%;
    animation: snowfall linear infinite;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(100vh) translateX(30px);
    }
}

.page-index .header {
    position: fixed;
    top: max(1rem, env(safe-area-inset-top));
    left: max(2rem, env(safe-area-inset-left));
    right: max(2rem, env(safe-area-inset-right));
    width: auto;
    margin: 0 auto;
    max-width: 1280px;
    border-radius: 16px;
    border-bottom: none;
    padding: 0.85rem 0;
    padding-top: max(0.85rem, env(safe-area-inset-top));
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
    background: rgba(10, 10, 10, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 9999;
}
.page-index .header.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.75);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.page-index .header.scrolled .nav {
    gap: 1.25rem;
}

.page-index .header.scrolled .nav__left,
.page-index .header.scrolled .nav__center,
.page-index .header.scrolled .nav__right {
    gap: 1.25rem;
}

.page-index .header.scrolled .navbar-logo {
    height: 28px;
}

.page-index .header.scrolled .nav__link {
    font-size: 0.8125rem;
}

.page-index .header.scrolled .nav__users-badge {
    padding: 0.28rem 0.65rem;
    font-size: 0.6875rem;
    gap: 0.35rem;
}

.page-index .header.scrolled .nav__users-dot {
    width: 4px;
    height: 4px;
}
.page-index .header .nav {
    gap: 1.75rem;
}
.page-index .header .nav__left,
.page-index .header .nav__center,
.page-index .header .nav__right {
    gap: 1.75rem;
}
.page-index .header .navbar-logo {
    height: 34px;
}
.page-index .header .nav__link {
    font-size: 0.9375rem;
}
.page-index .hero,
.page-index .why-choose,
.page-index .games,
.page-index .products-status,
.page-index .executors,
.page-index .software-action,
.page-index .pricing,
.page-index .recent-feedback,
.page-index .discord-community,
.page-index .footer {
    position: relative;
    z-index: 1;
}

.page-index .why-choose,
.page-index .games,
.page-index .products-status,
.page-index .executors,
.page-index .software-action,
.page-index .pricing,
.page-index .recent-feedback,
.page-index .discord-community,
.page-index .footer {
    background: transparent !important;
}

.page-index .why-choose-card,
.page-index .game-card,
.page-index .executor-card,
.page-index .pricing-card,
.page-index .recent-feedback-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.page-index .discord-community__card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.page-index .recent-feedback__fade--left {
    background: linear-gradient(to right, rgba(10, 10, 10, 0.82), transparent) !important;
}

.page-index .recent-feedback__fade--right {
    background: linear-gradient(to left, rgba(10, 10, 10, 0.82), transparent) !important;
}


/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 0;
    padding-top: max(1rem, env(safe-area-inset-top));
    transition: all var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.6);
    border-bottom: 1px solid var(--border-color);
}

.header.scrolled {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 10, 10, 0.7);
    padding: 0.5rem 0;
}

.header.scrolled .nav {
    gap: 1.25rem;
}

.header.scrolled .nav__left,
.header.scrolled .nav__center,
.header.scrolled .nav__right {
    gap: 1.25rem;
}

.header.scrolled .navbar-logo {
    height: 28px;
}

.header.scrolled .nav__link {
    font-size: 0.8125rem;
}

.header.scrolled .nav__link-icon {
    font-size: 0.75rem;
}

.header.scrolled .nav__users-badge {
    padding: 0.28rem 0.65rem;
    font-size: 0.6875rem;
    gap: 0.35rem;
}

.header.scrolled .nav__users-dot {
    width: 4px;
    height: 4px;
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: max(2rem, env(safe-area-inset-left));
    padding-right: max(2rem, env(safe-area-inset-right));
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: gap var(--transition-smooth);
}

.nav__left,
.nav__center,
.nav__right {
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: gap var(--transition-smooth);
}

.nav__center {
    flex: 1;
    justify-content: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity var(--transition-fast);
    display: flex;
    align-items: center;
}

.logo:hover {
    opacity: 0.8;
}

.navbar-logo {
    height: 36px;
    width: auto;
    display: block;
    transition: height var(--transition-smooth);
}

.nav__link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color var(--transition-fast), font-size var(--transition-smooth);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__link:hover {
    color: var(--text-primary);
}

.nav__link-icon {
    font-size: 0.875rem;
    transition: font-size var(--transition-smooth);
}

.nav__link--login {
    color: var(--text-primary);
}

.nav__users-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(38, 46, 48, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: padding var(--transition-smooth), font-size var(--transition-smooth), gap var(--transition-smooth);
}

.nav__users-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    transition: width var(--transition-smooth), height var(--transition-smooth);
}

.nav__users-count {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

.nav__users-label {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Nav CTA Button ===== */
.nav-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    white-space: nowrap;
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-cta:active {
    transform: translateY(0);
}

.nav-cta__icon {
    font-size: 0.875rem;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    z-index: 1;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-index .hero {
    background: transparent !important;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 120% 100% at 30% 50%, rgba(17, 142, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 70% 50%, rgba(17, 142, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.008) 2px, rgba(255, 255, 255, 0.008) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.008) 2px, rgba(255, 255, 255, 0.008) 4px);
    background-size: 100px 100px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    animation: noiseMove 20s linear infinite;
}

@keyframes noiseMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}


.hero__logo {
    width: 120px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    animation: logoPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 16px rgba(17, 142, 255, 0.25));
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0.92;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.04);
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(34, 197, 94, 0.95);
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 6px;
    padding: 0.35rem 0.65rem;
    margin-bottom: 1.25rem;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    display: block;
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.4);
}

.hero__badge-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.hero__badge-text {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.hero__headline {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 2rem 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    position: relative;
    animation: headlineReveal 0.8s ease-out;
}

@keyframes headlineReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__headline::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at 50% 50%, rgba(17, 142, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: headlineGlow 4s ease-in-out infinite;
}

@keyframes headlineGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.hero__headline-gradient {
    position: relative;
    background: linear-gradient(135deg, rgba(17, 142, 255, 1) 0%, rgba(17, 142, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(17, 142, 255, 0.3));
}

.hero__headline .hero__headline-rest {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.05);
}

.hero__subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0 0 2rem 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}


.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    letter-spacing: -0.01em;
    height: 44px;
}

.hero__cta--primary {
    background: linear-gradient(135deg, rgba(17, 142, 255, 0.95) 0%, rgba(17, 142, 255, 0.85) 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(17, 142, 255, 0.25), 0 0 0 1px rgba(17, 142, 255, 0.1);
}

.hero__cta--primary:hover {
    background: linear-gradient(135deg, rgba(17, 142, 255, 1) 0%, rgba(17, 142, 255, 0.9) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(17, 142, 255, 0.35), 0 0 0 1px rgba(17, 142, 255, 0.15);
}

.hero__cta--secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    height: 44px;
}

.hero__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero__visual {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    opacity: 1;
    animation: visualFadeIn 1s ease-out 0.3s both;
}

@keyframes visualFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero__card {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero__card--primary {
    animation-delay: 0s;
    border-color: rgba(17, 142, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(17, 142, 255, 0.1);
}

.hero__card--secondary {
    animation-delay: 3s;
    opacity: 0.85;
}

.hero__card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

.hero__card--primary:hover {
    border-color: rgba(17, 142, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(17, 142, 255, 0.2);
}

.hero__card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(17, 142, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero__card-content {
    position: relative;
    z-index: 1;
}

.hero__card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.875rem;
}

.hero__card-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    letter-spacing: 0.03em;
}

.hero__card-status {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.4);
}

.hero__card-status--pending {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.hero__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    position: relative;
    z-index: 2;
}

.hero__card-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.hero__subtitle {
    font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero__description {
    font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin-bottom: 1.75rem;
    max-width: 100%;
}

.hero__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem 1.75rem;
    margin-bottom: 1.75rem;
    max-width: 100%;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.hero__feature-icon {
    width: 6px;
    height: 6px;
    background: rgba(17, 142, 255, 0.9);
    display: block;
    flex-shrink: 0;
    border-radius: 1px;
    box-shadow: 0 0 4px rgba(17, 142, 255, 0.4);
}

.hero__feature-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__payment-methods {
    margin-bottom: 1.75rem;
    max-width: 100%;
}

.hero__payment-label {
    display: block;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.hero__payment-icons {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.hero__payment-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero__payment-icon:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero__payment-icon-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.hero__buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero__cta-primary {
    background: linear-gradient(135deg, rgba(17, 142, 255, 0.9) 0%, rgba(17, 142, 255, 0.7) 100%);
    border: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.8125rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(17, 142, 255, 0.3);
}

.hero__cta-primary:hover {
    background: linear-gradient(135deg, rgba(17, 142, 255, 1) 0%, rgba(17, 142, 255, 0.8) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 142, 255, 0.4);
}

.hero__cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.8125rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

/* Right Column: Game Showcase */
.hero__right {
    position: relative;
    z-index: 2;
}

.hero__games-container {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.875rem;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero__games {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hero__game-tile {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero__game-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(17, 142, 255, 0.2);
}

.hero__game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__game-tile:hover .hero__game-image {
    transform: scale(1.08);
    filter: brightness(0.3) blur(3px);
}

.hero__game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.7) 80%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__game-tile:hover .hero__game-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.85) 80%, rgba(0, 0, 0, 0.95) 100%);
}

.hero__game-hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(17, 142, 255, 0.95) 0%, rgba(17, 142, 255, 0.85) 100%);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 
        0 8px 24px rgba(17, 142, 255, 0.5),
        0 0 40px rgba(17, 142, 255, 0.3);
}

.hero__game-tile:hover .hero__game-hover-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.hero__game-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__game-tile:hover .hero__game-content {
    opacity: 0.9;
}

.hero__game-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__game-line {
    width: 40px;
    height: 2px;
    background: rgba(17, 142, 255, 0.9);
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(17, 142, 255, 0.5);
}

.hero__game-tile:hover .hero__game-line {
    width: 60px;
    background: rgba(17, 142, 255, 1);
    box-shadow: 0 0 12px rgba(17, 142, 255, 0.7);
}

/* ===== Buttons ===== */


.btn {
    position: relative;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: inherit;
    border: 1px solid var(--btn-border);
    border-radius: 50px;
    cursor: pointer;
    transition: background-color var(--transition-fast), 
                border-color var(--transition-fast),
                color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--btn-bg);
    color: var(--text-primary);
}

a.btn {
    text-decoration: none;
}

.btn__icon {
    font-size: 0.8125rem;
    color: inherit;
}

.btn__text {
    position: relative;
}

.btn--primary {
    background: rgba(26, 26, 26, 0.55);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn--primary:hover {
    background: rgba(37, 37, 37, 0.7);
    border-color: rgba(255, 255, 255, 0.12);
}


.btn--primary:active {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

.btn--secondary {
    background: rgba(26, 26, 26, 0.55);
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    background: rgba(37, 37, 37, 0.7);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.12);
}

.btn--secondary:active {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}


/* ===== Features Section ===== */
.features {
    padding: 8rem 2rem;
    background: var(--bg-primary);
}

.features__container {
    max-width: 1400px;
    margin: 0 auto;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-card__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
}

.feature-card__description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.feature-card__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Feedback Ticker */
.feedback-ticker {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feedback-ticker__label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feedback-ticker__container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.feedback-ticker__track {
    display: flex;
    gap: 1rem;
    width: fit-content;
    will-change: transform;
}

.feedback-card {
    flex-shrink: 0;
    width: 280px;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feedback-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-card__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feedback-card__rating {
    display: flex;
    gap: 0.25rem;
}

.feedback-card__star {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.feedback-card__star.filled {
    color: #fbbf24;
}

.feedback-card__text {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.feedback-card__timestamp {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* Marquee Animation */
.feedback-ticker__track {
    animation: marquee 60s linear infinite;
}

.feedback-ticker__container:hover .feedback-ticker__track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .feedback-ticker__track {
        animation: none;
    }
    
    .feedback-ticker__container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    }
    
    .feedback-ticker__container::-webkit-scrollbar {
        height: 4px;
    }
    
    .feedback-ticker__container::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .feedback-ticker__container::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
}

.feature-card__visual {
    margin-top: auto;
    padding-top: 1rem;
}

/* Customer Cards Visual */
.customer-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
}

.customer-card {
    width: 100%;
    max-width: 280px;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.customer-card--stacked {
    position: absolute;
    width: 90%;
    opacity: 0.4;
    transform: translateY(-8px) scale(0.95);
    z-index: 1;
}

.customer-card--stacked:nth-child(2) {
    transform: translateY(-4px) scale(0.97);
    opacity: 0.6;
    z-index: 2;
}

.customer-card--active {
    position: relative;
    z-index: 3;
}

.customer-card__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.customer-card__plan {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* Tax Report Visual */
.tax-report {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
}

.tax-report__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tax-report__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.tax-report__status {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0.25rem 0.625rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.tax-report__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.tax-report__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tax-report__label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.tax-report__value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
        flex-wrap: wrap;
    }

    .nav__center {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }

    .nav__link {
        font-size: 0.875rem;
    }
    
    .nav__link span {
        display: inline;
    }

    .nav-cta {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .hero {
        padding: 6rem max(1.5rem, env(safe-area-inset-right)) max(4rem, env(safe-area-inset-bottom)) max(1.5rem, env(safe-area-inset-left));
    }

    .hero__container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero__logo {
        width: 100px;
        margin-bottom: 1.25rem;
    }

    .hero__title {
        font-size: 1.875rem;
        margin-bottom: 0.5rem;
    }

    .hero__subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__cta {
        width: 100%;
    }

    .hero__features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero__payment-methods {
        margin-bottom: 2rem;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 0.875rem;
    }

    .hero__cta-primary,
    .hero__cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav__center {
        gap: 0.75rem;
        font-size: 0.8125rem;
    }
    
    .nav__link {
        font-size: 0.8125rem;
    }
    
    .nav__link-icon {
        font-size: 0.75rem;
    }

    .nav-cta {
        font-size: 0.8125rem;
        padding: 0.5rem 0.875rem;
    }

    .nav-cta__icon {
        font-size: 0.75rem;
    }

    .hero {
        padding: 5rem max(1rem, env(safe-area-inset-right)) max(3rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    }

    .hero__container {
        gap: 2.5rem;
    }

    .hero__brand {
        font-size: 0.625rem;
        padding: 0.35rem 0.6rem;
        margin-bottom: 1.75rem;
    }

    .hero__headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
        margin-bottom: 0.875rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .hero__description {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }

    .hero__features {
        gap: 0.875rem;
        margin-bottom: 2rem;
    }

    .hero__payment-methods {
        margin-bottom: 2rem;
    }

    .hero__payment-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .hero__payment-icon-svg {
        width: 20px;
        height: 20px;
    }

    .hero__buttons {
        gap: 0.75rem;
    }

    .hero__cta-primary,
    .hero__cta-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero__games-container {
        padding: 1rem;
    }

    .hero__games {
        gap: 0.75rem;
    }

    .hero__game-hover-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero__game-content {
        padding: 1.25rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .hero__game-hover-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }


    .features {
        padding: 4rem 1.5rem;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }
}

/* ===== Recent Feedback Section ===== */
.recent-feedback {
    padding: 1rem 2rem 3rem;
    background: var(--bg-primary);
    scroll-margin-top: 100px;
    margin-top: 4rem;
}

#reviews {
    scroll-margin-top: 100px;
}

.recent-feedback__container {
    max-width: 1200px;
    margin: 0 auto;
}

.recent-feedback__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.recent-feedback__rows {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recent-feedback__wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.recent-feedback__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.recent-feedback__fade--left {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.recent-feedback__fade--right {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.recent-feedback__track {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    will-change: transform;
}

.recent-feedback__track--left {
    animation: marquee-feedback-left 70s linear infinite;
}

.recent-feedback__track--right {
    animation: marquee-feedback-right 70s linear infinite;
}

.recent-feedback__wrapper:hover .recent-feedback__track {
    animation-play-state: paused;
}

.recent-feedback-card {
    flex-shrink: 0;
    width: 300px;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.recent-feedback-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-feedback-card__label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.recent-feedback-card__rating {
    display: flex;
    gap: 0.25rem;
}

.recent-feedback-card__star {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8125rem;
}

.recent-feedback-card__star.filled {
    color: #fbbf24;
}

.recent-feedback-card__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.recent-feedback-card__timestamp {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: auto;
}

@keyframes marquee-feedback-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-feedback-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Reduced Motion Support for Recent Feedback */
@media (prefers-reduced-motion: reduce) {
    .recent-feedback__track {
        animation: none;
    }
    
    .recent-feedback__wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    }
    
    .recent-feedback__wrapper::-webkit-scrollbar {
        height: 6px;
    }
    
    .recent-feedback__wrapper::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .recent-feedback__wrapper::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
}

@media (max-width: 768px) {
    .recent-feedback {
        padding: 1rem 1.5rem 3rem;
    }

    .recent-feedback__title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .recent-feedback-card {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .recent-feedback {
        padding: 1rem 1rem 2.5rem;
    }

    .recent-feedback__title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .recent-feedback-card {
        width: 260px;
        padding: 1.25rem;
    }
}

/* ===== Why Choose Lumen Section ===== */
#why-choose {
    scroll-margin-top: 100px;
}

.why-choose {
    padding: 3rem 2rem 2.5rem;
    background: var(--bg-primary);
    position: relative;
}

.why-choose__container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose__title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    text-align: center;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    letter-spacing: -0.02em;
}

.why-choose__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    font-weight: 400;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    height: 100%;
    min-height: 140px;
}

.why-choose-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.why-choose-card:hover .why-choose-card__icon {
    color: rgba(255, 255, 255, 0.95);
}

.why-choose-card__icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.why-choose-card__icon svg {
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-card__icon svg {
    color: rgba(255, 255, 255, 1);
}

.why-choose-card__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.why-choose-card__description {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
    flex: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .why-choose-card {
        min-height: 130px;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 2.5rem 1.5rem 2rem;
    }

    .why-choose__title {
        font-size: 2rem;
        margin-bottom: 0.625rem;
    }

    .why-choose__subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .why-choose__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .why-choose-card {
        padding: 1.125rem 0.875rem;
        min-height: 125px;
    }

    .why-choose-card__icon {
        width: 26px;
        height: 26px;
        margin-bottom: 0.625rem;
    }

    .why-choose-card__title {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }

    .why-choose-card__description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .why-choose {
        padding: 2rem 1rem 1.5rem;
    }

    .why-choose__title {
        font-size: 1.75rem;
    }

    .why-choose__subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
    }

    .why-choose__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-choose-card {
        padding: 1.125rem 0.875rem;
        min-height: 120px;
    }

    .why-choose-card__icon {
        width: 24px;
        height: 24px;
        margin-bottom: 0.625rem;
    }

    .why-choose-card__title {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }

    .why-choose-card__description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* ===== Supported Executors Section ===== */
/* ===== Supported Games Section ===== */
.games {
    padding: 3rem 2rem 2.5rem;
    background: var(--bg-primary);
    position: relative;
}

.games__container {
    max-width: 1400px;
    margin: 0 auto;
}

.games__title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    text-align: center;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.games__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    font-weight: 400;
}

.games__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    width: 300px;
    max-width: 100%;
    cursor: default;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    pointer-events: none;
}

.game-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}


.game-card--coming-soon {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.game-card--coming-soon .game-card__image {
    filter: blur(1px) brightness(0.6);
    opacity: 0.6;
}

.game-card--coming-soon .game-card__content {
    opacity: 0.7;
}

.game-card--coming-soon .game-card__name {
    opacity: 0.7;
}

.game-card--coming-soon .game-card__progress-label {
    opacity: 0.4;
}

.game-card--coming-soon .game-status-badge {
    opacity: 0.7;
}

.game-card--coming-soon:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: none;
}

.game-card__image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-tertiary);
    position: relative;
    border-radius: 12px 12px 0 0;
}

.game-card__image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.game-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

.game-card__lock-overlay,
.game-card__check-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.1);
}

.game-card__lock-overlay i,
.game-card__check-overlay i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.game-card__check-overlay {
    background: rgba(34, 197, 94, 0.3);
    border: 2px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4), 0 0 30px rgba(34, 197, 94, 0.2);
}

.game-card__check-overlay i {
    color: rgba(134, 239, 172, 0.95);
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.game-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: flex-start;
}

.game-card__content > * {
    width: 100%;
}

.game-card__content .game-status-badge {
    margin-top: auto;
    width: auto;
}

.game-card__name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.game-card__progress {
    width: 100%;
    margin: 0.5rem 0;
}

.game-card__progress-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.5;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.game-card__progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.game-card__progress-fill {
    height: 100%;
    width: 1%;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.4) 0%, rgba(148, 163, 184, 0.3) 100%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(148, 163, 184, 0.2);
    transition: width 0.3s ease;
}

.game-card__progress-fill--released {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.5) 0%, rgba(34, 197, 94, 0.4) 100%);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* ===== Game Status Badge ===== */
.game-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.game-status-badge__indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.game-status-badge__text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Status Colors */
.game-status-badge--released {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: rgba(134, 239, 172, 0.95);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.2);
}

.game-status-badge--released .game-status-badge__indicator {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.game-status-badge--coming-soon {
    background: rgba(100, 116, 139, 0.12);
    border-color: rgba(148, 163, 184, 0.2);
    color: rgba(148, 163, 184, 0.9);
}

.game-status-badge--coming-soon .game-status-badge__indicator {
    background: #94a3b8;
    opacity: 0.7;
}

.games__footer-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Responsive Design for Games */
@media (max-width: 768px) {
    .games {
        padding: 2.5rem 1.5rem 2rem;
    }

    .games__title {
        font-size: 2rem;
        margin-bottom: 0.625rem;
    }

    .games__subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .games__grid {
        gap: 1.25rem;
    }

    .game-card {
        width: 100%;
        max-width: 350px;
    }

    .game-card {
        min-height: 400px;
    }

    .game-card__image-wrapper {
        height: 180px;
    }

    .game-card__content {
        padding: 1.375rem;
        gap: 0.75rem;
    }

    .game-card__name {
        font-size: 1.25rem;
    }

    .game-card__progress-label {
        font-size: 0.6875rem;
    }

    .game-card__progress-bar {
        height: 3px;
    }

    .game-card__lock-overlay,
    .game-card__check-overlay {
        width: 50px;
        height: 50px;
    }

    .game-card__lock-overlay i,
    .game-card__check-overlay i {
        font-size: 1.25rem;
    }

    .game-status-badge {
        padding: 0.3125rem 0.75rem;
        font-size: 0.6875rem;
    }

    .game-status-badge__indicator {
        width: 7px;
        height: 7px;
    }

    .games__footer-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .games {
        padding: 2rem 1rem 1.5rem;
    }

    .games__title {
        font-size: 1.75rem;
    }

    .games__subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .games__grid {
        gap: 1rem;
    }

    .game-card {
        width: 100%;
        max-width: 100%;
    }

    .game-card {
        min-height: 380px;
    }

    .game-card__image-wrapper {
        height: 160px;
    }

    .game-card__content {
        padding: 1.25rem;
        gap: 0.625rem;
    }

    .game-card__name {
        font-size: 1.125rem;
    }

    .game-card__progress-label {
        font-size: 0.625rem;
    }

    .game-card__progress-bar {
        height: 3px;
    }

    .game-card__lock-overlay,
    .game-card__check-overlay {
        width: 45px;
        height: 45px;
    }

    .game-card__lock-overlay i,
    .game-card__check-overlay i {
        font-size: 1.125rem;
    }

    .game-status-badge {
        padding: 0.25rem 0.625rem;
        font-size: 0.625rem;
    }
}

/* ===== Products Status Section ===== */
.products-status {
    padding: 3rem 2rem 2.5rem;
    background: var(--bg-primary);
    position: relative;
}

.products-status__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.products-status__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.5rem;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 4px;
    margin: 0 auto 0.75rem;
    width: fit-content;
}

.products-status__badge-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    display: block;
    animation: none;
    box-shadow: none;
}

@keyframes statusPulse {
    0%, 100% { 
        box-shadow: 0 0 2px currentColor, 0 0 4px currentColor;
    }
    50% { 
        box-shadow: 0 0 4px currentColor, 0 0 8px currentColor, 0 0 12px currentColor;
    }
}

.products-status__badge-text {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #22c55e;
}

.products-status__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.products-status__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.products-status__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.products-status__item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.products-status__item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.products-status__item--unreleased {
    opacity: 0.5;
    filter: grayscale(0.3);
}

.products-status__item--unreleased .products-status__name,
.products-status__item--unreleased .products-status__version,
.products-status__item--unreleased .products-status__update-time,
.products-status__item--unreleased .products-status__detected-time {
    color: rgba(255, 255, 255, 0.4);
}

.products-status__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: #3b82f6;
    flex-shrink: 0;
    position: relative;
}

.products-status__icon i {
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1;
    color: #3b82f6 !important;
    font-style: normal;
    font-weight: 900;
    width: auto;
    height: auto;
}

.products-status__item--unreleased .products-status__icon {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
    color: rgba(59, 130, 246, 0.5);
}

.products-status__info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.products-status__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.products-status__version {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

.products-status__metadata {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.products-status__update {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.products-status__update-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

.products-status__update-time {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.products-status__detected {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.products-status__detected-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

.products-status__detected-time {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.products-status__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.products-status__status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    position: relative;
}

/* Status Indicator Colors with Glow */
.products-status__status-indicator--detected {
    background: #ef4444; /* Red */
    color: #ef4444;
    animation: statusPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.products-status__status-indicator--warning {
    background: #eab308; /* Yellow */
    color: #eab308;
    animation: statusPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.products-status__status-indicator--updating {
    background: #f97316; /* Orange */
    color: #f97316;
    animation: statusPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.products-status__status-indicator--undetected {
    background: #22c55e; /* Green */
    color: #22c55e;
    animation: statusPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.products-status__status-indicator--rewrite {
    background: #a855f7; /* Purple */
    color: #a855f7;
    animation: statusPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.products-status__status-indicator--in-development {
    background: #3b82f6; /* Blue */
    color: #3b82f6;
    animation: statusPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.products-status__status-indicator--disabled {
    background: #1f2937; /* Dark gray/black */
    color: #1f2937;
    animation: none;
    box-shadow: none;
}

/* Status Text Colors */
.products-status__status-text {
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Default to green if no specific status class */
.products-status__status-text:not([style*="color"]) {
    color: #22c55e;
}

@media (max-width: 768px) {
    .products-status {
        padding: 2.5rem 1.5rem 2rem;
    }

    .products-status__title {
        font-size: 2rem;
    }

    .products-status__subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .products-status__item {
        grid-template-columns: 44px 1fr auto;
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .products-status__icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .products-status__metadata {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .products-status {
        padding: 2rem 1rem 1.5rem;
    }

    .products-status__title {
        font-size: 1.75rem;
    }

    .products-status__subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .products-status__item {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 0.75rem;
        padding: 1rem;
    }

    .products-status__icon {
        grid-row: 1 / 3;
        width: 36px;
        height: 36px;
    }

    .products-status__metadata {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        gap: 1rem;
        margin-top: 0.25rem;
    }
}

.executors {
    padding: 3rem 2rem 2.5rem;
    background: var(--bg-primary);
    position: relative;
}

.executors__container {
    max-width: 1400px;
    margin: 0 auto;
}

.executors__title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    text-align: center;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.executors__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    font-weight: 400;
}

.executors__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto 1.5rem;
}

.executors__footer-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.8;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.executors__footer-text:hover {
    color: var(--text-primary);
    opacity: 1;
}

.executor-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    justify-content: center;
    min-height: 120px;
    width: 250px;
    max-width: 100%;
}

.executor-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.executor-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.executor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.executor-card__name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* ===== Executor Status Badge ===== */
.executor-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.executor-status-badge__indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.executor-status-badge__text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Status Colors */
.executor-status-badge--working {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: rgba(134, 239, 172, 0.95);
}

.executor-status-badge--working .executor-status-badge__indicator {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.executor-status-badge--detected {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: rgba(254, 202, 202, 0.95);
}

.executor-status-badge--detected .executor-status-badge__indicator {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.executor-status-badge--testing {
    background: rgba(234, 179, 8, 0.15);
    border-color: rgba(234, 179, 8, 0.3);
    color: rgba(253, 230, 138, 0.95);
}

.executor-status-badge--testing .executor-status-badge__indicator {
    background: #eab308;
    box-shadow: 0 0 8px rgba(234, 179, 8, 0.5);
}

/* Responsive Design for Executors */
@media (max-width: 1024px) {
    .executors__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .executors {
        padding: 2.5rem 1.5rem 2rem;
    }

    .executors__title {
        font-size: 2rem;
        margin-bottom: 0.625rem;
    }

    .executors__subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }

    .executors__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .executor-card {
        padding: 1.25rem 1rem;
        min-height: 110px;
    }

    .executor-card__name {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .executor-status-badge {
        padding: 0.3125rem 0.75rem;
        font-size: 0.6875rem;
    }

    .executor-status-badge__indicator {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 480px) {
    .executors {
        padding: 2rem 1rem 1.5rem;
    }

    .executors__title {
        font-size: 1.75rem;
    }

    .executors__subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .executors__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .executor-card {
        padding: 1.25rem 1rem;
        min-height: 100px;
    }

    .executor-card__name {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .executor-status-badge {
        padding: 0.25rem 0.625rem;
        font-size: 0.625rem;
    }
}

/* ===== Our Software In Action Section ===== */
.software-action {
    padding: 3rem 2rem 2.5rem;
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
}

.software-action__container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.software-action__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsive 16:9 wrapper — reserves space to prevent layout shift */
.software-action__video-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 200px; /* fallback so section never collapses if iframe is blocked */
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.software-action__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 200px;
    border: none;
    display: block;
    z-index: 1;
}

@media (max-width: 900px) {
    .software-action {
        padding: 2.5rem 1.5rem 2rem;
    }

    .software-action__title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 640px) {
    .software-action {
        padding: 2rem 1rem 1.5rem;
    }

    .software-action__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* ===== Pricing Section ===== */
.pricing {
    padding: 2rem 2rem 3rem;
    background: var(--bg-primary);
    scroll-margin-top: 100px;
}

#plans {
    scroll-margin-top: 100px;
}

.pricing__container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 420px;
    margin: 0 auto;
}

@media (min-width: 700px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

.pricing__support-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
    flex-wrap: nowrap;
    margin-top: 2.5rem;
    padding: 1.75rem 2rem;
    min-height: 88px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 40px rgba(17, 142, 255, 0.06);
}

.pricing__support-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
    flex: 1;
}

.pricing__support-icon-wrap {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 142, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(17, 142, 255, 0.2);
    box-shadow: 0 0 20px rgba(17, 142, 255, 0.25), 0 0 40px rgba(17, 142, 255, 0.12);
}

.pricing__support-icon {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 0 8px rgba(17, 142, 255, 0.5));
}

.pricing__support-copy {
    min-width: 0;
}

.pricing__support-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.pricing__support-subtext {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.pricing__support-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.pricing__support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(17, 142, 255, 0.95) 0%, rgba(17, 142, 255, 0.85) 100%);
    border: none;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(17, 142, 255, 0.2);
}

.pricing__support-btn:hover {
    background: linear-gradient(135deg, rgba(17, 142, 255, 1) 0%, rgba(17, 142, 255, 0.9) 100%);
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(17, 142, 255, 0.35);
}

@media (max-width: 640px) {
    .pricing__support-cta {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1.5rem;
        min-height: 0;
    }

    .pricing__support-left {
        flex-direction: column;
    }

    .pricing__support-actions {
        flex-direction: column;
        width: 100%;
    }

    .pricing__support-btn {
        width: 100%;
    }
}

.product-card {
    position: relative;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 40px rgba(17, 142, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
    background-size: 100px 100px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(ellipse at 50% 50%, rgba(17, 142, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: 16px;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(17, 142, 255, 0.15);
}

.product-card:hover::after {
    opacity: 1;
}

.product-card__popular {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(17, 142, 255, 0.2) 0%, rgba(17, 142, 255, 0.15) 100%);
    border: 1px solid rgba(17, 142, 255, 0.3);
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgb(17, 142, 255);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(17, 142, 255, 0.2);
}

.product-card__banner {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(17, 142, 255, 0.3) 0%, rgba(17, 142, 255, 0.1) 100%);
    z-index: 2;
}

.product-card__banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(1px);
    transform: scale(1.03);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease-out;
}

.product-card:hover .product-card__banner-image {
    transform: scale(1.06);
    filter: blur(0.5px);
}

.product-card__banner-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.product-card__badge-top {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.5rem;
    background: rgba(17, 142, 255, 0.12);
    border: 1px solid rgba(17, 142, 255, 0.3);
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 600;
    color: rgb(17, 142, 255);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    z-index: 2;
    animation: badgeGlow 2.5s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 4px rgba(17, 142, 255, 0.3), 0 0 8px rgba(17, 142, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 8px rgba(17, 142, 255, 0.5), 0 0 16px rgba(17, 142, 255, 0.3), 0 0 24px rgba(17, 142, 255, 0.2);
    }
}

.product-card__badge-top::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(17, 142, 255);
    display: block;
    flex-shrink: 0;
    animation: badgeDotGlow 2.5s ease-in-out infinite;
}

@keyframes badgeDotGlow {
    0%, 100% {
        box-shadow: 0 0 2px rgba(17, 142, 255, 0.6), 0 0 4px rgba(17, 142, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 4px rgba(17, 142, 255, 0.8), 0 0 8px rgba(17, 142, 255, 0.6), 0 0 12px rgba(17, 142, 255, 0.4);
    }
}

.product-card__content {
    position: relative;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
}

.product-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.product-card__name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    letter-spacing: -0.02em;
}

.product-card__verified {
    color: rgb(17, 142, 255);
    font-size: 1.125rem;
    filter: drop-shadow(0 0 4px rgba(17, 142, 255, 0.4));
}

.product-card__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: -0.25rem 0 0.25rem 0;
}

a.product-card__rating {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a.product-card__rating:hover {
    opacity: 0.9;
}

.product-card__stars {
    display: flex;
    gap: 0.125rem;
    color: #fbbf24;
    font-size: 0.8125rem;
}

.product-card__rating-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
}

.product-card__description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
}

.product-card__trust-indicators {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.product-card__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.625rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
}

.product-card__trust-item i {
    color: rgba(17, 142, 255, 0.8);
    font-size: 0.8125rem;
    width: 16px;
    text-align: center;
}

.product-card__pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.product-card__price-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.product-card__price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #22c55e;
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.2));
}

.product-card__button {
    position: relative;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(17, 142, 255, 0.95) 0%, rgba(17, 142, 255, 0.85) 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.75rem;
    letter-spacing: normal;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(17, 142, 255, 0.25), 0 0 0 1px rgba(17, 142, 255, 0.1);
}

.product-card__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-card__button:hover {
    background: linear-gradient(135deg, rgba(17, 142, 255, 1) 0%, rgba(17, 142, 255, 0.9) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 142, 255, 0.4), 0 0 0 1px rgba(17, 142, 255, 0.15);
}

.product-card__button:hover::before {
    left: 100%;
}

.product-card__button:active {
    transform: translateY(0);
}

.product-card__button i {
    font-size: 0.9375rem;
    transition: transform 0.3s ease;
}

.product-card__button:hover i {
    transform: translateX(2px);
}

.product-card__trust-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin: 0.75rem 0 0 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* ===== Product Status Badge ===== */
.product-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.product-status-badge:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.product-status-badge__indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px currentColor;
}

.product-status-badge__text {
    font-size: 0.8125rem;
}

/* Status Colors */
.product-status-badge[data-status="detected"] .product-status-badge__indicator {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.product-status-badge[data-status="use-at-own-risk"] .product-status-badge__indicator {
    background: #eab308;
    box-shadow: 0 0 8px rgba(234, 179, 8, 0.5);
}

.product-status-badge[data-status="updating"] .product-status-badge__indicator {
    background: #f97316;
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
}

.product-status-badge[data-status="undetected"] .product-status-badge__indicator {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.product-status-badge[data-status="rewrite"] .product-status-badge__indicator {
    background: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}

.product-status-badge[data-status="in-development"] .product-status-badge__indicator {
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.product-status-badge[data-status="disabled"] .product-status-badge__indicator {
    background: #171717;
    box-shadow: 0 0 8px rgba(23, 23, 23, 0.5);
}

/* ===== Product Status Tooltip ===== */
.product-status-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    right: 0;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 1rem;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1000;
}

.product-status-badge:hover .product-status-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.product-status-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--bg-tertiary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.product-status-tooltip__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.product-status-tooltip__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.625rem;
    margin-bottom: 0.5rem;
}

.product-status-tooltip__indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.product-status-tooltip__text {
    flex: 1;
    line-height: 1.4;
}

.product-status-tooltip__text strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive adjustments for status badge */
@media (max-width: 768px) {
    .product-status-badge {
        font-size: 0.75rem;
        padding: 0.3125rem 0.625rem;
        gap: 0.375rem;
    }

    .product-status-badge__indicator {
        width: 7px;
        height: 7px;
    }

    .product-status-tooltip {
        min-width: 200px;
        padding: 0.875rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .pricing-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .product-status-badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }

    .product-status-tooltip {
        right: auto;
        left: 0;
        min-width: 180px;
    }

    .product-status-tooltip::after {
        right: auto;
        left: 20px;
    }
}

.pricing-card__features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.pricing-card__feature {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card__feature::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-tertiary);
}

.plan-preview-image {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    margin: 1rem auto;
    display: block;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-preview-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ===== Image Preview Lightbox ===== */
.image-preview-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
}

.image-preview-overlay.active {
    display: flex;
}

.image-preview-target {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    object-fit: contain;
    cursor: pointer;
    animation: imagePreviewFadeIn 0.2s ease-out;
}

@keyframes imagePreviewFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pricing-card__button {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-card__trust {
    margin: 1rem 0 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    line-height: 1.4;
}

.pricing-card__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .pricing {
        padding: 1rem 1.5rem 4rem;
    }

    .pricing__title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card__amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 1rem 1rem 3rem;
    }

    .pricing__title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .pricing-card {
        padding: 1.75rem;
    }
}

/* ===== Discord Community Section ===== */
.discord-community {
    padding: 1rem 2rem 3rem;
    background: var(--bg-primary);
    scroll-margin-top: 100px;
}

#discord {
    scroll-margin-top: 100px;
}

.discord-community__container {
    max-width: 1000px;
    margin: 0 auto;
}

.discord-community__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
}

.discord-community__subtext {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.discord-community__card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.discord-community__card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.discord-widget {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    background: transparent;
}

.discord-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 400px;
}

.discord-fallback__text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.discord-fallback__link {
    font-size: 1.125rem;
    color: rgb(17, 142, 255);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.discord-fallback__link:hover {
    color: rgb(225, 95, 238);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .discord-community {
        padding: 1rem 1.5rem 2.5rem;
    }

    .discord-community__title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .discord-community__subtext {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .discord-community__card {
        padding: 1.5rem;
    }

    .discord-widget {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .discord-community {
        padding: 1rem 1rem 2rem;
    }

    .discord-community__title {
        font-size: 1.25rem;
    }

    .discord-community__subtext {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .discord-community__card {
        padding: 1.25rem;
    }

    .discord-widget {
        height: 300px;
    }
}

/* ===== Footer ===== */
.footer {
    background: #0a0b0f;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 max(2rem, env(safe-area-inset-left)) 2rem max(2rem, env(safe-area-inset-right));
}

/* Top bar: status | copyright | secure + payments */
.footer__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bar .footer__status {
    flex: 0 0 auto;
}

.footer__bar .footer__copyright {
    flex: 1 1 auto;
    text-align: center;
    min-width: 0;
}

.footer__bar .footer__bar-right {
    flex: 0 0 auto;
}

.footer__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    animation: footer-status-pulse 2s ease-in-out infinite;
}

@keyframes footer-status-pulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(34, 197, 94, 0.5), 0 0 0 0 rgba(34, 197, 94, 0.3);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 14px rgba(34, 197, 94, 0.7), 0 0 0 4px rgba(34, 197, 94, 0);
        opacity: 0.95;
    }
}

.footer__copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    order: 0;
}

.footer__bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__secure {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 0.9rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.1), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.footer__secure:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2), 0 0 16px rgba(34, 197, 94, 0.15), 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.footer__secure i {
    font-size: 0.875rem;
    color: #22c55e;
}

.footer__secure-text {
    letter-spacing: 0.02em;
}

.footer__payments {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer__payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.footer__payment:hover {
    background: rgba(255, 255, 255, 0.12);
}

.footer__payment--icon img,
.footer__payment--crypto img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.footer__payment--mastercard {
    padding: 0.45rem;
    background: rgba(255, 255, 255, 0.09);
}
.footer__payment--mastercard img {
    width: 28px;
    height: 28px;
}

.footer__payment--crypto {
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.08);
}
.footer__payment--crypto:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* Two-column main */
.footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    padding-top: 1.75rem;
    text-align: left;
}

.footer__heading {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 0.6rem 0;
}

.footer__heading:not(:first-child) {
    margin-top: 1.25rem;
}

.footer__text {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 0.5rem 0;
}

.footer__address-block {
    margin-bottom: 0.75rem;
}

.footer__address-block:last-child {
    margin-bottom: 0;
}

.footer__contact {
    margin-top: 1rem;
}

.footer__phone {
    font-size: 0.8125rem;
    color: rgba(17, 142, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer__phone:hover {
    color: rgba(17, 142, 255, 1);
}

.footer__address-title {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.2rem;
}

.footer__address-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    line-height: 1.45;
}

.footer__link {
    font-size: 0.75rem;
    color: rgba(17, 142, 255, 0.95);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: rgba(17, 142, 255, 1);
}

.footer__link--icon {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.footer__link--icon i {
    font-size: 0.875rem;
}

/* ===== Legal / Business contact (bottom left, shown once via localStorage) ===== */
.legal-contact {
    position: fixed;
    bottom: max(1rem, env(safe-area-inset-bottom));
    left: max(1rem, env(safe-area-inset-left));
    z-index: 9998;
    font-family: inherit;
    display: none;
}

.legal-contact.legal-contact--open {
    display: block;
}

.legal-contact__panel {
    width: 320px;
    max-width: calc(100vw - 2rem);
    padding: 1.25rem 1rem 1rem;
    background: rgba(18, 18, 22, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.legal-contact__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.legal-contact__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.legal-contact__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem 0;
    padding-right: 2rem;
}

.legal-contact__text,
.legal-contact__hours,
.legal-contact__law {
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.6rem 0;
}

.legal-contact__phone {
    margin: 0.5rem 0 0.35rem 0;
}

.legal-contact__email {
    margin: 0 0 0.75rem 0;
}

.legal-contact__email a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(17, 142, 255, 1);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-contact__email a:hover {
    color: rgba(17, 142, 255, 0.85);
    text-decoration: underline;
}

.legal-contact__phone a {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(17, 142, 255, 1);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-contact__phone a:hover {
    color: rgba(17, 142, 255, 0.85);
    text-decoration: underline;
}

.legal-contact__law {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .footer__bar {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer__copyright {
        order: 1;
    }

    .footer__bar-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__payments {
        flex-wrap: wrap;
    }
}

/* ===== Terms Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
    animation: modalFadeIn 0.2s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.modal__close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.modal__close:hover {
    color: var(--text-primary);
}

.modal__body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.terms-nav {
    width: 56px;
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 0.5rem;
    overflow: hidden;
}

.terms-nav__item {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    text-decoration: none;
    border-radius: 8px;
    transition: color var(--transition-fast), background-color var(--transition-fast);
    flex-shrink: 0;
}

.terms-nav__item i {
    font-size: 1.125rem;
    width: 1.125rem;
    height: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.terms-nav__item:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
}

.terms-nav__item.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.terms-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.terms-content::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.terms-section {
    scroll-margin-top: 20px;
}

.terms-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.terms-section p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .modal {
        padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    }

    .modal__content {
        max-height: min(90vh, calc(100dvh - 2rem));
        max-width: 100%;
    }

    .modal__header {
        padding: 1.25rem 1.5rem;
    }

    .modal__title {
        font-size: 1.25rem;
    }

    .modal__body {
        flex-direction: column;
    }

    .terms-nav {
        width: 100%;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 0.75rem 1rem;
        overflow-x: auto;
    }
}

/* ===== Pre-Checkout Payment Method Selection Modal ===== */
.modal__content--precheckout {
    max-width: 560px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal__content--precheckout .modal__body {
    padding: 1.5rem 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    max-height: calc(90vh - 80px);
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 142, 255, 0.55) rgba(255, 255, 255, 0.08);
}

.modal__content--precheckout .modal__body::-webkit-scrollbar {
    width: 10px;
}

.modal__content--precheckout .modal__body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    margin: 4px 0;
}

.modal__content--precheckout .modal__body::-webkit-scrollbar-thumb {
    background: rgba(17, 142, 255, 0.45);
    border-radius: 5px;
}

.modal__content--precheckout .modal__body::-webkit-scrollbar-thumb:hover {
    background: rgba(17, 142, 255, 0.65);
}

.modal__content--precheckout .modal__body::-webkit-scrollbar-thumb:active {
    background: rgba(17, 142, 255, 0.8);
}

/* Mobile: tighter padding and height */
@media (max-width: 768px) {
    .modal__content--precheckout .modal__body {
        max-height: 70vh;
        padding: 1rem 1.25rem;
        scrollbar-color: rgba(17, 142, 255, 0.5) rgba(255, 255, 255, 0.08);
    }
    .modal__content--precheckout .modal__body::-webkit-scrollbar {
        width: 8px;
    }
}

.precheckout-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 0.25rem;
}

.precheckout-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
}

.precheckout-warning i {
    color: #f59e0b;
    font-size: 0.875rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.precheckout-warning p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.precheckout-methods {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.precheckout-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.precheckout-method__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.precheckout-method__icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.precheckout-method__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.precheckout-method__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.precheckout-method__fee {
    font-size: 0.875rem;
    color: rgb(34, 197, 94);
    font-weight: 400;
}

.precheckout-method__discount {
    font-size: 0.875rem;
    color: rgb(34, 197, 94);
    font-weight: 400;
}

.precheckout-method__subtext {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 0.25rem;
}

.precheckout-continue-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgb(17, 142, 255);
    border: 1px solid rgb(17, 142, 255);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0;
}

.precheckout-continue-btn:not(:disabled):hover {
    background: rgb(60, 155, 210);
    border-color: rgb(60, 168, 210);
    transform: translateY(-1px);
}

.precheckout-continue-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.alternative-payments-section {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding: 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.precheckout-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 0.75rem;
}

.precheckout-hint i {
    color: #674170;
    font-size: 0.9375rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.precheckout-hint p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.precheckout-hint a {
    color: rgba(17, 142, 255, 0.95);
    text-decoration: none;
    border-bottom: 1px solid rgba(17, 142, 255, 0.4);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.precheckout-hint a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.precheckout-hint--google-apple {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    padding: 1rem 1.25rem;
    background: rgba(17, 142, 255, 0.06);
    border: 1px solid rgba(17, 142, 255, 0.18);
    border-radius: 10px;
}

.precheckout-hint--google-apple i {
    color: rgba(17, 142, 255, 0.9);
    font-size: 1rem;
}

.precheckout-hint--google-apple p {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.precheckout-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.75rem 0;
    width: 100%;
}

.precheckout-divider__line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.precheckout-divider__text {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: lowercase;
    white-space: nowrap;
    opacity: 0.7;
}

.precheckout-reseller-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(103, 65, 112, 0.1);
    border: 1px solid rgba(103, 65, 112, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0;
    margin-bottom: 0;
}

.precheckout-reseller-btn:hover {
    background: rgba(103, 65, 112, 0.2);
    border-color: rgba(103, 65, 112, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(103, 65, 112, 0.2);
}

.precheckout-reseller-btn i {
    font-size: 1.125rem;
    color: #674170;
}

@media (max-width: 768px) {
    .precheckout-method {
        padding: 0.875rem;
    }
    
    .precheckout-continue-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    .precheckout-reseller-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    .alternative-payments-section {
        margin-top: 1.25rem;
        margin-bottom: 0.875rem;
        padding: 1rem;
    }

    .precheckout-hint {
        margin-bottom: 0.625rem;
    }

    .precheckout-hint p {
        font-size: 0.75rem;
    }

    .precheckout-divider {
        margin: 0.625rem 0;
    }

    .precheckout-reseller-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .precheckout-continue-btn {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .footer__container {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1.5rem;
    }

    .footer__payment {
        width: 2.25rem;
        height: 2.25rem;
    }
    .footer__payment--icon img,
    .footer__payment--crypto img {
        width: 22px;
        height: 22px;
    }

    .footer__copyright {
        font-size: 0.75rem;
    }

    .footer__text {
        font-size: 0.6875rem;
    }
}

