/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050507;
    --bg-secondary: #0a0a0f;
    --bg-card: #0f0f17;
    --bg-card-hover: #141420;
    --bg-elevated: #19192a;
    --bg-surface: rgba(255, 255, 255, 0.02);

    --border: rgba(255, 255, 255, 0.04);
    --border-hover: rgba(255, 255, 255, 0.08);

    --text-primary: #ededf0;
    --text-secondary: #8a8f98;
    --text-muted: #555862;

    --accent: #e8853a;
    --accent-hover: #f09b56;
    --accent-glow: rgba(232, 133, 58, 0.08);
    --accent-gradient: linear-gradient(135deg, #e8853a, #d45d2b);

    --qb-color: #34d399;
    --esx-color: #60a5fa;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 40px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --transition: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(232, 133, 58, 0.06);
    --shadow-glow-strong: 0 0 80px rgba(232, 133, 58, 0.12);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particle canvas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #e8853a 0%, #f0a060 40%, #d45d2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid rgba(232, 133, 58, 0.1);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
    border: 1px solid transparent;
    position: relative;
}

.btn--sm {
    padding: 9px 20px;
    font-size: 0.8125rem;
    border-radius: var(--radius-sm);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 14px 32px;
}

.btn--primary {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 20px rgba(232, 133, 58, 0.1);
}

.btn--primary:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 32px rgba(232, 133, 58, 0.2);
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.btn--ghost {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-secondary);
}

.btn--ghost:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    color: var(--text-primary);
}

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

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    filter: none !important;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 24px;
    transition: padding var(--transition);
    background: transparent;
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-2xl);
    padding: 0 8px;
    transition: all var(--transition);
}

.nav.scrolled {
    padding: 12px 24px;
}

.nav.scrolled .nav__container {
    background: rgba(10, 10, 15, 0.8);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    transition: var(--transition);
}

.nav__logo:hover {
    opacity: 0.8;
}

.nav__logo-icon {
    width: 32px;
    height: 32px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}

.nav__link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav__link:hover {
    color: var(--text-primary);
}

.nav__link:hover::after {
    background: rgba(255, 255, 255, 0.04);
}

.nav__link--active {
    color: var(--text-primary);
}

.nav__link--active::after {
    background: rgba(255, 255, 255, 0.06);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}

.nav__menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
}

.nav__menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.nav__menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transform: translateY(20px);
    transition: var(--transition);
}

.mobile-menu.active .mobile-menu__inner {
    transform: translateY(0);
}

.mobile-menu__link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--text-primary);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
    animation: glow-drift 12s ease-in-out infinite alternate;
}

.hero__glow--1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 133, 58, 0.12), transparent 70%);
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
}

.hero__glow--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 93, 43, 0.08), transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -6s;
}

@keyframes glow-drift {
    0% { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-45%) scale(1.05); }
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
}

.hero__beam {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 133, 58, 0.08), rgba(232, 133, 58, 0.15), rgba(232, 133, 58, 0.08), transparent);
    opacity: 0.6;
}

