/* ============================================
   ENDORPHINE CINEMATIC DARK THEME
   Dramatic lighting, bold contrasts, premium luxury
   ============================================ */

/* ============================================
   CSS VARIABLES - CINEMATIC DARK
   ============================================ */
:root {
    /* Cinematic Dark Color Palette */
    --bg-primary: #0a0a0a;           /* Pure black */
    --bg-secondary: #111111;         /* Soft black */
    --bg-tertiary: #1a1a1a;          /* Card backgrounds */
    --bg-elevated: #222222;          /* Elevated surfaces */

    --accent-primary: #C9A962;       /* Warm gold */
    --accent-light: #E8D5A3;         /* Light gold */
    --accent-dark: #8B7355;          /* Dark gold */
    --accent-glow: rgba(201, 169, 98, 0.4);

    --text-primary: #ffffff;         /* Pure white */
    --text-secondary: #a0a0a0;       /* Soft gray */
    --text-muted: #666666;           /* Muted text */

    --gradient-gold: linear-gradient(135deg, #C9A962 0%, #E8D5A3 50%, #C9A962 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    --gradient-spotlight: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.15) 0%, transparent 70%);

    --glow-gold: 0 0 60px rgba(201, 169, 98, 0.3);
    --glow-text: 0 0 40px rgba(201, 169, 98, 0.5);

    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   BASE STYLES - CINEMATIC
   ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Cinematic grain overlay for entire page */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 10000;
}

/* ============================================
   CINEMATIC LIGHTING EFFECTS
   ============================================ */
.spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}

.ambient-light {
    position: fixed;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
}

.ambient-light::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.05) 0%, transparent 60%);
    animation: ambientMove 20s ease-in-out infinite;
}

.ambient-light::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(201, 169, 98, 0.03) 0%, transparent 60%);
    animation: ambientMove 25s ease-in-out infinite reverse;
}

@keyframes ambientMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 30px); }
}

/* Dramatic vignette */
.vignette {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 9998;
}

/* ============================================
   CINEMATIC HERO SECTION
   ============================================ */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video-container video,
.hero-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.hero-overlay-cinematic {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.8) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
}

/* Animated light beam */
.light-beam {
    position: absolute;
    top: 0;
    left: 30%;
    width: 300px;
    height: 120%;
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.1) 0%, transparent 100%);
    transform: rotate(15deg) translateY(-20%);
    filter: blur(60px);
    animation: beamPulse 8s ease-in-out infinite;
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.3; transform: rotate(15deg) translateY(-20%); }
    50% { opacity: 0.5; transform: rotate(15deg) translateY(-15%); }
}

/* Hero content styling */
.hero-content-cinematic {
    position: relative;
    z-index: 10;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 24px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 30px;
    margin-bottom: 30px;
}

.hero-tagline::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title-cinematic {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}

.hero-title-cinematic .text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-text);
}

.hero-title-cinematic .text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}

/* ============================================
   GLASS MORPHISM CARDS
   ============================================ */
.glass-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    transition: all 0.5s var(--transition-dramatic);
}

.glass-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-10px);
    box-shadow: var(--glow-gold);
}

/* ============================================
   CINEMATIC PRODUCT CARDS
   ============================================ */
.product-card-cinematic {
    position: relative;
    background: var(--bg-tertiary);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s var(--transition-dramatic);
}

.product-card-cinematic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-spotlight);
    opacity: 0;
    transition: opacity 0.6s;
}

.product-card-cinematic:hover::before {
    opacity: 1;
}

.product-card-cinematic:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), var(--glow-gold);
}

.product-card-cinematic .product-image-wrapper {
    position: relative;
    height: 320px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-cinematic .product-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-tertiary), transparent);
}

.product-card-cinematic .product-image {
    width: 70%;
    height: auto;
    object-fit: contain;
    transition: transform 0.8s var(--transition-dramatic);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.product-card-cinematic:hover .product-image {
    transform: scale(1.15) translateY(-10px);
}

.product-card-cinematic .product-info {
    padding: 25px;
    position: relative;
}

.product-card-cinematic .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.product-card-cinematic:hover .product-name {
    color: var(--accent-primary);
}

.product-card-cinematic .product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-card-cinematic .product-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quick actions - cinematic */
.product-card-cinematic .quick-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s var(--transition-dramatic);
}

.product-card-cinematic:hover .quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.quick-action-btn-cinematic {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s;
}

.quick-action-btn-cinematic:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.1);
}

