:root {
            --primary-gold: #FFD700;
            --secondary-gold: #D4AF37;
            --dark-gold: #B8860B;
            --black-void: #000000;
            --rich-black: #0A0A0A;
            --charcoal: #1A1A1A;
            --light-charcoal: #2A2A2A;
            --platinum: #E5E4E2;
            --crystal: rgba(255, 255, 255, 0.9);
            --glow: rgba(255, 215, 0, 0.6);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--black-void);
            color: var(--platinum);
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            cursor: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='8' fill='none' stroke='%23FFD700' stroke-width='2'/%3E%3Ccircle cx='10' cy='10' r='2' fill='%23FFD700'/%3E%3C/svg%3E") 10 10, auto;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        .brand-font {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .elegant-font {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
            letter-spacing: 1px;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--rich-black);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--primary-gold), var(--dark-gold));
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(to bottom, var(--primary-gold), #FFEC8B);
        }

        /* Global Effects CSS */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0.6;
        }

        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary-gold), #FFEC8B);
            z-index: 10001;
            width: 0%;
            transition: width 0.1s;
        }

        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid var(--primary-gold);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10000;
            transition: transform 0.1s, background-color 0.3s;
            transform: translate(-50%, -50%);
        }

        .cursor-dot {
            position: fixed;
            width: 6px;
            height: 6px;
            background-color: var(--primary-gold);
            border-radius: 50%;
            pointer-events: none;
            z-index: 10001;
            transform: translate(-50%, -50%);
        }

        /* Navbar Enhancements */
        .navbar {
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.05);
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            padding: 0.8rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .navbar-brand {
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-gold), #FFF, var(--secondary-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-brand:hover {
            filter: drop-shadow(0 0 10px var(--glow));
            transform: scale(1.05);
        }

        .nav-link {
            font-size: 0.85rem;
            letter-spacing: 2px;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            color: var(--platinum) !important;
            opacity: 0.8;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-gold) !important;
            opacity: 1;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 1px;
            background: var(--primary-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }

        /* Footer Enhancements */
        .footer {
            padding: 5rem 0 2rem;
            background: radial-gradient(circle at top, var(--rich-black) 0%, var(--black-void) 100%);
            border-top: 1px solid rgba(255, 215, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .footer-title {
            color: var(--primary-gold);
            font-size: 1.2rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-gold);
        }

        .footer-links a {
            color: var(--platinum);
            text-decoration: none;
            display: block;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 10px;
            opacity: 1;
        }

        .social-icons {
            display: flex;
            gap: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 215, 0, 0.2);
            color: var(--platinum);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }

        .social-icon:hover {
            background: var(--primary-gold);
            color: var(--black-void);
            transform: translateY(-5px) rotate(360deg);
            border-color: var(--primary-gold);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }
        /* Premium Auth System */
        .auth-section {
            min-height: calc(100vh - 80px); /* Adjust for navbar */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 5rem 1rem;
            position: relative;
            background: radial-gradient(circle at center, rgba(26, 26, 26, 0.4) 0%, var(--black-void) 100%);
        }

        .auth-card {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.95));
            border: 1px solid rgba(255, 215, 0, 0.15);
            backdrop-filter: blur(20px);
            padding: 3rem;
            width: 100%;
            max-width: 480px;
            position: relative;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .auth-card:hover {
            border-color: rgba(255, 215, 0, 0.3);
            box-shadow: 0 50px 120px rgba(0, 0, 0, 0.9);
            transform: translateY(-5px);
        }

        .auth-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            box-shadow: 0 0 15px var(--glow);
        }

        .auth-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .auth-icon {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
            display: inline-block;
            filter: drop-shadow(0 0 10px var(--glow));
            animation: auth-icon-pulse 3s infinite ease-in-out;
        }

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

        .auth-title {
            font-size: 1.8rem;
            color: var(--platinum);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .auth-subtitle {
            color: var(--platinum);
            opacity: 0.6;
            font-size: 0.9rem;
            font-weight: 300;
        }

        .auth-label {
            color: var(--primary-gold);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 0.8rem;
            display: block;
        }

        .auth-input {
            background: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 215, 0, 0.2) !important;
            border-radius: 0 !important;
            color: var(--platinum) !important;
            padding: 1rem 1.2rem !important;
            font-size: 0.95rem !important;
            transition: all 0.3s ease !important;
        }

        .auth-input:focus {
            background: rgba(255, 255, 255, 0.08) !important;
            border-color: var(--primary-gold) !important;
            box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1) !important;
            outline: none;
        }

        .auth-btn-premium {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(45deg, var(--dark-gold), var(--primary-gold), var(--secondary-gold));
            background-size: 200% auto;
            border: none;
            color: var(--black-void);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .auth-btn-premium:hover {
            background-position: right center;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
            color: var(--black-void);
        }

        .auth-btn-premium::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(30deg);
            transition: all 0.5s;
        }

        .auth-btn-premium:hover::after {
            left: 120%;
        }

        .auth-footer {
            margin-top: 2rem;
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 215, 0, 0.1);
        }

        .auth-link {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .auth-link:hover {
            text-shadow: 0 0 10px var(--glow);
            color: #FFF;
        }

        .auth-secondary-btn {
            background: none;
            border: 1px solid rgba(255, 215, 0, 0.3);
            color: var(--platinum);
            padding: 0.8rem 1.5rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .auth-secondary-btn:hover {
            border-color: var(--primary-gold);
            color: var(--primary-gold);
            background: rgba(255, 215, 0, 0.05);
        }

        /* Error Messages Stylized */
        .auth-error-alert {
            background: rgba(255, 68, 68, 0.1);
            border-left: 3px solid #ff4444;
            color: #ff6b6b;
            padding: 1rem;
            margin-bottom: 2rem;
            font-size: 0.85rem;
        }

        .auth-success-alert {
            background: rgba(76, 175, 80, 0.1);
            border-left: 3px solid #4CAF50;
            color: #81C784;
            padding: 1rem;
            margin-bottom: 2rem;
            font-size: 0.85rem;
        }
        /* Premium Dashboard & Jetstream Overrides */
        .premium-dashboard-header {
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            padding: 2.5rem 0;
            margin-bottom: 3rem;
        }

        .premium-dashboard-title {
            font-family: 'Cinzel', serif;
            color: var(--primary-gold);
            font-size: 2rem;
            letter-spacing: 3px;
            margin: 0;
            text-shadow: 0 0 10px var(--glow);
        }

/* ==========================================================================
   Premium Dashboard & Profile System
   ========================================================================== */
.premium-dashboard-header {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1) !important;
    padding: 2.5rem 0 !important;
    margin-bottom: 3rem !important;
    margin-top: 80px !important;
}

.premium-dashboard-title {
    font-family: 'Cinzel', serif !important;
    color: var(--primary-gold) !important;
    font-size: 2.2rem !important;
    letter-spacing: 4px !important;
    margin: 0 !important;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4) !important;
    text-transform: uppercase !important;
    text-align: center !important;
}

