/* Movies Page Styles */

/* ========================================
   HERO SECTION - Cinematic Opening
   ======================================== */
.movies-hero {
    background: linear-gradient(135deg, #05050a 0%, #0a0a14 40%, #140a0a 100%);
    padding: 10rem 0 8rem;
    position: relative;
    overflow: hidden;
}

/* Animated particle-like stars */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(201, 165, 90, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(201, 165, 90, 0.2), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200px 100px;
    animation: particleDrift 60s linear infinite;
    opacity: 0.6;
}

@keyframes particleDrift {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.movies-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 165, 90, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(100, 100, 180, 0.1) 0%, transparent 60%);
    animation: heroAmbient 15s ease-in-out infinite;
}

@keyframes heroAmbient {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.movies-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(201, 165, 90, 0.8);
    margin-bottom: 1rem;
    animation: fadeSlideDown 1s ease-out;
}

@keyframes fadeSlideDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.movies-hero-content h1 {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 80px rgba(201, 165, 90, 0.4);
    letter-spacing: 3px;
    animation: titleReveal 1.2s ease-out 0.2s both;
}

@keyframes titleReveal {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-title-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 1.5rem;
    animation: lineExpand 1s ease-out 0.5s both;
}

@keyframes lineExpand {
    0% { width: 0; opacity: 0; }
    100% { width: 120px; opacity: 1; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-style: italic;
    animation: fadeSlideUp 1s ease-out 0.7s both;
}

@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ========================================
   FLOATING THEME AUDIO PLAYER
   ======================================== */
.theme-audio-player {
    position: fixed;
    top: 100px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid rgba(201, 165, 90, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.theme-audio-player:hover {
    border-color: rgba(201, 165, 90, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 165, 90, 0.15);
}

.theme-audio-player.expanded {
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
}

.audio-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 165, 90, 0.15);
    border: 1px solid rgba(201, 165, 90, 0.4);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
}

.audio-play-btn:hover {
    background: rgba(201, 165, 90, 0.25);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.audio-play-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 165, 90, 0.3);
}

.audio-play-btn.playing {
    background: linear-gradient(135deg, var(--primary-color), #d4b16a);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.play-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.audio-btn-text {
    letter-spacing: 0.3px;
}

/* Audio Controls */
.audio-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.audio-controls.visible {
    opacity: 1;
    width: auto;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0.25rem;
}

.audio-mute-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.audio-mute-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
    border-color: rgba(201, 165, 90, 0.3);
}

.audio-mute-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(201, 165, 90, 0.3);
}

.audio-mute-btn.muted {
    color: rgba(255, 255, 255, 0.35);
}

/* Volume Slider */
.audio-volume-wrapper {
    position: relative;
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.volume-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #d4b16a);
    border-radius: 2px;
    pointer-events: none;
    transition: width 0.1s ease;
}