.hero__inner {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--accent);
    background: rgba(232, 133, 58, 0.06);
    border: 1px solid rgba(232, 133, 58, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 40px;
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(232, 133, 58, 0.4);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 48px;
    font-weight: 400;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Code Window */
.hero__visual {
    margin-top: 80px;
    width: 100%;
    max-width: 580px;
    perspective: 1200px;
}

.hero__code-window {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(232, 133, 58, 0.04);
    transform: rotateX(2deg) translateY(0);
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero__code-window:hover {
    transform: rotateX(0deg) translateY(-4px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 32px 100px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(232, 133, 58, 0.06);
}

.code-window__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.code-window__dots {
    display: flex;
    gap: 7px;
}

.code-window__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.7;
}

.code-window__title {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.code-window__body {
    padding: 22px 26px;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    line-height: 1.9;
    overflow-x: auto;
    text-align: left;
}

.code-window__body code {
    font-family: inherit;
}

.code-fn { color: #c084fc; }
.code-str { color: #34d399; }
.code-key { color: #60a5fa; }
.code-comment { color: var(--text-muted); font-style: italic; }

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
    position: relative;
}

.stats::before,
.stats::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.stats::before { top: 0; }
.stats::after { bottom: 0; }

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

.stat {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0.3;
}

.stat:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.03);
}

.stat__number {
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.stat__suffix {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.stat__divider {
    display: none;
}

/* ===== PRODUCTS ===== */
.products {
    padding: 140px 0;
}

.products__filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 56px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 100px;
    color: var(--text-muted);
    background: transparent;
    border: none;
    transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}

.filter-btn:hover {
    color: var(--text-primary);
}

.filter-btn.active {
    color: white;
    background: var(--accent-gradient);
    box-shadow: 0 2px 12px rgba(232, 133, 58, 0.2);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
}

/* Product Card */
.product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at 50% 0%, transparent, transparent);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.product-card:hover::before {
    opacity: 1;
    background: radial-gradient(ellipse at 50% 0%, rgba(232, 133, 58, 0.04), transparent);
}

.product-card--featured {
    border-color: rgba(232, 133, 58, 0.08);
}

.product-card--featured:hover {
    border-color: rgba(232, 133, 58, 0.15);
    box-shadow: var(--shadow-xl), var(--shadow-glow-strong);
}

.product-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--accent-gradient);
    color: white;
}

.product-card__badge--soon {
    background: linear-gradient(135deg, #64748b, #475569);
}

.product-card__badge--new {
    background: linear-gradient(135deg, #60a5fa, #818cf8);
}

.product-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.product-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-card__version {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.product-card__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.product-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.product-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tag {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid;
}

.tag--qb {
    color: var(--qb-color);
    background: rgba(52, 211, 153, 0.06);
    border-color: rgba(52, 211, 153, 0.15);
}

.tag--esx {
    color: var(--esx-color);
    background: rgba(96, 165, 250, 0.06);
    border-color: rgba(96, 165, 250, 0.15);
}

.tag--ox {
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.06);
    border-color: rgba(167, 139, 250, 0.15);
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.product-card__price {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.product-card__price--tba {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ===== FEATURES ===== */
.features {
    padding: 140px 0;
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 0.5;
}

.feature-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border: 1px solid rgba(232, 133, 58, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 22px;
    color: var(--accent);
}

.feature-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-card__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
}

.cta-banner__inner {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: 88px 56px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(232, 133, 58, 0.1);
}

.cta-banner__glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(232, 133, 58, 0.08), transparent 70%);
    pointer-events: none;
}

.cta-banner__content {
    position: relative;
}

.cta-banner__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.cta-banner__desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.cta-banner__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq {
    padding: 140px 0;
    background: var(--bg-secondary);
}

.faq__list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.faq__item:hover {
    border-color: var(--border-hover);
}

.faq__item.active {
    border-color: rgba(232, 133, 58, 0.12);
    box-shadow: inset 0 0 0 1px rgba(232, 133, 58, 0.04);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    transition: color var(--transition);
}

.faq__question:hover {
    color: var(--accent);
}

.faq__chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition), color var(--transition);
}

.faq__item.active .faq__chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__answer p {
    padding: 0 28px 24px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    padding: 100px 0 0;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 133, 58, 0.15), transparent);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 64px;
}

.footer__brand {
    max-width: 280px;
}

.footer__brand .nav__logo {
    margin-bottom: 20px;
}

.footer__brand-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.footer__links {
    display: flex;
    gap: 72px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__col-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.footer__col a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer__col a:hover {
    color: var(--text-primary);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border-top: 1px solid var(--border);
}

.footer__bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__socials a {
    color: var(--text-muted);
    transition: all var(--transition);
    display: flex;
    padding: 6px;
    border-radius: var(--radius-sm);
}

.footer__socials a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__menu-btn { display: flex; }
    .nav__actions .btn { display: none; }
    .nav__actions .currency-switcher { display: none; }
    .nav__actions .lang-switcher { display: none; }
    .nav__actions .auth-buttons { display: none; }
    .nav__actions .user-profile { display: none; }

    .nav { padding: 12px 16px; }
    .nav__container { border-radius: var(--radius-lg); }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .hero__title { font-size: 2.5rem; }
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero__visual { margin-top: 48px; }
    .hero__code-window { transform: none; }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat { padding: 24px 16px; }
    .stat__number { font-size: 2rem; }

    .products__grid { grid-template-columns: 1fr; }
    .features__grid { grid-template-columns: 1fr; }
    .cta-banner__inner { padding: 56px 28px; }

    .footer__top {
        flex-direction: column;
        gap: 40px;
    }
    .footer__links { flex-wrap: wrap; gap: 32px; }
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 2rem; }
    .section-title { font-size: 1.5rem; }
    .code-window__body {
        font-size: 0.75rem;
        padding: 16px;
    }
    .product-card { padding: 24px; }
    .feature-card { padding: 24px; }
    .stats__grid { grid-template-columns: 1fr 1fr; }
    .products__grid { grid-template-columns: 1fr; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ===== CURRENCY SWITCHER ===== */
.currency-switcher {
    position: relative;
}

.currency-switcher__btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.currency-switcher__btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.currency-switcher__btn #currencySymbol {
    color: var(--accent);
    font-weight: 700;
}

.currency-switcher__chevron {
    transition: var(--transition);
}

.currency-switcher.open .currency-switcher__chevron {
    transform: rotate(180deg);
}

.currency-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 120px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.currency-switcher.open .currency-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: none;
}

.currency-option:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.currency-option.active {
    color: var(--accent);
    background: var(--accent-glow);
}

.currency-option__symbol {
    font-weight: 700;
    min-width: 20px;
}

