:root {
    --primary: #000000;
    --accent: #d4af37; /* Gold */
    --text-main: #ffffff;
    --text-dim: #cccccc;
    --bg-main: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-serif: 'Playfair Display', serif;
    --font-fashion: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    overflow-x: hidden;
    padding-top: 80px; /* Prevent navigation from covering content */
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 5%;
    display: flex;
    justify-content: center; /* Center everything */
    align-items: center;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.6);
    border-bottom: 2px solid rgba(212, 175, 55, 0.8);
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.9), inset 0 0 50px rgba(212, 175, 55, 0.1);
}



nav .admin-login-link {
    position: absolute;
    right: 5%;
}

.logo {
    font-family: var(--font-fashion);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 12px;
    background: linear-gradient(
        -45deg, 
        #bf953f 0%, 
        #fcf6ba 25%, 
        #b38728 50%, 
        #fbf5b7 75%, 
        #aa771c 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    position: relative;
    cursor: default;
    filter: drop-shadow(0px 4px 2px rgba(0,0,0,0.8)) drop-shadow(0px 0px 15px rgba(212, 175, 55, 0.4));
    display: flex;
    align-items: center;
    gap: 20px;
    animation: shineGold 4s linear infinite;
}

@keyframes shineGold {
    to {
        background-position: 200% center;
    }
}

.logo::before {
    content: '✦';
    width: auto;
    height: auto;
    background: none;
    color: var(--accent);
    font-size: 1.2rem;
    opacity: 1;
    margin-right: 10px;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.4; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.logo::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
    opacity: 0.6;
}

.logo img {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: 0.5s;
    mix-blend-mode: screen;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    transform: scale(1.05);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

.admin-login-link {
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-fashion);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 10px 24px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    display: inline-block;
}

.admin-login-link:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    letter-spacing: 5px;
    transform: translateY(-2px);
}

/* Subpage Navigation Layout */
.subpage-nav {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    padding: 20px 5% !important;
}

.subpage-nav .nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.subpage-nav .nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage-nav .nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.home-btn {
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-fashion);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 24px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    transition: all 0.4s ease;
    background: rgba(212, 175, 55, 0.05);
    white-space: nowrap;
}

.home-btn:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.subpage-nav .overlay-toggle {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 0 !important;
    z-index: 10 !important; /* Within the nav's stacking context */
}

/* --- Menu Design System --- */
/* The base menu designs are now handled primarily by premium_menu.css 
   to avoid conflicts. Only base functional rules remain here. */

.nav-sidebar, .nav-floating, .nav-overlay {
    display: none; /* Hide by default, let JS/specific classes show them */
}

.nav-overlay.active {
    display: flex !important;
}

.menu-link {
    font-family: var(--font-fashion);
    text-decoration: none;
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}
.menu-link:hover { color: var(--accent); }

.menu-link {
    font-family: var(--font-fashion);
    text-decoration: none;
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}
.menu-link:hover { color: var(--accent); }

/* --- Premium Side-by-Side Carousel for Spotlight Events --- */
.carousel-viewport {
    position: relative;
    width: 100%;
    height: 550px; /* Increased to accommodate larger items */
    perspective: 2000px; /* Reduced from 2500px to bring items closer */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding-top: 20px; /* Reduced from 50s0px */
    margin: 0;
    overflow: visible;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.carousel-viewport::before, .carousel-viewport::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translateY(-50%);
}

