    :root {
        --primary-bg: #010101;
        --secondary-bg: #1c1c1c;
        --accent-gold: #FFD700;
        --accent-gold-alt: #E6C200;
        --text-heading: #F0F0F0;
        --text-body: #B0B0B0;
        --border-color: #3A3A3A;
    }

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

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: var(--primary-bg);
        color: var(--text-body);
        line-height: 1.6;
    }

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

    /* Navbar */
    .navbar {
        background-color: var(--secondary-bg);
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-color);
        position: sticky;
        top: 0;
        z-index: 1000;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .logo-placeholder {
        width: 200px;
        height: 80px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-gold);
        font-weight: bold;
        font-size: 1.2rem;
    }

    .logo-placeholder img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .brand-name {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-heading);
    }

    .brand-name .lux {
        color: var(--accent-gold);
    }

    .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
    }

    .nav-links a {
        color: var(--text-body);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-links a:hover {
        color: var(--accent-gold);
    }

    .nav-links a i {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        background-color: var(--secondary-bg);
        padding: 3rem 2rem;
        text-align: center;
        border-top: 1px solid var(--border-color);
        margin-top: 4rem;
    }

    .footer p {
        color: var(--text-body);
        margin-bottom: 0.5rem;
    }

    .footer .tagline {
        color: var(--accent-gold);
        font-style: italic;
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .social-links a {
        color: var(--text-body);
        font-size: 1.5rem;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .social-links a:hover {
        color: var(--accent-gold);
        transform: translateY(-3px);
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 1rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: var(--accent-gold);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .nav-container {
            padding: 0 1.5rem;
        }
    }

    @media (max-width: 768px) {

        /* Navigation */
        .nav-container {
            padding: 0 1rem;
        }

        .brand-name {
            font-size: 1.4rem;
        }

        .logo-placeholder {
            width: 120px;
            height: 50px;
            font-size: 1rem;
        }

        .nav-links {
            display: none;
        }

        /* Footer */
        .footer {
            padding: 2rem 1.5rem;
        }

        .footer .tagline {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {

        /* Navigation */
        .brand-name {
            font-size: 1.2rem;
        }

        .logo-placeholder {
            width: 100px;
            height: 42px;
            font-size: 0.9rem;
        }

        /* Footer */
        .footer {
            padding: 2rem 1rem;
        }

        .footer p {
            font-size: 0.9rem;
        }

        .footer .tagline {
            font-size: 0.9rem;
        }
    }