.audio-volume {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 16px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.audio-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.audio-volume::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.audio-volume-wrapper:hover .audio-volume {
    opacity: 1;
}

/* Track Info */
.audio-track-info {
    display: none;
    padding-left: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0.25rem;
}

.audio-controls.visible + .audio-track-info {
    display: block;
}

.track-title {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Playing Animation */
.audio-play-btn.playing .play-icon-wrapper {
    animation: audioPulse 1.5s ease-in-out infinite;
}

@keyframes audioPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Glow effect when playing */
.theme-audio-player.is-playing {
    border-color: rgba(201, 165, 90, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 165, 90, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .theme-audio-player {
        top: auto;
        bottom: 20px;
        right: 20px;
        padding: 0.5rem 0.75rem;
        gap: 0.4rem;
    }
    
    .audio-play-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .audio-btn-text {
        display: none;
    }
    
    .audio-play-btn {
        padding: 0.6rem;
        border-radius: 50%;
    }
    
    .play-icon-wrapper {
        width: 18px;
        height: 18px;
    }
    
    .play-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }
    
    .audio-controls.visible {
        padding-left: 0.4rem;
    }
    
    .audio-mute-btn {
        width: 28px;
        height: 28px;
    }
    
    .audio-volume-wrapper {
        width: 50px;
    }
    
    .audio-track-info {
        display: none !important;
    }
}

/* Very small screens - minimal player */
@media (max-width: 480px) {
    .theme-audio-player {
        right: 15px;
        bottom: 15px;
    }
    
    .audio-volume-wrapper {
        display: none;
    }
}

/* ========================================
   FEATURED FILM SECTION - Premium Showcase
   ======================================== */
.featured-film-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fefefe 0%, #f8f5f0 50%, #f5f2ed 100%);
    position: relative;
    overflow: hidden;
}

.section-film-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.015;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.featured-header {
    text-align: center;
    margin-bottom: 3rem;
}

.production-badge-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.production-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(139, 0, 0, 0.4), 0 0 40px rgba(139, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.production-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: badgePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.featured-title {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.featured-title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 1rem;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.1rem;
    font-style: italic;
}

.film-showcase {
    margin-top: 4rem;
    display: grid;
    gap: 4rem;
}

/* ========================================
   TRAILER CONTAINER - Cinematic Player
   ======================================== */
.trailer-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 100px rgba(0, 0, 0, 0.3);
    position: relative;
}

.trailer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 100%);
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.trailer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 30%, transparent 60%, rgba(0, 0, 0, 0.6) 100%),
        radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.trailer-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.play-icon {
    position: relative;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.play-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(201, 165, 90, 0.3);
    border-radius: 50%;
    animation: playRingPulse 2s ease-out infinite;
}

@keyframes playRingPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.play-icon svg {
    filter: drop-shadow(0 0 20px rgba(201, 165, 90, 0.5));
    color: var(--primary-color);
}

.trailer-placeholder:hover .play-icon {
    opacity: 1;
    transform: scale(1.15);
}

.trailer-placeholder:hover .play-ring {
    animation: playRingPulse 1.5s ease-out infinite;
}

.trailer-text {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.trailer-container iframe {
    width: 100%;
    height: 100%;
}

/* ========================================
   FILM CONTENT - Story & Credits
   ======================================== */
.film-content {
    padding: 2rem 0;
}

.film-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(201, 165, 90, 0.05) 0%, transparent 100%);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
}

.meta-item svg {
    color: var(--primary-color);
}

/* Film Synopsis */
.film-synopsis {
    margin: 3rem 0;
    position: relative;
}

.film-synopsis h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.film-synopsis h3::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.film-synopsis p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.opening-line {
    font-size: 1.3rem !important;
}

.opening-line strong {
    color: var(--secondary-color);
}

.closing-line {
    color: var(--primary-color);
    font-size: 1.15rem !important;
    font-style: italic;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 165, 90, 0.08) 0%, rgba(201, 165, 90, 0.02) 100%);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

/* Film Credits */
.film-credits {
    background: linear-gradient(145deg, #1a1a1f 0%, #0d0d10 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.film-credits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.credits-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.credits-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #d4b16a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.film-credits h3 {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.credit-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.credit-item:hover {
    background: rgba(201, 165, 90, 0.08);
    border-color: rgba(201, 165, 90, 0.2);
}

.credit-role {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.credit-name {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

/* Film Actions */
.film-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-casting-primary,
.btn-read-book {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-casting-primary {
    background: linear-gradient(135deg, var(--primary-color), #d4b16a);
    color: var(--secondary-color);
    border: none;
    box-shadow: 0 4px 20px rgba(201, 165, 90, 0.3);
}

.btn-casting-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-casting-primary:hover::before {
    left: 100%;
}

.btn-casting-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(201, 165, 90, 0.5);
}

.btn-read-book {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-read-book:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* ========================================
   CAST SECTION - Cinematic Character Showcase
   ======================================== */
.cast-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #05050a 0%, #0a0a14 30%, #0f0a14 70%, #05050a 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background gradients */
.cast-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(201, 165, 90, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 50, 50, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(100, 100, 180, 0.05) 0%, transparent 50%);
    animation: ambientMove 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ambientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 2%) rotate(1deg); }
    50% { transform: translate(-1%, 3%) rotate(-1deg); }
    75% { transform: translate(-2%, -1%) rotate(0.5deg); }
}

/* Film grain overlay */
.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: grainShift 0.5s steps(10) infinite;
}

@keyframes grainShift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-1%, 0); }
    60% { transform: translate(1%, 0); }
    70% { transform: translate(0, 1%); }
    80% { transform: translate(0, -1%); }
    90% { transform: translate(1%, 1%); }
}