.carousel-viewport::before {
    left: -50px;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.carousel-viewport::after {
    right: -50px;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

/* Gold Particles */
.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle var(--duration) linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    50% { opacity: 0.5; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

.carousel-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-decoration-left { left: 5%; }
.carousel-decoration-right { right: 5%; }

.decoration-line {
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
    position: relative;
}

.decoration-line::before {
    content: 'LOOKS';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: rotate(-90deg) translateX(50%);
    color: var(--accent);
    font-family: var(--font-fashion);
    font-size: 0.7rem;
    letter-spacing: 5px;
}

.carousel-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
    transform: translateZ(calc(-1 * var(--radius, 400px))) rotateY(var(--stage-angle, 0deg));
    will-change: transform;
}

.carousel-item {
    position: absolute;
    width: 460px; /* Increased from 380px */
    height: 300px; /* Increased from 280px */
    left: 50%;
    margin-left: -230px; /* Half of width */
    background: #000;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    transform: rotateY(var(--item-angle, 0deg)) translateZ(var(--radius, 400px));
    will-change: transform, opacity;
    opacity: var(--opacity, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    -webkit-box-reflect: below 8px linear-gradient(transparent, transparent 20%, rgba(0,0,0,0.6));
    backface-visibility: hidden; /* Prevent flickering from back items */
    transform-style: preserve-3d;
}

.carousel-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    transform: rotateY(var(--item-angle, 0deg)) translateZ(calc(var(--radius, 400px) + 30px)) scale(1.05) !important;
    opacity: 1 !important;
}

.carousel-item.active {
    border-color: var(--accent);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.9);
    opacity: 1;
}

/* Luxury Corners */
.carousel-item::before, .carousel-item::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent);
    z-index: 10;
    opacity: 0.6;
    transition: 0.3s;
}

.carousel-item::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.carousel-item::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.carousel-item:hover::before, .carousel-item:hover::after { opacity: 1; width: 40px; height: 40px; }

/* Active Shine Effect */
.carousel-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    animation: activeShine 4s infinite;
}

@keyframes activeShine {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.carousel-item img, .carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide default nav elements if needed */
.hidden { display: none !important; }

/* Spotlight Overlapping Box with 3D Effect */
.spotlight-container {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    max-width: 500px;
    z-index: 100;
    perspective: 2000px; /* Enable 3D */
}

.spotlight-card {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), inset 0 0 20px rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    aspect-ratio: 16/9;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(10deg) translateZ(0);
}

.spotlight-card:hover {
    transform: rotateY(-5deg) rotateX(5deg) translateZ(50px);
    border-color: var(--accent);
}

.spotlight-card.expanded {
    transform: rotateY(0deg) rotateX(0deg) scale(1.2) translateZ(150px);
    z-index: 500;
    box-shadow: 0 100px 200px rgba(0,0,0,0.9);
    border-color: var(--accent);
}

.spotlight-card video, .spotlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: black;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
}

/* Main Ad (Hero) */
.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
    z-index: 1;
}

.hero-media {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    max-width: 600px;
}

/* Advanced Text Effects */
.effect-slide-up {
    animation: slideUp 1s ease forwards;
}
.effect-glow {
    animation: breathing 3s infinite;
}
.effect-glitch {
    animation: glitch 1s infinite;
}
.effect-tracking {
    animation: tracking 2s ease-out forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes breathing {
    0%, 100% { text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }
    50% { text-shadow: 0 0 30px rgba(212, 175, 55, 1); }
}

@keyframes tracking {
    from { letter-spacing: -0.5em; opacity: 0; }
    to { letter-spacing: 2px; opacity: 1; }
}

@keyframes glitch {
    0% { transform: translate(0); text-shadow: -2px 0 red, 2px 0 blue; }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 5;
}

/* Secondary Ad Feed */
.secondary-feed {
    padding: 80px 5% 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.ad-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
}

.ad-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.ad-card img, .ad-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.3s ease;
}

.ad-card:hover img, .ad-card:hover video {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.ad-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ad-card:hover .ad-card-overlay {
    opacity: 1;
}

/* Controls */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.mute-btn {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.mute-btn:hover {
    background: var(--accent);
    color: black;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

/* Admin Dashboard Specific */
.admin-container {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dim);
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

/* Ensure all instances of the black-background logo blend with the page */
img[src*="logo.png"] {
    mix-blend-mode: screen;
}

/* Founder Portrait on the right side */
.founder-portrait {
    position: fixed;
    right: 0;
    top: 80px; /* Start below navbar so it never overlaps the nav bar */
    height: 340px;
    z-index: 50; /* Below nav (z-index 100+) so buttons are never hidden */
    pointer-events: none;
    filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.8));
    transition: opacity 0.4s ease-in-out;
}

.founder-portrait.faded {
    opacity: 0.15;
}


.btn-primary {
    background: var(--accent);
    color: black;
}

.preview-window {
    margin-top: 40px;
    border: 2px dashed #333;
    padding: 20px;
    position: relative;
}

/* Carousel Animations */
.fade-in {
    animation: fadeInEffect 1.5s ease-in-out;
}

@keyframes fadeInEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ad-counter {
    background: rgba(0,0,0,0.6);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* --- Premium Decorative Divider --- */
.premium-divider {
    height: 400px; /* Increased from 350px for better presence */
    background: url('../assets/luxury_pattern.png');
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    margin: 60px 0 20px 0; /* Reduced from 100px top */
    overflow: hidden;
}

.premium-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(10,10,10,1) 0%, 
        rgba(10,10,10,0.4) 50%, 
        rgba(10,10,10,1) 100%);
    z-index: 1;
}

