:root {
    /* Colors synced from jainkraftsproduction */
    --background: 0 0% 6%;
    --foreground: 0 0% 92%;
    --brass: 30 55% 42%;
    --brass-light: 32 45% 58%;
    --brass-dark: 28 60% 30%;
    --gold: 30 65% 45%;
    --charcoal: 0 0% 4%;
    --warm-beige: 30 10% 96%;
    
    /* Fonts synced from jainkraftsproduction */
    --font-serif: 'Cormorant Garamond', serif;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

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

body {
    background-color: hsl(var(--charcoal));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.85) 100%);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}

/* Sound Control */
.sound-control {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 100;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sound-control:hover {
    border-color: hsl(var(--brass));
    background: rgba(0, 0, 0, 0.6);
}

.sound-icon-container {
    width: 24px;
    height: 24px;
    color: hsl(var(--brass));
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-icon {
    width: 100%;
    height: 100%;
    display: none;
}

.sound-control.muted .sound-icon.muted {
    display: block;
}

.sound-control:not(.muted) .sound-icon.unmuted {
    display: block;
}

.sound-text {
    font-size: 0.7rem;
    letter-spacing: 0.15rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

/* Content Container */
.content-wrapper {
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    z-index: 10;
}

.elegant-card {
    background: rgba(5, 5, 5, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: luxuriousFadeIn 1.5s ease-out forwards;
}

@keyframes luxuriousFadeIn {
    from { opacity: 0; transform: translateY(15px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Brand & Typography */
.shimmer-logo {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    letter-spacing: 1.2rem;
    font-weight: 300;
    background: linear-gradient(135deg, hsl(var(--brass)) 0%, #F5D18E 50%, hsl(var(--brass)) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text; /* Fixed compatibility lint */
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
    padding-left: 1.2rem;
    margin-bottom: 2rem;
}

@keyframes shimmer {
    to { background-position: -200% center; }
}

.main-headline {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 400;
    margin: 2.5rem 0;
    color: hsl(var(--foreground));
    font-style: italic;
    opacity: 0.95;
}

.production-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2rem;
    color: hsl(var(--brass));
    background: rgba(181, 166, 66, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.description {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(248, 248, 248, 0.65);
    max-width: 600px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Ornamental Divider */
.ornamental-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 1.5rem 0;
}

.ornamental-divider::before,
.ornamental-divider::after {
    content: '';
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, hsl(var(--brass)), transparent);
}

/* CTA Section */
.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
}

.cta-text {
    font-size: 0.8rem;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    font-weight: 500;
}

.input-container {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-container:focus-within {
    border-color: hsl(var(--brass));
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(181, 166, 66, 0.1);
}

.input-container input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 25px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.input-container button {
    background: hsl(var(--brass));
    border: none;
    border-radius: 100px;
    padding: 0 30px;
    color: black;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15rem;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s;
}

.input-container button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Footer */
.social-links {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-link {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.25rem;
    transition: all 0.4s;
    position: relative;
}

.social-link:hover {
    color: hsl(var(--brass));
}

/* Custom Cursor */
.custom-cursor {
    width: 25px;
    height: 25px;
    border: 1px solid hsl(var(--brass));
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

/* Responsive Optimization */
@media (max-width: 1024px) {
    .main-headline { font-size: 3.5rem; }
    .elegant-card { padding: 60px 40px; }
}

@media (max-width: 768px) {
    body { 
        overflow-y: auto; 
        height: auto; 
        min-height: 100vh;
        display: block; /* Stack on mobile */
        padding: 60px 20px; 
    }

    .custom-cursor { display: none !important; }

    .content-wrapper {
        padding: 0;
        margin-top: 0;
    }

    .elegant-card { 
        padding: 40px 25px; 
        border-radius: 20px; 
        background: rgba(5, 5, 5, 0.4); 
        border: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
    }

    #brand-logo { font-size: 2.2rem; letter-spacing: 0.6rem; margin-bottom: 1.5rem; }
    
    .main-headline { 
        font-size: 2.4rem; 
        margin: 1.5rem 0;
        line-height: 1.2;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .ornamental-divider::before, 
    .ornamental-divider::after { 
        width: 40px; 
    }

    .input-container { 
        flex-direction: column; 
        border-radius: 20px; 
        background: transparent; 
        border: none; 
        gap: 12px; 
        padding: 0;
    }

    .input-container input { 
        background: rgba(255, 255, 255, 0.05); 
        border-radius: 50px; 
        border: 1px solid rgba(255, 255, 255, 0.1); 
        width: 100%;
        text-align: center;
    }

    .input-container button { 
        width: 100%;
        padding: 16px;
        font-size: 0.85rem;
    }

    .sound-control { 
        bottom: auto;
        top: 20px;
        right: 20px; 
        padding: 8px 15px; 
        font-size: 0.6rem;
    }

    .social-links { 
        margin-top: 3.5rem; 
        gap: 20px;
    }
}

@media (max-width: 480px) {
    #brand-logo { font-size: 1.8rem; letter-spacing: 0.4rem; }
    .main-headline { font-size: 2rem; }
    .elegant-card { padding: 35px 20px; }
    .description { font-size: 0.95rem; }
}
