header {
                background: linear-gradient(to right, #000000, #1a1a1a);
                padding: 1.5rem 2rem;
                border-bottom: 1px solid var(--accent-gold);
                box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
            }
            .logo {
                display: flex;
                align-items: center;
                gap: 1rem;
            }
            .logo h1 {
                color: var(--text-gold);
                font-size: 2.2rem;
                letter-spacing: 1px;
                text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
            }
            .logo span {
                color: var(--text-white);
                font-size: 1.2rem;
                font-style: italic;
            }
            nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: 1rem;
            }
            .nav-links {
                display: flex;
                gap: 2rem;
            }
            .nav-links a {
                color: var(--text-white);
                text-decoration: none;
                font-size: 1.1rem;
                transition: all 0.3s ease;
                padding: 0.5rem 1rem;
                border-radius: 4px;
            }
            .nav-links a:hover, .nav-links a.active {
                color: var(--text-gold);
                background-color: var(--highlight);
            }
            .search-box {
                display: flex;
                align-items: center;
                background-color: var(--secondary-bg);
                padding: 0.5rem 1rem;
                border-radius: 30px;
                border: 1px solid var(--accent-gold);
            }
            .search-box input {
                background: transparent;
                border: none;
                color: var(--text-white);
                padding: 0.5rem;
                width: 200px;
                outline: none;
            }
            .search-box button {
                background: transparent;
                border: none;
                color: var(--text-gold);
                cursor: pointer;
                font-size: 1.1rem;
            }
            /* Hamburger Menu Styles */
            .menu-icon {
                display: none;
                flex-direction: column;
                cursor: pointer;
                width: 32px;
                height: 32px;
                justify-content: center;
                align-items: center;
                z-index: 1001;
            }
            .menu-icon span {
                height: 4px;
                width: 26px;
                background: var(--text-gold);
                margin: 4px 0;
                border-radius: 2px;
                transition: 0.4s;
                display: block;
            }
            @media (max-width: 900px) {
                nav {
                    flex-direction: row;
                    position: relative;
                }
                .menu-icon {
                    display: flex;
                }
                .nav-links {
                    position: absolute;
                    top: 60px;
                    right: 0;
                    background: var(--secondary-bg);
                    flex-direction: column;
                    width: 200px;
                    gap: 0;
                    border-radius: 0 0 8px 8px;
                    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
                    overflow: hidden;
                    max-height: 0;
                    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
                    z-index: 1000;
                }
                .nav-links.open {
                    max-height: 400px;
                    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
                }
                .nav-links a {
                    padding: 1rem 2rem;
                    border-bottom: 1px solid rgba(255,255,255,0.07);
                    font-size: 1.1rem;
                }
                .search-box {
                    margin-top: 1rem;
                    width: 100%;
                    justify-content: flex-end;
                }
            }
            @media (max-width: 600px) {
                .search-box input {
                    display: none;
                }
                .search-box button {
                    font-size: 1.3rem;
                    padding: 0.2rem 0.5rem;
                }
            }
        h1 a {
            text-decoration: none;
            font-family: 'Cormorant Garamond', 'Georgia', serif;
            color: var(--text-gold);
        }
        * {
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cormorant Garamond', 'Georgia', serif;
        }

        body.signed-up .signup-link {
            display: none !important;
        }