:root {
    --bg-black: #050505;
    --card-bg: #111111;
    --gold-gradient: linear-gradient(45deg, #aa8d2e, #f9df7b, #d4af37, #f9df7b);
    --gold-mid: #d4af37;
    --text-main: #ffffff;
    --text-dim: #909090;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Gold Text Utility */
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    font-weight: 900;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(0,0,0,0.95);
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid #222;
}

.logo { font-size: 1.6rem; letter-spacing: 2px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--gold-mid); }

/* Hero */
.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1540747913346-19e3adca174f?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); margin-bottom: 15px; }
.hero p { color: var(--text-dim); margin-bottom: 30px; }

.gold-btn {
    background: var(--gold-gradient);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: 0.3s;
}

.gold-btn:hover { transform: scale(1.05); }

/* Video Reels Section */
.reels-container { padding: 80px 5%; }
.section-header { font-size: 1.8rem; margin-bottom: 40px; }

.reels-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.reels-wrapper::-webkit-scrollbar { display: none; }

.reel-card {
    min-width: 260px;
    height: 460px; /* Portrait Height */
    background: #000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    scroll-snap-align: start;
    border: 1px solid #222;
    cursor: pointer;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.3s;
}

.video-status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--gold-mid);
    pointer-events: none;
    opacity: 0.8;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

/* FAQ */
.faq-section { padding: 80px 5%; background: #080808; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--card-bg); margin-bottom: 15px; border-radius: 12px; border: 1px solid #222; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; font-weight: 700; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: 0.4s ease; color: var(--text-dim); }

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    z-index: 1000;
}

/* Burger Mobile */
.burger { display: none; font-size: 1.8rem; color: var(--gold-mid); }

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        background: #000;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        transition: 0.4s;
    }
    .nav-links.active { right: 0; }
    .burger { display: block; }
}