.mobile-currency__btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.mobile-currency__btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.mobile-currency__btn.active {
    color: var(--accent);
    background: var(--accent-glow);
    border-color: rgba(232, 133, 58, 0.2);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
    position: relative;
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.lang-switcher__btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.lang-switcher__chevron {
    transition: var(--transition);
}

.lang-switcher.open .lang-switcher__chevron {
    transform: rotate(180deg);
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 150px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.lang-switcher.open .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: none;
}

.lang-option:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.lang-option.active {
    color: var(--accent);
    background: var(--accent-glow);
}

.lang-option__flag {
    font-size: 1.1rem;
    line-height: 1;
}

.mobile-lang {
    display: flex;
    gap: 8px;
}

.mobile-lang__btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.mobile-lang__btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.mobile-lang__btn.active {
    color: var(--accent);
    background: var(--accent-glow);
    border-color: rgba(232, 133, 58, 0.2);
}

/* ===== TEBEX CHECKOUT ===== */
.btn--loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-right: 6px;
}

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

/* ===== CART BUTTON ===== */
.cart-btn {
    position: relative;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-btn:hover {
    color: var(--accent);
    border-color: rgba(232, 133, 58, 0.2);
    background: rgba(232, 133, 58, 0.04);
}
.cart-btn__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ===== CART OVERLAY ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ===== CART PANEL ===== */
.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.cart-panel.open {
    transform: translateX(0);
}
.cart-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.cart-panel__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}
.cart-panel__close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
}
.cart-panel__close:hover {
    color: #fff;
}
.cart-panel__items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-panel__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 60px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== CART ITEM ===== */
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cart-item__name {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}
.cart-item__price {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}
.cart-item__remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.cart-item__remove:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

/* ===== CART FOOTER ===== */
.cart-panel__footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cart-panel__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: var(--text-secondary);
}
.cart-panel__total-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.tebex-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid #22c55e;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.tebex-notification.show {
    transform: translateX(0);
}
.tebex-notification--error {
    border-color: #ef4444;
}

/* ===== AUTH REQUIRED MODAL ===== */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.auth-modal {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
}

.auth-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.auth-modal__close:hover {
    color: var(--text-primary);
}

.auth-modal__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.auth-modal__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.auth-modal__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
}

.auth-modal__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.auth-modal__btn--discord {
    color: white;
    background: #5865F2;
    border-color: #5865F2;
}

.auth-modal__btn--discord:hover {
    background: #4752c4;
}

.auth-modal__btn--cfx {
    color: white;
    background: var(--accent);
    border-color: var(--accent);
}

.auth-modal__btn--cfx:hover {
    background: #d45d2b;
}

/* ===== AUTH / LOGIN ===== */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.auth-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.auth-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.auth-btn--cfx:hover {
    color: var(--accent);
    border-color: rgba(232, 133, 58, 0.3);
    background: rgba(232, 133, 58, 0.06);
}

.auth-btn--discord:hover {
    color: #5865F2;
    border-color: rgba(88, 101, 242, 0.3);
    background: rgba(88, 101, 242, 0.06);
}

.auth-btn--discord svg {
    width: 16px;
    height: 16px;
}

/* User Profile Dropdown */
.user-profile {
    position: relative;
}

.user-profile__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.user-profile__btn:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.user-profile__avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.user-profile__name {
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-profile__chevron {
    transition: transform 0.2s ease;
}

.user-profile.open .user-profile__chevron {
    transform: rotate(180deg);
}

.user-profile__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 1001;
    padding: 8px;
}

.user-profile.open .user-profile__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-profile__accounts {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 4px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
}

.account-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
}

.account-item__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.account-item__info {
    display: flex;
    flex-direction: column;
}

.account-item__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.account-item__provider {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-item--discord .account-item__provider {
    color: #5865F2;
}

.account-item--cfx .account-item__provider {
    color: var(--accent);
}

.user-profile__connect {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 4px;
}

.user-profile__connect:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.02);
}

.user-profile__logout {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.user-profile__logout:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.06);
}

/* Mobile Auth */
.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 16px;
}

.mobile-auth__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-auth__btn--cfx:hover {
    color: var(--accent);
    border-color: rgba(232, 133, 58, 0.3);
    background: rgba(232, 133, 58, 0.06);
}

.mobile-auth__btn--discord:hover {
    color: #5865F2;
    border-color: rgba(88, 101, 242, 0.3);
    background: rgba(88, 101, 242, 0.06);
}

/* Mobile User Profile */
.mobile-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 16px;
}

.mobile-user__info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-user__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-user__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-user__logout {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-user__logout:hover {
    background: rgba(239, 68, 68, 0.12);
}

.mobile-user__details {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.mobile-user__tag {
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.mobile-user__tag--discord {
    color: #5865F2;
    border-color: rgba(88, 101, 242, 0.2);
}

.mobile-user__tag--cfx {
    color: var(--accent);
    border-color: rgba(232, 133, 58, 0.2);
}

/* Auth responsive */
@media (max-width: 768px) {
    .auth-buttons,
    .user-profile {
        display: none !important;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(232, 133, 58, 0.3);
    color: white;
}
