.container {
    max-width: var(--container-max-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

/* ===== HEADING AND BUTTON STYLES ===== */
.podcast-hero-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(3rem, 5vw, 4.5rem) !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: 24px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.01em !important;
    text-shadow: none !important;
}

[data-theme="dark"] .podcast-hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.podcast-hero-subtitle {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    color: #333333 !important;
    max-width: 550px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

[data-theme="dark"] .podcast-hero-subtitle {
    color: #b8b8b8 !important;
}

.btn-gold {
    background: #d4af37 !important;
    color: #000000 !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    font-family: 'SF Pro Text', sans-serif !important;
    border: none !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
}

.btn-gold:hover {
    background: #c9a55c !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ===== SECTION HEADINGS ===== */
.section-title-lg {
    font-family: var(--font-heading) !important;
    font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
    font-weight: 700 !important;
    color: var(--heading-color) !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
}

/* ===== REELS SECTION ===== */
.reels-section {
    padding: 80px 0;
    background: #000000;
}

/* Reel Row Layout */
.reel-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
    padding: 0 20px;
}

.reel-row:last-child {
    margin-bottom: 0;
}

/* Reverse variant for alternating layout */
.reel-row-reverse {
    flex-direction: row-reverse;
}

.reel-video-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.reel-text-col {
    flex: 1;
}

.reel-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(2rem, 3vw, 2.8rem) !important;
    font-weight: 700 !important;
    color: var(--heading-color) !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
}

.reel-description {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    color: #b8b8b8 !important;
    line-height: 1.6 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .reel-row {
        gap: 40px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .reels-section {
        padding: 60px 0;
    }

    .reel-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .reel-row-reverse {
        flex-direction: column;
    }

    .reel-video-col {
        width: 100%;
    }

    .reel-text-col {
        width: 100%;
        text-align: center;
    }

    .reel-title {
        font-size: 28px;
    }

    .reel-description {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .reels-section {
        padding: 40px 0;
    }

    .reel-row {
        margin-bottom: 40px;
    }
}

/* Original grid - kept for reference */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.reel-card {
    width: 380px;
    height: 550px;
    background: #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.3);
}

.reel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'SF Pro Text', sans-serif;
    font-size: 28px;
    text-align: center;
    padding: 20px;
    background: #3a3a3a;
    font-weight: bold;
}

/* Video and iframe styling in reel container */
.reel-container video,
.reel-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.reel-container iframe {
    border: none;
}



/* Video thumbnail placeholders */
.reel-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.reel-thumbnail::after {
    content: "▶";
    font-size: 48px;
    color: white;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.reel-thumbnail:hover::after {
    transform: scale(1.2);
}

.reel-thumbnail.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
    .reel-row {
        gap: 40px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .reels-section {
        padding: 60px 0;
    }

    .reel-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .reel-row-reverse {
        flex-direction: column;
    }

    .reel-video-col {
        width: 100%;
    }

    .reel-text-col {
        width: 100%;
        text-align: center;
    }

    .reel-title {
        font-size: 28px;
    }

    .reel-description {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .reels-section {
        padding: 40px 0;
    }

    .reel-row {
        margin-bottom: 40px;
    }
}

.description-section {
    padding: 60px 0;
    background: #000000;
}

.description-text {
    font-size: 1rem !important;
    color: #b8b8b8 !important;
    line-height: 1.6 !important;
    text-align: left !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    font-family: var(--font-body) !important;
    padding: 0 20px !important;
}

/* ===== SCALE CTA SECTION ===== */
.scale-cta-section {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.scale-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
    font-weight: 300 !important;
    color: var(--heading-color) !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
}

.scale-title .italic {
    font-style: normal !important;
    color: #d4af37 !important;
}

.scale-subtitle {
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    color: #b8b8b8 !important;
    max-width: 600px !important;
    margin: 0 auto 40px !important;
    line-height: 1.6 !important;
}

.btn-dark-cta {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-dark-cta:hover {
    background: #c9a55c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    color: #000;
}

/* ===== HERO PARTICLES ANIMATION ===== */
#launch-videos-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: #ffffff;
}

.podcast-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #030304;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fallback gradient */
.podcast-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(196, 164, 94, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(180, 140, 40, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 30%, rgba(255, 250, 220, 0.02) 0%, transparent 40%);
    z-index: 0;
}

.podcast-hero .container {
    position: relative;
    z-index: 5;
}

.text-center {
    text-align: center;
}

/* TikTok Play Overlay */
.tiktok-thumbnail-link {
    position: relative;
    display: block;
}

.tiktok-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.tiktok-play-overlay i {
    font-size: 28px;
    color: #000;
}

.tiktok-thumbnail-link:hover .tiktok-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}