.divider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.divider-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    margin: 25px auto;
}

.divider-title {
    font-family: var(--font-fashion);
    font-size: 2rem;
    letter-spacing: 15px;
    color: var(--accent);
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.divider-subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    margin-top: 10px;
}

.divider-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(21%) saturate(1067%) hue-rotate(3deg) brightness(95%) contrast(85%); /* Gold filter */
}

/* --- Premium Footer --- */
.site-footer {
    background: #050505;
    padding: 40px 10% 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 0; /* Remove top margin */
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--accent);
    font-family: var(--font-fashion);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-brand .logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--accent);
    font-size: 1.2rem;
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Global Admin Mobile Responsiveness */
@media (max-width: 768px) {
    body { flex-direction: column !important; }
    .admin-sidebar { 
        width: 100% !important; 
        min-height: auto !important; 
        border-right: none !important; 
        border-bottom: 2px solid var(--accent, #d4af37) !important; 
        padding-bottom: 15px;
    }
    .admin-main { padding: 15px !important; }
    .data-table { 
        display: block !important; 
        overflow-x: auto !important; 
        white-space: nowrap !important; 
    }
    .glass, .panel { padding: 15px !important; }
    .grid-2 { grid-template-columns: 1fr !important; }
    .form-group { flex-direction: column !important; align-items: stretch !important; }
    input, select, textarea { font-size: 16px !important; } /* Prevents iOS auto-zoom */
    .sidebar-header { margin-top: 15px !important; }
    .sidebar-item { padding: 10px 15px !important; text-align: center; }
}

/* Premium Subpage Navigation Layout */
.subpage-navbar-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 6% 20px 15%; /* Right side 6%, Left side 15% — shifts content rightward */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.6);
    border-bottom: 2px solid rgba(212, 175, 55, 0.8);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.9);
    box-sizing: border-box;
}

.subpage-navbar-premium .subpage-logo {
    font-size: 2.2rem;
    letter-spacing: 8px;
    flex-shrink: 1;
}

.subpage-nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 80px; /* Reduced — 10% padding already moves content inward */
    flex-shrink: 0;
    position: relative;
    z-index: 200;
}

.home-btn-premium {
    color: var(--accent);
    text-decoration: none;
    font-family: var(--font-fashion);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    padding: 10px 28px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(212, 175, 55, 0.05);
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.home-btn-premium:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

/* Responsiveness for Subpage Navigation */
@media (max-width: 1400px) {
    .subpage-navbar-premium .subpage-logo {
        font-size: 1.8rem;
        letter-spacing: 6px;
    }
    .subpage-nav-actions {
        margin-right: 60px;
    }
}

@media (max-width: 1024px) {
    .subpage-navbar-premium {
        padding: 15px 4% 15px 10%;
    }
    .subpage-navbar-premium .subpage-logo {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }
    .subpage-nav-actions {
        margin-right: 40px;
    }
    .home-btn-premium {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .founder-portrait {
        height: 200px !important;
        top: 60px !important;
    }
    .subpage-navbar-premium {
        flex-direction: column;
        gap: 15px;
        padding: 15px 2%;
        text-align: center;
    }
    .subpage-navbar-premium .subpage-logo {
        font-size: 1.2rem;
        letter-spacing: 3px;
        margin-right: 0;
    }
    .subpage-nav-actions {
        margin-right: 0;
        justify-content: center;
        width: 100%;
    }
}

