:root {
    /* Light Theme Palette */
    --bg-color: #f7f5f0;
    /* Light Tan/Cream */
    --text-color: #333333;
    --section-dark-bg: #1a1a1e;
    /* Dark Contrast */
    --section-dark-text: #f0f0f0;

    /* Gold Accents */
    --gold-primary: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #d4af37 100%);

    --card-bg-light: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Container limits width but allows full-width sections */
.main-content {
    width: 100%;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--section-dark-text);
    /* Hero is dark */
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    /* Start at 0 for scroll revelation */
    height: 3px;
    background: var(--gold-primary);
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

h2.revealed::after {
    width: 80px;
    /* Draw to 80px on reveal */
}

.label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

/* Header */
header {
    background: #000000;
    /* Pure black as requested */
    backdrop-filter: blur(12px);
    /* Glassmorphism */
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 40px;
    /* Slimmer header */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    /* Slightly more prominent gold edge */
}

/* Reduced height for sticky header on scroll could be added later */

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid #000;
    padding: 5px 15px;
}

/* Section Common */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Dark Hero Section */
.hero-section {
    background: radial-gradient(circle at center, #222226 0%, #000000 100%);
    /* Far deeper radial */
    color: var(--section-dark-text);
    text-align: center;
    padding: 50px 20px 100px;
    /* Reduced top padding significantly */
    width: 100%;
    max-width: none;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.2rem;
    /* Larger impact */
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    color: #ccc;
}

/* Video Section */
.video-section {
    margin-top: -60px;
    /* Overlap hero */
    padding-top: 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    background: #000;
    border: 4px solid #fff;
    /* White border for contrast */
    animation: goldGlowPulse 3s infinite alternate ease-in-out;
    /* Faster, more intense pulse */
}

@keyframes goldGlowPulse {
    from {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 10px rgba(212, 175, 55, 0.2);
    }

    to {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(212, 175, 55, 0.7);
        /* Much stronger glow */
    }
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* Content Blocks with Entrance Animation */
.content-block {
    background: var(--card-bg-light);
    padding: 60px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    border-top: 4px solid var(--gold-primary);
    /* Gold Accent */
    opacity: 0;
    transform: translateY(50px);
    /* Increased from 30px */
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    /* Slightly faster */
}

.content-block.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
}

.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-list li {
    padding: 20px;
    border-left: 3px solid #eee;
    /* Start grey */
    background: #fafafa;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(25px);
    /* Increased from 10px */
}

.content-block.revealed .grid-list li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for the first 6 items */
.grid-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.grid-list li:nth-child(2) {
    transition-delay: 0.2s;
}

.grid-list li:nth-child(3) {
    transition-delay: 0.3s;
}

.grid-list li:nth-child(4) {
    transition-delay: 0.4s;
}

.grid-list li:nth-child(5) {
    transition-delay: 0.5s;
}

.grid-list li:nth-child(6) {
    transition-delay: 0.6s;
}

.grid-list li:hover {
    transform: translateY(-5px);
    /* Lift instead of slide */
    background: #fff;
    border-left: 3px solid var(--gold-primary);
    /* Gold on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.check-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.check-list li::before {
    content: '★';
    /* Star for VIP */
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* Steps */
.step-list {
    display: grid;
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    opacity: 0;
    transform: translateX(-40px);
    /* Increased from -20px */
    transition: all 0.6s ease;
}

.content-block.revealed .step {
    opacity: 1;
    transform: translateX(0);
}

.step:nth-child(1) {
    transition-delay: 0.1s;
}

.step:nth-child(2) {
    transition-delay: 0.3s;
}

.step:nth-child(3) {
    transition-delay: 0.5s;
}

.step:nth-child(4) {
    transition-delay: 0.7s;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #eee;
    margin-right: 25px;
    line-height: 1;
    -webkit-text-stroke: 1px var(--gold-primary);
    /* Gold outline text */
    transition: all 0.5s ease;
}

.step:hover .step-num {
    color: var(--gold-primary);
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #000;
}

/* Dark Footer / CTA */
.cta-section {
    background-color: var(--section-dark-bg);
    color: var(--section-dark-text);
    text-align: center;
    padding: 80px 20px;
    width: 100%;
    max-width: none;
    margin-top: 80px;
}

.exclusivity-note {
    font-size: 1rem;
    margin-bottom: 30px;
    color: var(--gold-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    /* Pill shape */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.primary-btn {
    background: var(--gold-gradient);
    color: #1a1a1e;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: none;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.05);
    /* Added slight scale */
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

footer {
    background: #111;
    color: #555;
    text-align: center;
    padding: 30px;
    font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
        /* Adjusted for impact */
    }

    h2 {
        font-size: 1.6rem;
    }

    .content-block {
        padding: 30px 20px;
    }

    .hero-section {
        padding: 60px 20px 100px;
    }

    /* Extra bottom for video overlap */
}