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

        :root {
            --bg-primary: #050505;
            --bg-secondary: #111111;
            --bg-card: #181818;
            --bg-card-raised: #202020;
            --accent-primary: #ff4655;
            --accent-secondary: #ff6b73;
            --accent-tertiary: #d62f3d;
            --text-primary: #ece8e1;
            --text-secondary: #a5a5a5;
            --success: #49d17f;
            --warning: #ffd166;
            --border: rgba(255, 255, 255, 0.08);
            --border-strong: rgba(255, 70, 85, 0.45);
            --glow: rgba(255, 70, 85, 0.24);
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background:
                linear-gradient(180deg, #000 0%, #090909 42%, #111 100%);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(135deg, rgba(255, 70, 85, 0.1) 0%, transparent 28%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, transparent 40%),
                repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.018) 3px, rgba(255, 255, 255, 0.018) 4px);
            pointer-events: none;
            z-index: 0;
        }

        .app-container {
            position: relative;
            z-index: 1;
        }

        /* Navigation */
        .navbar {
            background: rgba(3, 3, 3, 0.96);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 70, 85, 0.28);
            padding: 0.95rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 10px 36px rgba(0, 0, 0, 0.55);
            transition: transform 0.28s ease;
            will-change: transform;
        }

        .navbar.navbar-hidden {
            transform: translateY(-115%);
        }

        .navbar-content {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.7rem;
            font-weight: 800;
            letter-spacing: 0;
            color: var(--text-primary);
            text-transform: uppercase;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            line-height: 1;
        }

        .logo-mark {
            width: 38px;
            height: 38px;
            object-fit: contain;
            flex: 0 0 auto;
            filter: drop-shadow(0 0 10px rgba(255, 70, 85, 0.28));
        }

        .mobile-menu-toggle {
            width: 44px;
            height: 44px;
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            background: #101010;
            border: 1px solid var(--border);
            border-radius: 4px;
            color: var(--text-primary);
            cursor: pointer;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .mobile-menu-toggle.is-hidden {
            display: none;
        }

        .mobile-menu-toggle span {
            width: 20px;
            height: 2px;
            background: currentColor;
            border-radius: 999px;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .mobile-menu-toggle:hover,
        .mobile-menu-toggle.is-open {
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.12);
        }

        .mobile-menu-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-toggle.is-open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-links {
            display: flex;
            gap: 0.7rem;
            align-items: center;
            justify-content: flex-end;
            flex-wrap: wrap;
            min-width: 0;
        }

        .nav-btn {
            background: #101010;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            padding: 0.6rem 1.1rem;
            cursor: pointer;
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            flex: 0 0 auto;
        }

        .nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 70, 85, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .nav-btn:hover::before {
            left: 100%;
        }

        .nav-btn:hover {
            background: #171717;
            border-color: var(--border-strong);
            color: var(--accent-primary);
            transform: translateY(-2px);
        }

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

        .nav-btn svg {
            width: 17px;
            height: 17px;
            stroke-width: 2.4;
            flex: 0 0 auto;
        }

        .nav-btn.active {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            color: #070707;
            box-shadow: 0 8px 24px rgba(255, 70, 85, 0.22);
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 1rem;
            background: #101010;
            border: 1px solid var(--border-strong);
            border-radius: 4px;
            color: var(--text-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            cursor: pointer;
            transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
            flex: 0 0 auto;
            min-width: 0;
        }

        .user-info:hover {
            background: #171717;
            border-color: var(--accent-primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 70, 85, 0.16);
        }

        .user-info.active {
            background: linear-gradient(180deg, rgba(255, 70, 85, 0.18), rgba(255, 70, 85, 0.08));
            border-color: var(--accent-primary);
            color: var(--text-primary);
            box-shadow: inset 0 0 0 1px rgba(255, 70, 85, 0.36), 0 8px 24px rgba(255, 70, 85, 0.16);
        }

        .user-info.active .vp-display {
            color: var(--warning);
            text-shadow: 0 0 14px rgba(255, 209, 102, 0.16);
        }

        .user-info-name {
            font-weight: 800;
            text-transform: uppercase;
        }

        .vp-display {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            color: var(--warning);
            font-variant-numeric: tabular-nums;
            transition: transform 0.18s ease, color 0.18s ease, text-shadow 0.18s ease;
        }

        .vp-display.vp-counting {
            color: #ffe09a;
            transform: translateY(-1px) scale(1.04);
            text-shadow: 0 0 12px rgba(255, 209, 102, 0.42);
        }

        .locker-stat-value.vp-counting {
            color: #ffe09a;
            transform: translateY(-1px) scale(1.04);
            text-shadow: 0 0 12px rgba(255, 209, 102, 0.42);
        }

        .vp-icon {
            width: 18px;
            height: 18px;
            object-fit: contain;
            flex: 0 0 auto;
            filter: drop-shadow(0 0 6px rgba(232, 194, 102, 0.35));
        }

        /* Main Content */
        .main-content {
            max-width: 1600px;
            margin: 0 auto;
            padding: 2rem;
            min-height: calc(100vh - 170px);
        }

        .site-footer {
            max-width: 1600px;
            margin: 0 auto;
            padding: 1.5rem 2rem 2rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 600;
            border-top: 1px solid rgba(255, 255, 255, 0.06);

            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 1rem;
        }

        @media (max-width: 768px) {
            .site-footer {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-socials {
                justify-content: flex-end;
                order: 2;
            }

            .site-footer > div:first-child {
                display: none;
            }

            .footer-copyright {
                order: 1;
            }
        }

        .footer-socials {
            display: flex;
            grid-column: 3;
            grid-row: 1;
            justify-content: flex-end;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0;
        }

        .footer-left {
            grid-column: 1;
            grid-row: 1;
            min-width: 1px;
        }

        .footer-copyright {
            grid-column: 2;
            grid-row: 1;
            text-align: center;
        }

        .footer-social-icon {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #777;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: #0c0c0c;
            border-radius: 50%;
            transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        .footer-social-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .footer-social-icon:hover {
            color: var(--accent-primary);
            border-color: var(--border-strong);
            transform: translateY(-2px);
        }

        .seo-page a {
            color: inherit;
            text-decoration: none;
        }

        .seo-page main {
            min-height: 72vh;
        }

        .seo-navbar .navbar-content {
            gap: 1.5rem;
        }

        .seo-logo-link {
            text-decoration: none;
        }

        .seo-nav-links {
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .seo-hero {
            position: relative;
            min-height: min(720px, calc(100svh - 120px));
            display: grid;
            align-items: end;
            overflow: hidden;
            border-bottom: 1px solid var(--border);
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 38%),
                #050505;
        }

        .seo-hero-media {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.86) 46%, rgba(5, 5, 5, 0.42) 100%),
                linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.18) 58%, rgba(5, 5, 5, 0.78) 100%),
                linear-gradient(rgba(255, 70, 85, 0.09) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 70, 85, 0.09) 1px, transparent 1px);
            background-size: auto, auto, 54px 54px, 54px 54px;
            opacity: 0.98;
        }

        .seo-hero-media::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .seo-hero-media::before {
            background:
                repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 70, 85, 0.12) 42px 43px, transparent 43px 96px),
                repeating-linear-gradient(0deg, transparent 0 78px, rgba(255, 255, 255, 0.055) 78px 79px, transparent 79px 140px);
            opacity: 0.45;
        }

        .mainframe-line,
        .mainframe-node,
        .mainframe-panel {
            position: absolute;
            display: block;
            pointer-events: none;
        }

        .mainframe-line {
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(255, 70, 85, 0.58), rgba(255, 255, 255, 0.18), transparent);
            box-shadow: 0 0 14px rgba(255, 70, 85, 0.22);
            transform-origin: left center;
            opacity: 0.65;
        }

        .line-a {
            width: 42vw;
            top: 24%;
            right: 7%;
        }

        .line-b {
            width: 30vw;
            top: 47%;
            right: 18%;
        }

        .mainframe-node {
            width: 10px;
            height: 10px;
            border: 1px solid rgba(255, 70, 85, 0.9);
            background: rgba(5, 5, 5, 0.9);
            box-shadow: 0 0 14px rgba(255, 70, 85, 0.28);
            opacity: 0.72;
        }

        .node-a {
            top: 23.4%;
            right: 47%;
        }

        .node-b {
            top: 46.4%;
            right: 17%;
        }

        .mainframe-panel {
            border: 1px solid rgba(255, 70, 85, 0.28);
            background:
                linear-gradient(90deg, rgba(255, 70, 85, 0.12), transparent),
                rgba(12, 12, 12, 0.72);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 18px 60px rgba(0, 0, 0, 0.35);
            opacity: 0.62;
        }

        .panel-a {
            width: min(380px, 30vw);
            height: 112px;
            top: 17%;
            right: 10%;
        }

        .seo-hero-content {
            position: relative;
            z-index: 1;
            width: min(900px, calc(100% - 3rem));
            margin: 0 auto;
            padding: 5rem 0 4.5rem;
        }

        .seo-kicker {
            margin-bottom: 0.85rem;
            color: var(--accent-primary);
            font-size: 0.95rem;
            font-weight: 800;
            letter-spacing: 1.8px;
            text-transform: uppercase;
        }

        .seo-hero h1,
        .seo-page-header h1 {
            max-width: 860px;
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(2.6rem, 7vw, 5.8rem);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: 0;
            text-transform: uppercase;
        }

        .seo-hero-copy,
        .seo-page-header p,
        .seo-section p,
        .seo-card p,
        .seo-stat span,
        .seo-faq p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.65;
        }

        .seo-hero-copy {
            max-width: 680px;
            margin-top: 1.25rem;
        }

        .seo-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .seo-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            width: auto;
            padding: 0.85rem 1.25rem;
        }

        .seo-main,
        .seo-section,
        .seo-page-header {
            width: min(1180px, calc(100% - 3rem));
            margin: 0 auto;
        }

        .seo-main {
            padding-bottom: 4rem;
        }

        .seo-page-header {
            padding: 5rem 0 2rem;
        }

        .seo-page-header p {
            max-width: 760px;
            margin-top: 1rem;
        }

        .seo-section {
            padding: 4rem 0;
            border-top: 1px solid var(--border);
        }

        .seo-section h2 {
            max-width: 760px;
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(2rem, 4vw, 3.3rem);
            font-weight: 800;
            line-height: 1;
            text-transform: uppercase;
        }

        .seo-section-heading {
            margin-bottom: 1.5rem;
        }

        .seo-section-heading.centered {
            max-width: 860px;
            margin-right: auto;
            margin-left: auto;
            text-align: center;
        }

        .seo-section-heading.centered h2,
        .seo-section-heading.centered p {
            margin-right: auto;
            margin-left: auto;
        }

        .seo-split {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
            gap: 2rem;
            align-items: start;
        }

        .seo-split p:not(.seo-kicker) {
            max-width: 760px;
            margin-top: 1rem;
        }

        .seo-card-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

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

        .seo-card,
        .seo-stat,
        .seo-faq details {
            background: rgba(18, 18, 18, 0.9);
            border: 1px solid var(--border);
            border-radius: 6px;
        }

        .seo-card {
            min-height: 210px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .seo-card svg {
            width: 28px;
            height: 28px;
            color: var(--accent-primary);
            stroke-width: 2.2;
        }

        .seo-card h3,
        .seo-stat strong {
            color: var(--text-primary);
            font-size: 1.45rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .seo-card a {
            width: fit-content;
            margin-top: auto;
            color: var(--accent-primary);
            font-weight: 800;
            text-transform: uppercase;
        }

        .seo-stat-grid {
            display: grid;
            gap: 0.8rem;
        }

        .seo-stat {
            display: grid;
            gap: 0.25rem;
            padding: 1.2rem;
            transition: border-color 0.25s ease, transform 0.25s ease;
        }

        .seo-stat:hover {
            border-color: var(--border-strong);
            transform: translateY(-2px);
        }

        .seo-faq details {
            padding: 1.2rem 1.4rem;
            margin-top: 0.8rem;
        }

        .seo-faq summary {
            cursor: pointer;
            color: var(--text-primary);
            font-size: 1.2rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .seo-faq p {
            margin-top: 0.85rem;
        }

        .seo-faq a {
            color: var(--accent-primary);
            font-weight: 800;
        }

        .seo-footer {
            margin-top: 0;
        }

        .home-intro-section {
            padding-top: 4.5rem;
        }

        .home-flow {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .home-flow-step {
            min-height: 220px;
            padding: 1.5rem;
            background:
                linear-gradient(180deg, rgba(255, 70, 85, 0.08), transparent 42%),
                rgba(18, 18, 18, 0.9);
            border: 1px solid var(--border);
            border-radius: 6px;
            display: grid;
            align-content: start;
            gap: 0.7rem;
        }

        .home-flow-step span {
            color: var(--accent-primary);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.95rem;
            font-weight: 800;
        }

        .home-flow-step strong {
            color: var(--text-primary);
            font-size: 1.75rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .home-flow-step p,
        .home-cta p {
            color: var(--text-secondary);
            font-size: 1.08rem;
            line-height: 1.65;
        }

        .home-cta-section {
            padding-bottom: 5rem;
        }

        .home-cta {
            padding: clamp(2rem, 5vw, 3.5rem);
            background:
                linear-gradient(135deg, rgba(255, 70, 85, 0.16), transparent 38%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
                #101010;
            border: 1px solid var(--border-strong);
            border-radius: 6px;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
        }

        .home-cta h2 {
            max-width: 820px;
        }

        .home-cta p {
            max-width: 720px;
            margin-top: 1rem;
        }

        .page {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .page.active {
            display: block;
        }

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

        /* Auth Pages */
        .auth-container {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: calc(100vh - 220px);
        }

        .auth-box {
            background: linear-gradient(180deg, #1b1b1b, #111);
            border: 1px solid var(--border-strong);
            padding: 3rem;
            width: 100%;
            max-width: 450px;
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.72), inset 0 3px 0 var(--accent-primary);
            position: relative;
            overflow: hidden;
            border-radius: 6px;
        }

        .auth-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 64px;
            background: linear-gradient(180deg, rgba(255, 70, 85, 0.08), transparent);
            pointer-events: none;
        }

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

        .auth-content {
            position: relative;
            z-index: 1;
        }

        .auth-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.15rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 2rem;
            text-align: left;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1;
            padding-left: 0.85rem;
            border-left: 4px solid var(--accent-primary);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .label-note {
            text-transform: none;
            letter-spacing: 0;
        }

        .register-email-label {
            text-transform: none;
            letter-spacing: 0;
        }

        .form-input {
            width: 100%;
            padding: 1rem;
            background: #0b0b0b;
            border: 1px solid var(--border);
            color: var(--text-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.16);
        }

        .btn-primary {
            width: 100%;
            height: 52px;
            max-height: 52px;
            padding: 0 1rem;
            background: var(--accent-primary);
            border: 1px solid var(--accent-primary);
            color: #070707;
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            background: #0b0b0b;
            color: var(--accent-primary);
            box-shadow: inset 0 0 0 1px var(--accent-primary), 0 10px 28px rgba(255, 70, 85, 0.22);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 0 0 1px var(--accent-primary);
        }

        .seo-page .seo-action {
            width: auto;
            height: 48px;
            max-height: none;
        }

        .btn-primary:disabled,
        .btn-primary.loading {
            opacity: 0.92;
            cursor: wait;
            transform: none;
            height: 52px;
            max-height: 52px;
            background: var(--accent-primary);
            color: #070707;
            border-color: var(--accent-primary);
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.16);
        }

        .btn-primary.loading::after {
            content: '';
            position: absolute;
            right: 1.1rem;
            top: 50%;
            width: 10px;
            height: 10px;
            margin-top: -5px;
            border: 1.5px solid rgba(0, 0, 0, 0.24);
            border-top-color: #070707;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        .btn-danger {
            background: linear-gradient(135deg, #dc2626, #991b1b);
            border-color: #dc2626;
            color: #ffffff;
        }

        .btn-danger:hover {
            background: #0b0b0b;
            border-color: #dc2626;
            color: #ff6b73;
            box-shadow: inset 0 0 0 1px #dc2626, 0 10px 28px rgba(220, 38, 38, 0.22);
        }

        .auth-switch {
            text-align: center;
            margin-top: 1.5rem;
            color: var(--text-secondary);
        }

        .auth-switch + .auth-switch {
            margin-top: 0.75rem;
        }

        .auth-switch a {
            color: var(--accent-primary);
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
        }

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

        /* Skins Grid */
        .page-header {
            margin-bottom: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .page-title {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.35rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--text-primary);
            letter-spacing: 1px;
            line-height: 1;
            padding-left: 0.9rem;
            border-left: 4px solid var(--accent-primary);
        }

        .page-intro {
            max-width: 680px;
            margin-top: 0.7rem;
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.6;
        }

        .browse-controls {
            width: 100%;
            display: grid;
            grid-template-columns: minmax(200px, 1fr) minmax(150px, 220px) minmax(150px, 220px) auto auto;
            gap: 0.8rem;
        }

        .search-bar {
            padding: 0.8rem 1.5rem;
            background: #0c0c0c;
            border: 1px solid var(--border);
            color: var(--text-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            min-width: 0;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .filter-select {
            padding: 0.8rem 1rem;
            background: #0c0c0c;
            border: 1px solid var(--border);
            color: var(--text-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            cursor: pointer;
            -webkit-user-select: none;
            user-select: none;
        }

        .filter-slot {
            min-width: 0;
            position: relative;
            z-index: 10;
        }

        .filter-slot:has(.filter-menu[open]) {
            z-index: 80;
        }

        .filter-menu {
            position: relative;
            min-width: 0;
        }

        .filter-menu-toggle {
            min-height: 48px;
            padding: 0.8rem 2.25rem 0.8rem 1rem;
            background: #0c0c0c;
            border: 1px solid var(--border);
            color: var(--text-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            cursor: pointer;
            list-style: none;
            position: relative;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            transition: all 0.25s ease;
            -webkit-user-select: none;
            user-select: none;
        }

        .filter-menu-toggle::-webkit-details-marker {
            display: none;
        }

        .filter-menu[open] .filter-menu-toggle,
        .filter-menu-toggle:hover {
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.12);
        }

        .filter-menu-caret {
            width: 8px;
            height: 8px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-65%) rotate(45deg);
            transition: transform 0.2s ease;
        }

        .filter-menu[open] .filter-menu-caret {
            transform: translateY(-35%) rotate(225deg);
        }

        .filter-menu-panel {
            width: 100%;
            max-height: 260px;
            overflow-y: auto;
            padding: 0.5rem;
            background:
                linear-gradient(180deg, rgba(255, 70, 85, 0.08), transparent 32%),
                #0a0a0a;
            border: 1px solid rgba(255, 70, 85, 0.34);
            border-radius: 4px;
            box-shadow: 0 18px 36px rgba(0, 0, 0, 0.54), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            position: absolute;
            top: calc(100% + 0.35rem);
            left: 0;
            z-index: 120;
            scrollbar-width: thin;
            scrollbar-color: var(--accent-primary) #151515;
            transform-origin: top center;
            will-change: opacity, transform;
        }

        .filter-menu-panel.is-opening {
            animation: filterMenuOpen 160ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
        }

        @keyframes filterMenuOpen {
            from {
                opacity: 0;
                transform: translateY(-8px) scaleY(0.96);
            }
            to {
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
        }

        .filter-menu-panel::-webkit-scrollbar {
            width: 9px;
        }

        .filter-menu-panel::-webkit-scrollbar-track {
            background: #151515;
            border-radius: 999px;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
        }

        .filter-menu-panel::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--accent-secondary), var(--accent-tertiary));
            border: 2px solid #151515;
            border-radius: 999px;
        }

        .filter-menu-panel::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #ff7a82, var(--accent-primary));
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.55rem 0.6rem;
            color: var(--text-secondary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            cursor: pointer;
            border: 1px solid transparent;
            transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
            -webkit-user-select: none;
            user-select: none;
        }

        .filter-option:hover,
        .filter-option:has(input:checked) {
            background: rgba(255, 70, 85, 0.12);
            color: var(--text-primary);
        }

        .filter-option:has(input:checked) {
            border-color: rgba(255, 70, 85, 0.22);
            box-shadow: inset 3px 0 0 var(--accent-primary);
        }

        .filter-option input {
            appearance: none;
            width: 18px;
            height: 18px;
            margin: 0;
            flex: 0 0 auto;
            display: grid;
            place-items: center;
            background: #060606;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 4px;
            cursor: pointer;
            box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
            transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
        }

        .filter-option:hover input {
            border-color: rgba(255, 70, 85, 0.7);
        }

        .filter-option input:checked {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
            border-color: var(--accent-primary);
            box-shadow: 0 0 12px rgba(255, 70, 85, 0.28);
        }

        .filter-option input:checked::after {
            content: '';
            width: 8px;
            height: 4px;
            border-left: 2px solid #050505;
            border-bottom: 2px solid #050505;
            transform: translateY(-1px) rotate(-45deg);
        }

        .filter-option input:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.2);
        }

        .clear-filters-btn {
            min-height: 48px;
            padding: 0.8rem 1rem;
            background: #0c0c0c;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.25s ease;
        }

        .clear-filters-btn:hover:not(:disabled) {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.12);
        }

        .clear-filters-btn:disabled {
            opacity: 0.42;
            cursor: not-allowed;
        }

        .search-bar:focus,
        .filter-select:focus,
        .filter-menu-toggle:focus,
        .clear-filters-btn:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.16);
        }

        .view-toggle {
            width: 54px;
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #0c0c0c;
            border: 1px solid var(--border);
            border-radius: 4px;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .view-toggle:hover {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.12);
        }

        .view-icon {
            width: 28px;
            height: 28px;
            display: block;
            position: relative;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .view-toggle.switching .view-icon {
            opacity: 0;
            transform: scale(0.72) rotate(90deg);
        }

        .view-icon.grid-icon {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 3px;
        }

        .view-icon.grid-icon span {
            background: currentColor;
            border-radius: 3px;
        }

        .view-icon.list-icon {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 3px 0;
        }

        .view-icon.list-icon span {
            height: 5px;
            background: currentColor;
            border-radius: 999px;
        }

        .skins-grid {
            display: flex;
            flex-direction: column;
            gap: 1.6rem;
            margin-bottom: 3rem;
            transform-origin: top center;
        }

        .skins-grid.view-switch-out {
            pointer-events: none;
            animation: viewSwitchOut 80ms ease-in forwards;
        }

        .skins-grid.view-switch-in {
            animation: viewSwitchIn 150ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
        }

        .skins-grid.view-switch-in .skin-card {
            animation: skinCardSwitchIn 150ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
        }

        .skins-grid.view-switch-in .skin-card:nth-child(2) {
            animation-delay: 10ms;
        }

        .skins-grid.view-switch-in .skin-card:nth-child(3) {
            animation-delay: 18ms;
        }

        .skins-grid.view-switch-in .skin-card:nth-child(4),
        .skins-grid.view-switch-in .skin-card:nth-child(n+5) {
            animation-delay: 26ms;
        }

        @keyframes viewSwitchOut {
            to {
                opacity: 0;
                transform: translateY(6px) scale(0.99);
                filter: blur(1px);
            }
        }

        @keyframes viewSwitchIn {
            from {
                opacity: 0;
                transform: translateY(-6px) scale(0.995);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes skinCardSwitchIn {
            from {
                opacity: 0.35;
                transform: translateY(8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .filter-menu-panel.is-opening,
            .skins-grid.view-switch-out,
            .skins-grid.view-switch-in,
            .skins-grid.view-switch-in .skin-card,
            .seo-hero-media::before,
            .mainframe-line,
            .mainframe-node,
            .mainframe-panel {
                animation: none;
            }

            .nav-links,
            .nav-links > * {
                transition: none;
            }
        }

        .skins-grid.grid-view {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.25rem;
        }

        .skins-grid.grid-view .skin-card {
            grid-template-columns: 1fr;
            min-height: 0;
        }

        .skins-grid.grid-view .skin-image-container {
            height: 210px;
            min-height: 210px;
            border-right: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .skins-grid.grid-view .skin-info {
            min-height: 205px;
            justify-content: flex-start;
        }

        .skins-grid.grid-view .skin-actions {
            margin-top: auto;
        }

        .load-more-status {
            margin: 2rem 0 0;
            padding: 1rem;
            background: #0c0c0c;
            border: 1px solid var(--border);
            border-radius: 6px;
            color: var(--text-secondary);
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .skin-card {
            background: linear-gradient(180deg, #202020 0%, #151515 100%);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 8px;
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
            display: grid;
            grid-template-columns: minmax(280px, 42%) 1fr;
            min-height: 220px;
        }

        .skin-card:hover {
            border-color: var(--border-strong);
            transform: translateY(-4px);
            box-shadow: 0 22px 46px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 70, 85, 0.2), 0 0 24px rgba(255, 70, 85, 0.08);
        }

        .skin-image-container {
            position: relative;
            background:
                linear-gradient(145deg, rgba(255, 70, 85, 0.18), transparent 32%),
                linear-gradient(180deg, #252525 0%, #151515 100%);
            min-height: 220px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-right: 1px solid rgba(255, 255, 255, 0.07);
            z-index: 1;
        }

        .skin-image-container::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%),
                repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 70, 85, 0.04) 18px 19px);
            pointer-events: none;
        }

        .skin-image {
            width: 92%;
            height: 86%;
            object-fit: contain;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.45));
        }

        .skin-image.pistol {
            width: 74%;
            height: 74%;
        }

        .skin-card:hover .skin-image {
            transform: scale(1.1);
        }

        .skin-owned {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--success);
            color: #050505;
            padding: 0.45rem 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
            box-shadow: 0 8px 18px rgba(73, 209, 127, 0.28);
            border-radius: 4px;
            z-index: 2;
        }

        .skin-info {
            padding: 1.25rem 1.4rem;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
        }

        .skin-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.65rem;
            color: var(--text-primary);
            line-height: 1.35;
        }

        .skin-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            margin-bottom: 0.9rem;
        }

        .skin-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            width: max-content;
            padding: 0.32rem 0.65rem;
            background: #0d0d0d;
            border: 1px solid var(--border);
            border-radius: 999px;
            color: var(--text-secondary);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.82rem;
            letter-spacing: 0.5px;
        }

        .skin-chip::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent-primary);
        }

        .rarity-select {
            color: #5892c8;
            border-color: rgba(88, 146, 200, 0.45);
            background: rgba(88, 146, 200, 0.1);
        }

        .rarity-select::before {
            background: #5892c8;
        }

        .rarity-deluxe {
            color: #24a494;
            border-color: rgba(36, 164, 148, 0.45);
            background: rgba(36, 164, 148, 0.1);
        }

        .rarity-deluxe::before {
            background: #24a494;
        }

        .rarity-premium {
            color: #ae4f78;
            border-color: rgba(174, 79, 120, 0.45);
            background: rgba(174, 79, 120, 0.1);
        }

        .rarity-premium::before {
            background: #ae4f78;
        }

        .rarity-ultra {
            color: #e8c266;
            border-color: rgba(232, 194, 102, 0.45);
            background: rgba(232, 194, 102, 0.1);
        }

        .rarity-ultra::before {
            background: #e8c266;
        }

        .rarity-exclusive {
            color: #e2885a;
            border-color: rgba(226, 136, 90, 0.45);
            background: rgba(226, 136, 90, 0.1);
        }

        .rarity-exclusive::before {
            background: #e2885a;
        }

        .skin-price {
            color: var(--warning);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .price-note {
            color: var(--text-secondary);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }

        .skin-variants {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.45rem;
            min-height: 34px;
            margin: 0 0 1rem;
        }

        .variant-swatch {
            width: 30px;
            height: 30px;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 50%;
            background: #0d0d0d;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
            flex: 0 0 auto;
        }

        .variant-swatch:hover {
            border-color: rgba(255, 255, 255, 0.7);
            transform: translateY(-1px);
        }

        .variant-swatch.active {
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 2px rgba(255, 70, 85, 0.2), 0 0 16px rgba(255, 70, 85, 0.22);
        }

        .variant-swatch img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

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

        .skin-image.melee {
            width: 82%;
            height: 82%;
        }

        .skin-actions {
            display: flex;
            gap: 0.5rem;
            max-width: 420px;
        }

        .skins-grid.grid-view .skin-actions {
            flex-direction: column;
        }

        @media (min-width: 769px) {
            .skin-actions {
                max-width: 560px;
            }
        }

        .btn-wishlist,
        .btn-buy {
            flex: 1;
            padding: 0.72rem;
            border: 1px solid;
            background: transparent;
            color: var(--text-primary);
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

        .btn-wishlist {
            border-color: rgba(255, 70, 85, 0.55);
            background: #111;
        }

        .btn-wishlist:hover {
            background: #251013;
            color: var(--accent-primary);
            box-shadow: 0 8px 18px rgba(255, 70, 85, 0.16);
        }

        .btn-wishlist.active {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
            color: #050505;
        }

        .btn-buy {
            border-color: var(--accent-primary);
            background: var(--accent-primary);
            color: #050505;
        }

        .btn-buy:hover {
            background: #ff5c68;
            color: #050505;
            box-shadow: 0 8px 20px rgba(255, 70, 85, 0.24);
        }

        .btn-buy:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-remove {
            border-color: #dc2626;
            background: #111;
            color: #ff6b73;
        }

        .btn-remove:hover {
            background: #dc2626;
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(220, 38, 38, 0.24);
        }

        .locker-summary {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .locker-controls {
            margin-bottom: 2rem;
        }

        .locker-stat {
            background: linear-gradient(180deg, #1b1b1b, #111);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.2rem;
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
        }

        .locker-stat-label {
            color: var(--text-secondary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.45rem;
        }

        .locker-stat-value {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--warning);
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            font-variant-numeric: tabular-nums;
            transition: transform 0.18s ease, color 0.18s ease, text-shadow 0.18s ease;
        }

        /* Account Settings */
        .settings-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .settings-section {
            background: linear-gradient(180deg, #1b1b1b, #111);
            border: 1px solid var(--border);
            padding: 2rem;
            margin-bottom: 2rem;
            border-radius: 8px;
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
            position: relative;
            overflow: hidden;
        }

        .settings-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent-primary);
        }

        .vp-section {
            padding-bottom: 1rem;
        }

        .settings-section h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent-primary);
            text-transform: uppercase;
        }

        .admin-container {
            max-width: 1180px;
            margin: 0 auto;
        }

        .admin-actions {
            width: min(100%, 520px);
            display: grid;
            grid-template-columns: minmax(180px, 1fr) auto;
            gap: 0.8rem;
        }

        .admin-summary {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
            margin-bottom: 1.2rem;
        }

        .admin-table-wrap {
            overflow-x: auto;
            background: linear-gradient(180deg, #1b1b1b, #111);
            border: 1px solid var(--border);
            border-radius: 8px;
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
        }

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

        .admin-table th,
        .admin-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            text-align: left;
            vertical-align: middle;
        }

        .admin-table th {
            color: var(--text-secondary);
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            background: rgba(0, 0, 0, 0.2);
        }

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

        .admin-user-cell {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .admin-user-cell strong {
            color: var(--text-primary);
            font-size: 1.05rem;
        }

        .admin-user-cell span:last-child {
            color: var(--text-secondary);
            font-size: 0.86rem;
            word-break: break-all;
        }

        .admin-badge {
            width: fit-content;
            padding: 0.18rem 0.45rem;
            border: 1px solid rgba(232, 194, 102, 0.45);
            border-radius: 4px;
            color: var(--warning);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .presence-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .presence-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
        }

        .presence-badge.online {
            color: var(--success);
        }

        .presence-badge.offline {
            color: var(--text-secondary);
        }

        .admin-row-actions {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            flex-wrap: wrap;
        }

        .admin-action-btn {
            min-height: 38px;
            padding: 0.55rem 0.85rem;
            font-size: 0.82rem;
            white-space: nowrap;
        }

        .vp-tracker {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
            margin-bottom: 1.2rem;
        }

        .vp-input {
            flex: 1;
            padding: 0.8rem;
            background: #0b0b0b;
            border: 1px solid var(--border);
            color: var(--text-primary);
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            border-radius: 4px;
        }

        .vp-input:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.16);
        }

        .btn-secondary {
            padding: 0.8rem 2rem;
            background: #111;
            border: 1px solid var(--accent-primary);
            color: var(--accent-primary);
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .btn-secondary:hover {
            background: var(--accent-primary);
            color: #050505;
            box-shadow: 0 8px 20px rgba(255, 70, 85, 0.22);
        }

        .btn-secondary:disabled {
            opacity: 0.45;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .modal-backdrop {
            position: fixed;
            inset: 0;
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.25rem;
            background: rgba(0, 0, 0, 0.72);
            backdrop-filter: blur(8px);
        }

        .confirm-modal {
            width: min(100%, 520px);
            position: relative;
            padding: 1.5rem;
            background: linear-gradient(180deg, #1b1b1b, #0d0d0d);
            border: 1px solid rgba(255, 70, 85, 0.34);
            border-radius: 8px;
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
        }

        .modal-close {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #101010;
            border: 1px solid var(--border);
            border-radius: 4px;
            color: var(--text-secondary);
            font-size: 1.35rem;
            line-height: 1;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
        }

        .modal-kicker {
            margin-bottom: 0.5rem;
            color: var(--accent-primary);
            font-family: 'Orbitron', sans-serif;
            font-size: 0.76rem;
            font-weight: 800;
            letter-spacing: 1.6px;
            text-transform: uppercase;
        }

        .confirm-modal h2 {
            margin-bottom: 0.75rem;
            padding-right: 2.4rem;
            color: var(--text-primary);
            font-family: 'Orbitron', sans-serif;
            font-size: 1.55rem;
            text-transform: uppercase;
        }

        .confirm-modal p {
            margin-bottom: 1.25rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .confirm-modal strong {
            color: var(--text-primary);
        }

        .modal-error {
            min-height: 1.25rem;
            margin-top: -0.75rem;
            margin-bottom: 1rem;
            color: var(--accent-primary);
            font-weight: 700;
        }

        .modal-actions {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            gap: 0.75rem;
        }

        .modal-actions .btn-primary,
        .modal-actions .btn-secondary {
            width: 100%;
        }

        .admin-delete-confirm-submit:disabled:not(.loading) {
            opacity: 0.45;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Loading State */
        .page-loading {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 400px;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 4px solid var(--border);
            border-top-color: var(--accent-primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

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

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            color: var(--text-secondary);
        }

        .empty-state h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        /* Alert Messages */
        .alert {
            padding: 1rem;
            margin-bottom: 1rem;
            border-left: 4px solid;
            background: rgba(10, 10, 10, 0.88);
            animation: slideIn 0.3s ease;
            border-radius: 4px;
        }

        @keyframes slideIn {
            from {
                transform: translateX(-20px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .alert-success {
            border-color: var(--success);
            color: var(--success);
        }

        .alert-error {
            border-color: var(--accent-primary);
            color: var(--accent-primary);
        }

        #vpAlert .alert {
            margin-bottom: 0;
        }

        #loginAlert .alert,
        #registerAlert .alert,
        #usernameAlert .alert,
        #passwordAlert .alert {
            margin-top: 1rem;
            margin-bottom: 0;
        }

        .toast-container {
            position: fixed;
            left: 50%;
            bottom: 1.5rem;
            transform: translateX(-50%);
            width: min(520px, calc(100vw - 2rem));
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            z-index: 3000;
            pointer-events: none;
        }

        .toast {
            padding: 1rem 1.1rem;
            background: rgba(10, 10, 10, 0.96);
            border: 1px solid var(--border);
            border-left: 4px solid;
            border-radius: 6px;
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
            font-weight: 700;
            animation: toastIn 0.25s ease;
        }

        .toast-success {
            border-left-color: var(--success);
            color: var(--text-primary);
        }

        .toast-error {
            border-left-color: var(--accent-primary);
            color: var(--accent-primary);
        }

        .toast-error.toast-with-action {
            color: var(--text-primary);
        }

        .toast-action {
            font-weight: 900;
            text-transform: uppercase;
        }

        .toast-action-added {
            color: var(--success);
        }

        .toast-action-remove {
            color: var(--accent-primary);
        }

        .toast-action-removed {
            color: var(--accent-primary);
        }

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

        .back-to-top {
            --back-to-top-base-bottom: 1.5rem;
            position: fixed;
            right: 1.5rem;
            bottom: var(--back-to-top-offset, var(--back-to-top-base-bottom));
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-primary);
            border: 1px solid var(--accent-primary);
            border-radius: 50%;
            color: #070707;
            cursor: pointer;
            z-index: 2600;
            opacity: 0;
            visibility: hidden;
            transform: translateY(14px);
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 22px rgba(255, 70, 85, 0.22);
            transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, bottom 0.2s ease, background 0.25s ease, color 0.25s ease;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: #0b0b0b;
            color: var(--accent-primary);
            box-shadow: inset 0 0 0 1px var(--accent-primary), 0 14px 34px rgba(0, 0, 0, 0.5);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        @media (hover: none), (pointer: coarse) {
            .mobile-menu-toggle:hover {
                border-color: var(--border);
                box-shadow: none;
            }

            .mobile-menu-toggle.is-open,
            .mobile-menu-toggle.is-open:hover {
                border-color: var(--accent-primary);
                box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.12);
            }

            .mobile-menu-toggle:active {
                border-color: var(--accent-primary);
                box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.12);
            }

            .nav-btn:hover {
                background: #101010;
                border-color: var(--border);
                color: var(--text-secondary);
                transform: none;
            }

            .nav-btn:hover::before {
                left: -100%;
            }

            .nav-btn:active {
                background: #171717;
                border-color: var(--border-strong);
                color: var(--accent-primary);
                transform: translateY(-2px);
            }

            .nav-btn:active::before {
                left: 100%;
            }

            .nav-btn.active,
            .nav-btn.active:hover {
                background: var(--accent-primary);
                border-color: var(--accent-primary);
                color: #070707;
                box-shadow: 0 8px 24px rgba(255, 70, 85, 0.22);
            }

            .nav-btn.active:active {
                transform: translateY(0);
            }

            .user-info:hover {
                background: #101010;
                border-color: var(--border-strong);
                transform: none;
                box-shadow: none;
            }

            .user-info:active {
                background: #171717;
                border-color: var(--accent-primary);
                transform: translateY(-2px);
                box-shadow: 0 8px 24px rgba(255, 70, 85, 0.16);
            }

            .user-info.active,
            .user-info.active:hover {
                background: linear-gradient(180deg, rgba(255, 70, 85, 0.18), rgba(255, 70, 85, 0.08));
                border-color: var(--accent-primary);
                color: var(--text-primary);
                box-shadow: inset 0 0 0 1px rgba(255, 70, 85, 0.36), 0 8px 24px rgba(255, 70, 85, 0.16);
            }

            .filter-menu-toggle:hover {
                border-color: var(--border);
                box-shadow: none;
            }

            .filter-menu[open] .filter-menu-toggle,
            .filter-menu-toggle:active {
                border-color: var(--accent-primary);
                box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.12);
            }

            .filter-option:hover {
                background: transparent;
                color: var(--text-secondary);
            }

            .filter-option:has(input:checked),
            .filter-option:active {
                background: rgba(255, 70, 85, 0.12);
                color: var(--text-primary);
            }

            .clear-filters-btn:hover:not(:disabled) {
                border-color: var(--border);
                color: var(--text-secondary);
                box-shadow: none;
            }

            .clear-filters-btn:active:not(:disabled) {
                border-color: var(--accent-primary);
                color: var(--accent-primary);
                box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.12);
            }

            .btn-primary:hover {
                transform: none;
                background: var(--accent-primary);
                color: #070707;
                box-shadow: none;
            }

            .btn-primary:active {
                transform: translateY(-2px);
                background: #0b0b0b;
                color: var(--accent-primary);
                box-shadow: inset 0 0 0 1px var(--accent-primary), 0 10px 28px rgba(255, 70, 85, 0.22);
            }

            .btn-danger:hover {
                background: linear-gradient(135deg, #dc2626, #991b1b);
                border-color: #dc2626;
                color: #ffffff;
                box-shadow: none;
            }

            .btn-danger:active {
                background: #0b0b0b;
                border-color: #dc2626;
                color: #ff6b73;
                box-shadow: inset 0 0 0 1px #dc2626, 0 10px 28px rgba(220, 38, 38, 0.22);
            }

            .view-toggle:hover {
                border-color: var(--border);
                color: var(--text-primary);
                box-shadow: none;
            }

            .view-toggle:active {
                border-color: var(--accent-primary);
                color: var(--accent-primary);
                box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.12);
            }

            .skin-card:hover {
                border-color: var(--border);
                transform: none;
                box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
            }

            .skin-card:hover .skin-image {
                transform: none;
            }

            .skin-card:active {
                border-color: var(--border-strong);
                transform: translateY(-4px);
                box-shadow: 0 22px 46px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(255, 70, 85, 0.2), 0 0 24px rgba(255, 70, 85, 0.08);
            }

            .skin-card:active .skin-image {
                transform: scale(1.1);
            }

            .btn-wishlist:hover {
                background: #111;
                color: var(--text-primary);
                box-shadow: none;
            }

            .btn-wishlist:active {
                background: #251013;
                color: var(--accent-primary);
                box-shadow: 0 8px 18px rgba(255, 70, 85, 0.16);
            }

            .btn-wishlist.active,
            .btn-wishlist.active:hover {
                background: var(--accent-primary);
                border-color: var(--accent-primary);
                color: #050505;
            }

            .btn-wishlist.active:active {
                background: var(--accent-secondary);
            }

            .btn-buy:hover {
                background: var(--accent-primary);
                color: #050505;
                box-shadow: none;
            }

            .btn-buy:active {
                background: #ff5c68;
                color: #050505;
                box-shadow: 0 8px 20px rgba(255, 70, 85, 0.24);
            }

            .btn-remove:hover {
                background: #111;
                color: #ff6b73;
                box-shadow: none;
            }

            .btn-remove:active {
                background: #dc2626;
                color: #ffffff;
                box-shadow: 0 8px 20px rgba(220, 38, 38, 0.24);
            }

            .btn-secondary:hover {
                background: #111;
                color: var(--accent-primary);
                box-shadow: none;
            }

            .btn-secondary:active {
                background: var(--accent-primary);
                color: #050505;
                box-shadow: 0 8px 20px rgba(255, 70, 85, 0.22);
            }

            .back-to-top:hover {
                background: var(--accent-primary);
                color: #070707;
                box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 22px rgba(255, 70, 85, 0.22);
            }

            .back-to-top:active {
                background: #0b0b0b;
                color: var(--accent-primary);
                box-shadow: inset 0 0 0 1px var(--accent-primary), 0 14px 34px rgba(0, 0, 0, 0.5);
            }

            .footer-social-icon:hover {
                color: #777;
                border-color: rgba(255, 255, 255, 0.08);
                transform: none;
            }

            .footer-social-icon:active {
                color: var(--accent-primary);
                border-color: var(--border-strong);
                transform: translateY(-2px);
            }
        }

        @media (min-width: 769px) and (max-width: 1180px) {
            .navbar {
                padding: 0.85rem 1rem;
            }

            .navbar-content {
                align-items: flex-start;
                flex-wrap: wrap;
            }

            .logo {
                flex: 1 1 auto;
            }

            .nav-links {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 0.6rem;
            }

            .nav-btn,
            .user-info {
                width: 100%;
                min-height: 46px;
                padding: 0.65rem 0.85rem;
            }

            .nav-btn {
                font-size: 0.9rem;
            }

            .user-info {
                grid-column: span 2;
                justify-content: space-between;
            }

            .user-info-name {
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .vp-display {
                flex: 0 0 auto;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
            }

            .navbar-content {
                align-items: center;
                gap: 1rem;
                flex-direction: row;
                flex-wrap: wrap;
            }

            .mobile-menu-toggle {
                display: inline-flex;
            }

            .nav-links {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 0.65rem;
                width: 100%;
                max-height: 0;
                padding-top: 0;
                opacity: 0;
                overflow: hidden;
                pointer-events: none;
                transform: translateY(-8px);
                visibility: hidden;
                transition:
                    max-height 0.24s ease,
                    opacity 0.18s ease,
                    transform 0.24s ease,
                    padding-top 0.24s ease,
                    visibility 0.24s ease;
            }

            .nav-links.open {
                max-height: 440px;
                padding-top: 0.25rem;
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0);
                visibility: visible;
            }

            .nav-links > * {
                opacity: 0;
                transform: translateY(-5px);
                transition: opacity 0.18s ease, transform 0.22s ease;
            }

            .nav-links.open > * {
                opacity: 1;
                transform: translateY(0);
            }

        .nav-links:empty {
            display: none;
        }

        .nav-links.nav-loading {
            display: flex;
            min-height: 44px;
        }

        .nav-btn {
                width: 100%;
                padding: 0.75rem 1rem;
                font-size: 0.9rem;
                text-align: left;
                border-radius: 4px;
                justify-content: flex-start;
                gap: 0.55rem;
            }

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

            .user-info {
                width: 100%;
                justify-content: space-between;
            }

            .main-content {
                padding: 1rem;
            }

            .site-footer {
                padding: 1rem 1rem 1.5rem;
            }

            .footer-socials {
                grid-column: auto;
                grid-row: auto;
                justify-content: center;
                width: 100%;
            }

            .footer-copyright {
                grid-column: auto;
                grid-row: auto;
            }

            .back-to-top {
                --back-to-top-base-bottom: 1rem;
                right: 1rem;
                width: 46px;
                height: 46px;
            }

            .browse-controls {
                grid-template-columns: 1fr;
            }

            .view-toggle {
                display: none;
            }

            .skins-grid {
                gap: 2rem;
            }

            .skins-grid.grid-view {
                grid-template-columns: 1fr;
            }

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

            .page-title {
                font-size: 2rem;
            }

            .search-bar {
                width: 100%;
            }

            .auth-box {
                padding: 2rem;
            }

            .auth-title {
                font-size: 1.9rem;
            }

            .skin-image-container {
                height: 180px;
                min-height: 180px;
                border-right: 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            }

            .vp-tracker,
            .skin-actions {
                flex-direction: column;
            }

            .admin-actions,
            .admin-summary {
                grid-template-columns: 1fr;
                width: 100%;
            }

            .admin-table th,
            .admin-table td {
                padding: 0.85rem;
            }

            .modal-actions {
                grid-template-columns: 1fr;
            }

            .btn-secondary {
                width: 100%;
            }
        }

        @media (max-width: 900px) {
            .seo-hero {
                min-height: auto;
            }

            .seo-hero-media {
                background:
                    linear-gradient(180deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.98) 78%),
                    linear-gradient(rgba(255, 70, 85, 0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 70, 85, 0.1) 1px, transparent 1px);
                background-size: auto, 42px 42px, 42px 42px;
            }

            .seo-hero-content {
                width: min(100% - 2rem, 720px);
                padding: 4rem 0 3rem;
            }

            .seo-main,
            .seo-section,
            .seo-page-header {
                width: min(100% - 2rem, 760px);
            }

            .seo-split,
            .seo-card-grid,
            .seo-card-grid.compact,
            .home-flow {
                grid-template-columns: 1fr;
            }

            .seo-card {
                min-height: 0;
            }

            .home-flow-step {
                min-height: 0;
            }

            .mainframe-panel {
                width: min(260px, 42vw);
                opacity: 0.55;
            }
        }

        @media (max-width: 768px) {
            .seo-navbar .navbar-content {
                align-items: center;
            }

            .seo-nav-links {
                justify-content: flex-start;
            }

            .seo-actions {
                display: grid;
                grid-template-columns: 1fr;
            }

            .seo-action {
                width: 100%;
            }

            .mainframe-panel {
                display: none;
            }

            .mainframe-line {
                width: 68vw;
                right: -18vw;
            }
        }

/* Password reset / recovery helpers */
.auth-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.55;
    margin: -0.75rem 0 1.5rem;
}

.form-help {
    margin-top: 0.45rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

#forgotPasswordAlert .alert,
#resetPasswordAlert .alert,
#emailAlert .alert {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Email verification code UI */
.register-verification-panel[hidden] {
    display: none;
}

.verification-code-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.verification-code-input {
    width: 100%;
    aspect-ratio: 1;
    min-height: 54px;
    padding: 0;
    background: #0b0b0b;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.verification-code-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.16);
}

.verification-code-input:disabled {
    opacity: 0.75;
    cursor: wait;
}

.register-verify-submit {
    margin-bottom: 1rem;
}

.register-verification-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.email-code-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: stretch;
}

.email-code-btn {
    min-width: 130px;
    padding-right: 1rem;
    padding-left: 1rem;
    white-space: nowrap;
}

.email-code-btn.loading {
    opacity: 0.78;
    cursor: wait;
}

#accountEmailStatus {
    margin-top: -0.4rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .verification-code-grid {
        gap: 0.4rem;
    }

    .verification-code-input {
        min-height: 46px;
        font-size: 1.35rem;
    }

    .register-verification-actions {
        grid-template-columns: 1fr;
    }

    .email-code-row {
        grid-template-columns: 1fr;
    }

    .email-code-btn {
        width: 100%;
    }
}
