/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #F5F5F5;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.8)), url('https://images.unsplash.com/photo-1540339832862-47452993c71b?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    pointer-events: auto;
}

/* PARTICLES CONTAINER */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 1em;
    color: #D4AF37;
    text-transform: uppercase;
    margin-bottom: 5rem;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 2s ease-out;
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.sub-brand {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.8em;
    color: #D4AF37;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: -4rem;
    margin-bottom: 5rem;
    animation: fadeIn 2.5s ease-out;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 1.2rem;
        letter-spacing: 0.5em;
    }

    .sub-brand {
        font-size: 0.5rem;
        letter-spacing: 0.5em;
    }
}

.enter-btn {
    background: none;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 1.2rem 4rem;
    letter-spacing: 0.5em;
    font-size: 0.8rem;
    transition: all 0.5s ease;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.enter-btn:hover {
    background: #D4AF37;
    color: #0a0a0a;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MARKETPLACE SECTION */
.marketplace-header {
    padding: 10rem 0 5rem;
    text-align: center;
}

/* CINEMATIC GALLERY */
.film-reel-container {
    overflow: hidden;
    padding: 15rem 0 8rem;
}

.film-reel {
    display: flex;
    gap: 3rem;
    width: max-content;
    will-change: transform;
    user-select: none;
}

.project-slide {
    width: 550px;
    height: 380px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.project-slide:hover {
    transform: scale(1.02);
}

.project-slide img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
    transition: 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-slide:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.project-meta {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    opacity: 0;
    transition: 0.5s;
}

.project-slide:hover .project-meta {
    opacity: 1;
}

.project-name {
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    color: #D4AF37;
    text-transform: uppercase;
}

/* AMBIENCE UI */
.ambience-ui {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1001;
    cursor: pointer;
}

.sound-icon {
    width: 12px;
    height: 12px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 10px #D4AF37;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    position: relative;
}

.sound-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    height: 1px;
    background: #D4AF37;
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 1;
}

.audio-active .sound-icon {
    opacity: 1;
}

.audio-active .sound-icon::after {
    opacity: 0;
}

.ambience-label {
    font-family: 'Cinzel', serif;
    font-size: 0.45rem;
    letter-spacing: 0.6em;
    color: #D4AF37;
    opacity: 0.5;
}

/* FOOTER */
.elite-footer {
    padding: 8rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    background: #000;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.footer-link {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.4em;
    transition: 0.4s;
}

.footer-link:hover {
    color: #D4AF37;
    opacity: 1;
}

.footer-sep {
    width: 1px;
    height: 12px;
    background: rgba(212, 175, 55, 0.3);
}

/* SIDE DRAWER */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: 1s;
}

.side-drawer {
    position: fixed;
    top: 0;
    right: -40%;
    width: 40%;
    height: 100vh;
    background: #0a0a0a;
    z-index: 1100;
    border-left: 1px solid #D4AF37;
    padding: 6rem 5rem;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

body.drawer-active .drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.drawer-active .side-drawer {
    transform: translateX(-100%);
}

.drawer-close {
    font-size: 1.5rem;
    color: #D4AF37;
    background: none;
    border: none;
    align-self: flex-end;
    cursor: pointer;
}

.drawer-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin: 3rem 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.agent-box {
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.01);
    text-align: center;
}

/* CORPORATE MODAL */
.corp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    padding: 5rem 2rem;
}

.corp-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.corp-header {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.8em;
    color: #D4AF37;
    margin-bottom: 5rem;
    text-transform: uppercase;
}

.corp-content {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #d1d1d1;
    max-width: 800px;
}

.corp-close-btn {
    margin-top: 4rem;
    background: none;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 1rem 3rem;
    letter-spacing: 0.3em;
    cursor: pointer;
}

.corp-close-btn:hover {
    background: #D4AF37;
    color: #000;
}

/* PRIVACY SCROLLBAR & TYPOGRAPHY */
.privacy-scroll-container {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 15px;
    text-align: left;
}

.privacy-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.privacy-scroll-container::-webkit-scrollbar-track {
    background: #121212;
    border-left: 1px solid rgba(212, 175, 55, 0.1);
}

.privacy-scroll-container::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 3px;
}

.privacy-header {
    font-family: 'Montserrat', sans-serif;
    color: #D4AF37;
    font-size: 16px;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #d1d1d1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* CUSTOM CURSOR */
#cursor-halo {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #D4AF37;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s, box-shadow 0.3s;
    will-change: transform;
    display: none;
}

#cursor-halo.hover-active-link {
    width: 40px;
    height: 40px;
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.1);
}

.hover-ticker {
    width: 60px !important;
    height: 60px !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

#cursor-halo.hover-active {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.03);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

@media (min-width: 1025px) {
    #cursor-halo {
        display: block;
    }

    body {
        cursor: none;
    }
}

/* LANG SWITCHER */
#lang-switch {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #D4AF37;
    letter-spacing: 0.1em;
}

.lang-opt {
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    margin: 0 5px;
    display: inline-block;
}

.lang-opt.active,
.lang-opt:hover {
    opacity: 1;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    border-bottom: 1px solid #D4AF37;
}