/* Jetstream Content Overrides */
main .bg-white, 
main .bg-gray-800,
main .dark\:bg-gray-800,
.jetstream-form-section .bg-white,
.jetstream-form-section .dark\:bg-gray-800 {
    background: rgba(20, 20, 20, 0.7) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 215, 0, 0.15) !important;
    color: var(--platinum) !important;
}

main .shadow, 
main .shadow-xl,
main .sm\:rounded-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    border-radius: 0 !important;
}

/* Typography Overrides */
main h2, main h3, .jetstream-form-section h3 {
    font-family: 'Cinzel', serif !important;
    color: var(--primary-gold) !important;
    letter-spacing: 1px !important;
}

main p, main span, .jetstream-form-section p, .jetstream-form-section label {
    color: var(--platinum) !important;
    opacity: 0.8 !important;
}

/* Form Controls Overrides */
main input[type="text"],
main input[type="email"],
main input[type="password"],
main input[type="number"],
main textarea,
main select {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
    color: var(--platinum) !important;
    border-radius: 0 !important;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease !important;
}

main input:focus {
    border-color: var(--primary-gold) !important;
    background: rgba(0, 0, 0, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
}

/* Button Overrides */
main .inline-flex.items-center.px-4.py-2.bg-gray-800,
main .inline-flex.items-center.px-4.py-2.dark\:bg-gray-200,
main button[type="submit"]:not(.resend-btn) {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold)) !important;
    color: var(--black-void) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 0 !important;
    transition: all 0.4s ease !important;
}

main button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4) !important;
}

/* Navigation Menu Overrides */
nav.bg-white, nav.dark\:bg-gray-800 {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1) !important;
}

nav .text-gray-500, nav .dark\:text-gray-400 {
    color: var(--platinum) !important;
}

nav .hover\:text-gray-700:hover, nav .dark\:hover\:text-gray-300:hover {
    color: var(--primary-gold) !important;
    background: transparent !important;
}

/* Section Borders */
.border-t.border-gray-200, .dark\:border-gray-700, .border-gray-200, .dark\:border-gray-100 {
    border-color: rgba(255, 215, 0, 0.1) !important;
}