/* Spotlight effect */
.spotlight-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(201, 165, 90, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Cast Header - Dramatic Typography */
.cast-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.cast-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 60px rgba(201, 165, 90, 0.3);
    letter-spacing: 2px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 2rem;
}

.cast-announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: rgba(201, 165, 90, 0.08);
    border: 1px solid rgba(201, 165, 90, 0.25);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--primary-color); }
    50% { opacity: 0.6; transform: scale(1.3); box-shadow: 0 0 20px var(--primary-color); }
}

/* Cast Grid Layout */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

@media (min-width: 768px) {
    .cast-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Cast Cards with 3D Tilt */
.cast-card {
    background: linear-gradient(160deg, rgba(25, 25, 35, 0.9) 0%, rgba(15, 15, 20, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}

.cast-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(201, 165, 90, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 165, 90, 0.3);
}

/* Shine effect on hover */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: skewX(-20deg);
    transition: none;
    z-index: 10;
    pointer-events: none;
}

.cast-card:hover .card-shine {
    animation: cardShine 0.75s ease-out;
}

@keyframes cardShine {
    0% { left: -100%; }
    100% { left: 150%; }
}

/* Lead Card Special Styling */
.cast-card-lead {
    border: 1px solid rgba(201, 165, 90, 0.3);
    background: linear-gradient(160deg, rgba(40, 30, 20, 0.9) 0%, rgba(15, 12, 10, 0.95) 100%);
}

.cast-card-lead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 5;
}

.cast-card-lead::after {
    content: '★';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
    z-index: 5;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Card Image Area */
.cast-card-image {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
}

.cast-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.4s ease;
    filter: saturate(0.9);
}

.cast-card:hover .cast-card-image img {
    transform: scale(1.1);
    filter: saturate(1.1);
}

.cast-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    display: flex;
    justify-content: flex-start;
}

.character-type {
    padding: 0.35rem 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cast-card-lead .character-type {
    background: linear-gradient(135deg, var(--primary-color), #d4b16a);
    color: var(--secondary-color);
    border: none;
    box-shadow: 0 2px 15px rgba(201, 165, 90, 0.4);
}

/* TBA Silhouette */
.cast-card-tba {
    background: linear-gradient(160deg, #15151f 0%, #0a0a10 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tba-silhouette {
    position: relative;
    width: 55%;
    color: rgba(201, 165, 90, 0.12);
    animation: silhouettePulse 3s ease-in-out infinite;
}

@keyframes silhouettePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.tba-silhouette svg {
    width: 100%;
    height: auto;
}

.tba-silhouette .tba-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.5;
    text-shadow: 0 0 30px rgba(201, 165, 90, 0.5);
}

/* Card Content */
.cast-card-content {
    padding: 1.25rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.character-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.cast-card:hover .character-name {
    color: var(--primary-color);
}

.cast-card-lead .character-name {
    color: var(--primary-color);
}

.character-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.actor-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.actor-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
}

.actor-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}

.actor-value.tba {
    color: var(--primary-color);
    font-style: italic;
}

/* Cast CTA */
.cast-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.btn-audition {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(201, 165, 90, 0.5);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.btn-audition::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-audition:hover::before {
    left: 100%;
}

.btn-audition:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 165, 90, 0.3);
}

