@font-face {
            font-family: 'Cera Stencil';
            src: url('/fonts/CeraStencil.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Cera Stencil';
            src: url('/fonts/CeraStencilBold.otf') format('opentype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Cera Stencil';
            src: url('/fonts/CeraStencilBlack.otf') format('opentype');
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }
        :root {
            --velvet: #750851;
            --velvet-light: #a00a72;
            --olive: #808000;
            --olive-light: #b3b300;
            --gradient-primary: linear-gradient(135deg, var(--velvet) 0%, var(--olive) 100%);
            --gradient-glow: radial-gradient(circle, rgba(117, 8, 81, 0.18) 0%, rgba(128, 128, 0, 0.06) 40%, transparent 70%);
            --text-muted: #a0a0a0;
            --bg-dark: #0a0a0a;
            --card-bg: #141414;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            cursor: url(/images/cursor/default.png) , default !important;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-dark);
            color: #ffffff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        button,
.btn-primary,
.btn-ghost,
.logo,
.tag,
.footer-links a,
.trust-item,
.step-card {
    cursor: url(/images/cursor/pointer.png) 4 4, pointer !important;
}
.onboarding-box,
.onboarding-box * {
    cursor: url(/images/cursor/default.png), default !important;
}
.onboarding-box button,
.onboarding-box .tag-option,
.onboarding-box select,
.onboarding-box .onboard-input,
.onboarding-box .onboarding-close {
    cursor: url(/images/cursor/pointer.png) 4 4, pointer !important;
}
.onboarding-btn:disabled {
    cursor: url(/images/cursor/default.png), default !important;
}
        .container {
            max-width: 1900px;
            margin: 0 auto;
            padding: 0 32px;
        }
        ::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--velvet) 0%, var(--olive) 100%);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--velvet-light) 0%, var(--olive-light) 100%);
}
header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(128, 128, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 32px;
}
.header-left {
    flex: 0 0 auto;
    margin-right: auto;
    display: flex;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo img {
    height: 40px;
    width: auto;
    display: block;
}
.logo-text {
    font-family: 'Cera Stencil', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
    color: var(--velvet);
}
.logo-text span {
    color: var(--olive);
}
.header-right {
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}
        .btn-ghost {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 24px;
            border-radius: 8px;
            color: #e0e0e0;
            font-size: 14px;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .btn-ghost:hover {
            border-color: var(--olive);
            color: #ffffff;
            background: rgba(128, 128, 0, 0.06);
        }
        .btn-primary {
            background: var(--gradient-primary);
            border: none;
            padding: 10px 28px;
            border-radius: 8px;
            color: #ffffff;
            font-size: 14px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 24px rgba(117, 8, 81, 0.3);
            letter-spacing: -0.2px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
        }
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 12px 48px rgba(117, 8, 81, 0.4);
        }
        .btn-primary:active {
            transform: translateY(0) scale(0.98);
        }
        .btn-large {
            padding: 18px 48px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 10px;
        }
        .hero {
            padding: 100px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 900px;
            height: 900px;
            background: var(--gradient-glow);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-family: 'Cera Stencil', sans-serif;
            font-weight: 900;
            font-size: 74px;
            line-height: 1.05;
            letter-spacing: -2px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 40%, var(--olive) 80%, var(--velvet-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero h1 .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 560px;
            margin: 0 auto 40px;
            font-weight: 400;
            line-height: 1.7;
            letter-spacing: -0.2px;
        }
        .hero-actions {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .hero-actions .btn-ghost {
            border-color: rgba(255, 255, 255, 0.08);
        }
        .hero-actions .btn-ghost:hover {
            border-color: var(--velvet);
        }
        .trust-bar {
            padding: 24px 0 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .trust-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 32px 56px;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #b0b0b0;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: -0.2px;
        }
        .trust-item i {
            color: var(--olive);
            font-size: 18px;
            width: 24px;
            text-align: center;
        }
        .features {
            padding: 80px 0 60px;
        }
        .section-label {
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--olive-light);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }
        .section-title {
            font-family: 'Cera Stencil', sans-serif;
            font-weight: 700;
            font-size: 42px;
            text-align: center;
            letter-spacing: -1px;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #ffffff 70%, var(--olive) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-sub {
            text-align: center;
            color: #888;
            font-size: 18px;
            max-width: 540px;
            margin: 0 auto 56px;
            line-height: 1.6;
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .step-card {
            background: linear-gradient(145deg, #141414, #0e0e0e);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            padding: 40px 32px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }
        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        .step-card:hover {
            transform: translateY(-6px);
            border-color: rgba(128, 128, 0, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        }
        .step-card:hover::before {
            opacity: 1;
        }
        .step-icon {
            font-size: 40px;
            color: var(--velvet-light);
            margin-bottom: 16px;
            display: block;
        }
        .step-card h3 {
            font-family: 'Cera Stencil', sans-serif;
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 8px;
            color: #ffffff;
            letter-spacing: -0.3px;
        }
        .step-card p {
            font-size: 15px;
            color: #999;
            line-height: 1.6;
        }
        .interests-section {
            padding: 40px 0 80px;
        }
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 8px;
        }
        .tag {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            padding: 8px 24px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 500;
            color: #c0c0c0;
            transition: all 0.25s ease;
            cursor: default;
            letter-spacing: -0.2px;
        }
        .tag:hover {
            border-color: var(--olive);
            color: #ffffff;
            background: rgba(128, 128, 0, 0.06);
            transform: translateY(-2px);
        }
        .cta-banner {
            background: linear-gradient(135deg, rgba(117, 8, 81, 0.08), rgba(128, 128, 0, 0.04));
            border: 1px solid rgba(128, 128, 0, 0.08);
            border-radius: 20px;
            padding: 56px 48px;
            text-align: center;
            margin: 20px 0 60px;
            backdrop-filter: blur(4px);
        }
        .cta-banner h2 {
            font-family: 'Cera Stencil', sans-serif;
            font-weight: 700;
            font-size: 34px;
            margin-bottom: 12px;
            letter-spacing: -1px;
            color: #ffffff;
        }
        .cta-banner p {
            color: #aaa;
            font-size: 18px;
            margin-bottom: 28px;
        }
        .cta-banner .btn-primary {
            box-shadow: 0 8px 40px rgba(117, 8, 81, 0.25);
        }
        footer {
            margin-top: auto;
            padding: 32px 0 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            background: #0a0a0a;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
            color: #666;
        }
        .footer-links {
            display: flex;
            gap: 32px;
            margin-left:-7rem;
        }
        .footer-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s ease;
            font-weight: 500;
        }
        .footer-links a:hover {
            color: var(--olive);
        }
        .footer-socials {
            display: flex;
            gap: 16px;
        }
        .footer-socials a {
            color: #666;
            font-size: 18px;
            transition: color 0.2s ease;
        }
        .footer-socials a:hover {
            color: var(--velvet-light);
        }
.onboarding-box {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    max-width: 480px;
    width: 92%;
    padding: 40px 36px 36px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
    position: relative;
    animation: fadeInUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.onboarding-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 4px 8px;
    border-radius: 6px;
}
.onboarding-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.onboarding-icon {
    text-align: center;
    font-size: 48px;
    margin-bottom: 4px;
}
.onboarding-box h2 {
    font-family: 'Cera Stencil', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.onboarding-sub {
    text-align: center;
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.onboarding-sub a {
    color: var(--olive);
    text-decoration: none;
    font-weight: 500;
}
.onboarding-sub a:hover {
    text-decoration: underline;
}
.onboarding-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    margin: 0 0 24px 0;
}
.onboarding-field {
    margin-bottom: 20px;
}
.onboarding-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 4px;
}
.onboarding-hint {
    display: block;
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}
.onboarding-field select {
    width: 100%;
    padding: 12px 16px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23808000' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    cursor: pointer;
    transition: border 0.2s;
}
.onboarding-field select:hover {
    border-color: var(--olive);
}
.onboarding-field select:focus {
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(128, 128, 0, 0.15);
}
.onboarding-field select option {
    background: #0d0d0d;
}
.onboarding-field .tag-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.onboarding-field .tag-selector .tag-option {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #bbb;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.onboarding-field .tag-selector .tag-option:hover {
    border-color: var(--olive);
    color: #fff;
    background: rgba(128, 128, 0, 0.06);
}
.onboarding-field .tag-selector .tag-option.selected {
    background: var(--gradient-primary);
    border-color: var(--olive);
    color: #fff;
}
.onboarding-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.onboarding-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}
.onboard-input {
    width: 100%;
    padding: 12px 16px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border 0.2s;
}
.onboard-input:hover {
    border-color: var(--olive);
}
.onboard-input:focus {
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(128, 128, 0, 0.15);
}
.modal-overlay-global {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}
.modal-overlay-global.active {
    display: flex;
}
.modal-box {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    max-width: 420px;
    width: 90%;
    padding: 32px 28px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    text-align: center;
}
.modal-box h2 {
    font-family: 'Cera Stencil', sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: #fff;
}
.modal-box p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.modal-box .btn-primary {
    padding: 10px 32px;
    font-size: 15px;
}
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-on-load {
            animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            opacity: 0;
        }
        .delay-1 {
            animation-delay: 0.1s;
        }
        .delay-2 {
            animation-delay: 0.2s;
        }
        .delay-3 {
            animation-delay: 0.3s;
        }
        .delay-4 {
            animation-delay: 0.4s;
        }
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 52px;
            }
            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            .hero {
                padding: 60px 0 40px;
            }
            .hero h1 {
                font-size: 36px;
                letter-spacing: -1px;
            }
            .hero p {
                font-size: 17px;
            }
            .header-inner {
                grid-template-columns: auto 1fr auto;
                gap: 0;
            }
            .header-right .btn-ghost {
                display: none;
            }
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .trust-grid {
                gap: 16px 24px;
                justify-content: flex-start;
            }
            .trust-item {
                font-size: 13px;
            }
            .section-title {
                font-size: 30px;
            }
            .cta-banner {
                padding: 32px 24px;
            }
            .cta-banner h2 {
                font-size: 26px;
            }
            .footer-inner {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }
            .hero::before {
                width: 500px;
                height: 500px;
                top: -10%;
            }
            .btn-large {
                padding: 14px 32px;
                font-size: 16px;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }
            .logo img {
                height: 32px;
            }
            .logo-text {
                font-size: 18px;
            }
            .trust-item {
                font-size: 12px;
            }
            .trust-item i {
                font-size: 14px;
                width: 18px;
            }
        }