/* Product badge - cinematic */
.product-badge-cinematic {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* ============================================
   CINEMATIC SECTION STYLES
   ============================================ */
.section-cinematic {
    position: relative;
    padding: 120px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.section-cinematic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
}

/* Section headers */
.section-header-cinematic {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent-primary);
}

.section-title-cinematic {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-title-cinematic span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CINEMATIC BUTTONS
   ============================================ */
.btn-cinematic {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.btn-cinematic-primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.btn-cinematic-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-cinematic-primary:hover::before {
    transform: translateX(100%);
}

.btn-cinematic-primary:hover {
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.4);
    transform: translateY(-3px);
}

.btn-cinematic-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-cinematic-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: inset 0 0 30px rgba(201, 169, 98, 0.1);
}

/* ============================================
   CINEMATIC STATS
   ============================================ */
.stats-cinematic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stat-item-cinematic {
    text-align: center;
    position: relative;
}

.stat-item-cinematic::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,0.1);
}

.stat-item-cinematic:last-child::after {
    display: none;
}

.stat-number-cinematic {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label-cinematic {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   CINEMATIC TESTIMONIALS
   ============================================ */
.testimonial-cinematic {
    position: relative;
    padding: 50px;
    background: var(--bg-tertiary);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s var(--transition-dramatic);
}

.testimonial-cinematic::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 100px;
    font-family: 'Playfair Display', serif;
    color: var(--accent-primary);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-cinematic:hover {
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: var(--glow-gold);
}

.testimonial-rating {
    color: var(--accent-primary);
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-primary);
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================================
   CINEMATIC MARQUEE
   ============================================ */
.marquee-cinematic {
    padding: 30px 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 40s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 50px;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.15);
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-item .dot {
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   CINEMATIC NEWSLETTER
   ============================================ */
.newsletter-cinematic {
    position: relative;
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.newsletter-cinematic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 60%);
    filter: blur(60px);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.2);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

/* ============================================
   CINEMATIC PARALLAX BANNER
   ============================================ */
.parallax-cinematic {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-cinematic .parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) contrast(1.1);
}

.parallax-cinematic .parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}

.parallax-cinematic .accent-line {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 200px;
    background: var(--accent-primary);
}

/* ============================================
   CINEMATIC FEATURE CARDS
   ============================================ */
.feature-card-cinematic {
    padding: 40px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.5s var(--transition-dramatic);
}

.feature-card-cinematic:hover {
    background: var(--bg-elevated);
    border-color: rgba(201, 169, 98, 0.2);
    transform: translateY(-10px);
}

.feature-icon-cinematic {
    width: 70px;
    height: 70px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-primary);
    font-size: 28px;
    transition: all 0.3s;
}

.feature-card-cinematic:hover .feature-icon-cinematic {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: var(--glow-gold);
}

.feature-title-cinematic {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-desc-cinematic {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   SCROLL PROGRESS - CINEMATIC
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
}

/* ============================================
   BACK TO TOP - CINEMATIC
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
    transform: translateY(60px);
    opacity: 0;
}

.reveal-down {
    transform: translateY(-60px);
    opacity: 0;
}

.reveal-left {
    transform: translateX(-60px);
    opacity: 0;
}

.reveal-right {
    transform: translateX(60px);
    opacity: 0;
}

.reveal-scale {
    transform: scale(0.9);
    opacity: 0;
}

/* ============================================
   FOOTER CINEMATIC
   ============================================ */
.footer-cinematic {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 0 30px;
}

.footer-cinematic .footer-link {
    color: var(--text-secondary);
    transition: all 0.3s;
}

.footer-cinematic .footer-link:hover {
    color: var(--accent-primary);
    padding-left: 10px;
}

.footer-social-cinematic {
    display: flex;
    gap: 15px;
}

.footer-social-cinematic a {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.footer-social-cinematic a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
    transform: translateY(-5px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .stats-cinematic {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item-cinematic:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title-cinematic {
        font-size: clamp(2.5rem, 10vw, 5rem);
    }

    .section-cinematic {
        padding: 80px 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .stats-cinematic {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-item-cinematic::after {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   CURSOR EFFECTS
   ============================================ */
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: width 0.3s, height 0.3s, opacity 0.3s, background 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-follower.active {
    opacity: 0.5;
}

.cursor-follower.hover {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 98, 0.1);
}

@media (max-width: 768px) {
    .cursor-follower {
        display: none;
    }
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader-logo {
    opacity: 0;
    transform: scale(0.8);
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-top: 30px;
    overflow: hidden;
    border-radius: 2px;
}

.loader-progress-bar {
    height: 100%;
    width: 0;
    background: var(--gradient-gold);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-text {
    text-shadow: var(--glow-text);
}

.glass {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
}