.btn-audition svg {
    transition: transform 0.3s ease;
}

.btn-audition:hover svg {
    transform: translateX(5px);
}

/* ========================================
   TIMELINE SECTION - Production Journey
   ======================================== */
.timeline-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fefefe 0%, #f5f5f5 100%);
    border-top: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.timeline-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(201, 165, 90, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(201, 165, 90, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.timeline-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.timeline-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.timeline-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.timeline-title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 1.5rem;
}

.current-phase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), #2a2a2a);
    border-radius: 50px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.phase-indicator {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: phaseGlow 1.5s ease-in-out infinite;
}

@keyframes phaseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        top: 35px;
        left: 12.5%;
        right: 12.5%;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), #e5e5e5 25%, #e5e5e5);
        z-index: 0;
    }
}

.timeline-item {
    position: relative;
    text-align: center;
    padding: 0 0.75rem;
}

.timeline-marker {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: #fff;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.marker-icon {
    font-size: 1.75rem;
}

.timeline-item.active .timeline-marker {
    background: linear-gradient(135deg, var(--primary-color), #d4b16a);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(201, 165, 90, 0.2), 0 8px 30px rgba(201, 165, 90, 0.4);
    animation: activeMarkerPulse 2s ease-in-out infinite;
    transform: scale(1.1);
}

@keyframes activeMarkerPulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(201, 165, 90, 0.2), 0 8px 30px rgba(201, 165, 90, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(201, 165, 90, 0.1), 0 8px 30px rgba(201, 165, 90, 0.4); }
}

.timeline-item.completed .timeline-marker {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.timeline-item.active .timeline-content {
    background: linear-gradient(145deg, #fffbf5, #fff);
    box-shadow: 0 8px 35px rgba(201, 165, 90, 0.2);
    border: 1px solid rgba(201, 165, 90, 0.3);
}

.timeline-content h3 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
}

.timeline-item.active .timeline-content h3 {
    color: var(--primary-color);
}

.timeline-date {
    display: inline-block;
    color: #888;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.2rem 0.6rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.timeline-item.active .timeline-date {
    background: linear-gradient(135deg, rgba(201, 165, 90, 0.2), rgba(201, 165, 90, 0.1));
    color: var(--primary-color);
}

.timeline-content p:last-child {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.8rem;
}

/* ========================================
   VISION SECTION - Director's Perspective
   ======================================== */
.vision-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #12121a 50%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}

.vision-ambient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(201, 165, 90, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(139, 69, 69, 0.05) 0%, transparent 50%);
    animation: visionAmbient 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes visionAmbient {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.vision-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.vision-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.vision-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 40px rgba(201, 165, 90, 0.2);
}

.vision-title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
}

.vision-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.vision-text h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.vision-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.vision-text em {
    font-style: italic;
    color: var(--primary-color);
}

.vision-quote {
    background: linear-gradient(145deg, rgba(201, 165, 90, 0.12) 0%, rgba(201, 165, 90, 0.05) 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    position: sticky;
    top: 120px;
    border: 1px solid rgba(201, 165, 90, 0.2);
    backdrop-filter: blur(10px);
}

.vision-quote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.vision-quote blockquote {
    margin: 0;
    padding-left: 1rem;
}

.vision-quote p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.vision-quote footer {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* ========================================
   CTA SECTION - Get Involved
   ======================================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fefefe 0%, #f8f5f0 100%);
    position: relative;
    overflow: hidden;
}

.cta-spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(201, 165, 90, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.cta-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.cta-title-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.08), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.cta-card:hover .cta-card-shine {
    animation: ctaShine 0.75s ease-out;
}

@keyframes ctaShine {
    0% { left: -100%; }
    100% { left: 150%; }
}

.cta-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(201, 165, 90, 0.2);
}

.cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(201, 165, 90, 0.1) 0%, rgba(201, 165, 90, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.cta-card:hover .cta-icon {
    background: linear-gradient(135deg, var(--primary-color), #d4b16a);
    color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(201, 165, 90, 0.4);
}

.cta-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--primary-color), #d4b16a);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 165, 90, 0.4);
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

/* ========================================
   NEWSLETTER SECTION - Stay Connected
   ======================================== */
.newsletter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #14141f 50%, #0a0a0f 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.newsletter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(201, 165, 90, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(201, 165, 90, 0.15) 0%, rgba(201, 165, 90, 0.05) 100%);
    border: 1px solid rgba(201, 165, 90, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.newsletter-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 40px rgba(201, 165, 90, 0.2);
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    gap: 1rem;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(201, 165, 90, 0.15);
}

.newsletter-form button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), #d4b16a);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 165, 90, 0.5);
}

.newsletter-form button svg {
    transition: transform 0.3s ease;
}

.newsletter-form button:hover svg {
    transform: translateX(4px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .vision-content {
        grid-template-columns: 1fr;
    }
    
    .vision-quote {
        position: relative;
        top: 0;
    }
    
    .movies-hero-content h1 {
        font-size: 3rem;
    }
    
    .featured-title {
        font-size: 2.25rem;
    }
    
    .cast-title,
    .timeline-title,
    .vision-title,
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .movies-hero {
        padding: 8rem 0 5rem;
    }
    
    .movies-hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .featured-title {
        font-size: 1.75rem;
    }
    
    .film-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .film-actions {
        flex-direction: column;
    }
    
    .btn-casting-primary,
    .btn-read-book {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .credits-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding: 0 0.5rem;
    }
    
    .timeline-item.active .timeline-marker {
        transform: scale(1);
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        justify-content: center;
    }
    
    .cast-title,
    .timeline-title,
    .vision-title,
    .cta-title {
        font-size: 1.75rem;
    }
    
    .trailer-text {
        font-size: 0.9rem;
        letter-spacing: 2px;
        bottom: 1.5rem;
    }
}

/* ========================================
   PRODUCTION COMPANY OVERVIEW SECTION
   ======================================== */
.production-overview-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fefefe 0%, #f8f5f0 100%);
    position: relative;
}

.production-philosophy {
    margin-top: 3rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.philosophy-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(201, 165, 90, 0.1), rgba(201, 165, 90, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.philosophy-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   CURRENT PRODUCTIONS SECTION
   ======================================== */
.current-productions-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f5f5f5 0%, #fefefe 100%);
}

.production-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 3rem;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.production-card-image {
    position: relative;
    min-height: 450px;
}

.production-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.production-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.5rem;
}

.production-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.production-type {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.production-card-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.production-summary {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.production-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(201, 165, 90, 0.05) 0%, transparent 100%);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.production-details .detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.production-details .detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.production-details .detail-value {
    color: #666;
    font-size: 0.95rem;
}

.production-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-franchise-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #d4b16a);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.4s ease;
}

.btn-franchise-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 165, 90, 0.4);
}

.btn-franchise-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-franchise-secondary:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* ========================================
   FRANCHISE BANNER SECTION
   ======================================== */
.franchise-banner-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #14141f 50%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
}

.franchise-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 165, 90, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.franchise-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.franchise-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(201, 165, 90, 0.15), rgba(201, 165, 90, 0.05));
    border: 1px solid rgba(201, 165, 90, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.franchise-banner-content h2 {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.franchise-banner-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-franchise-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), #d4b16a);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.btn-franchise-explore:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(201, 165, 90, 0.4);
}

/* Responsive Production Company Styles */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .production-featured-card {
        grid-template-columns: 1fr;
    }
    
    .production-card-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .production-actions {
        flex-direction: column;
    }
    
    .btn-franchise-primary,
    .btn-franchise-secondary {
        text-align: center;
        justify-content: center;
    }
    
    .franchise-banner-content h2 {
        font-size: 1.75rem;
    }
    
    .production-card-content h3 {
        font-size: 1.5rem;
    }
}
