/* =============================================
   100 ENTREPRENEURS PAGE STYLES - REBRAND 2026
   Theme: Navy Blue (#1a2744) + Cream (#e8e4d9)
   SpotOn Media Production - مئة رائد أعمال
   FULLY RESPONSIVE VERSION
   ============================================= */

:root {
    --ent-navy: #1a2744;
    --ent-navy-light: #243352;
    --ent-navy-dark: #0f1829;
    --ent-cream: #e8e4d9;
    --ent-cream-light: #f5f3ed;
    --ent-cream-dark: #d4d0c5;
    --ent-orange: #E84C30;
    --ent-orange-light: #ff5a3c;
    --ent-gold: #c9a961;
}

/* === HERO SECTION === */
.ent-hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 20px 30px;
    background: var(--ent-navy);
    box-sizing: border-box;
}

.ent-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--ent-navy);
    overflow: hidden;
}

.ent-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        var(--ent-navy) 0%, 
        var(--ent-navy-light) 50%,
        var(--ent-navy) 100%
    );
}

.ent-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

/* Flowing Wave Background */
.hero-waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.wave {
    position: absolute;
    opacity: 0.12;
}

.wave-1 {
    width: 900px;
    height: 900px;
    top: -300px;
    right: -200px;
    background: radial-gradient(ellipse at 30% 70%, 
        rgba(232, 228, 217, 0.15) 0%, 
        rgba(232, 228, 217, 0.08) 30%,
        transparent 70%
    );
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    animation: flowWave1 20s ease-in-out infinite;
}

.wave-2 {
    width: 700px;
    height: 700px;
    bottom: -250px;
    left: -150px;
    background: radial-gradient(ellipse at 70% 30%, 
        rgba(232, 228, 217, 0.12) 0%, 
        rgba(232, 228, 217, 0.05) 40%,
        transparent 70%
    );
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    animation: flowWave2 25s ease-in-out infinite;
}

.wave-3 {
    width: 500px;
    height: 500px;
    top: 30%;
    right: -100px;
    background: radial-gradient(ellipse at 40% 60%, 
        rgba(232, 228, 217, 0.1) 0%, 
        transparent 60%
    );
    border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%;
    animation: flowWave3 18s ease-in-out infinite;
}

.wave-4 {
    width: 600px;
    height: 400px;
    top: 10%;
    left: -200px;
    background: radial-gradient(ellipse at 80% 50%, 
        rgba(232, 228, 217, 0.08) 0%, 
        transparent 50%
    );
    border-radius: 50% 50% 60% 40% / 40% 50% 50% 60%;
    animation: flowWave4 22s ease-in-out infinite;
}

@keyframes flowWave1 {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    }
    25% { 
        transform: translate(-30px, 20px) scale(1.02) rotate(2deg);
    }
    50% { 
        transform: translate(-20px, -15px) scale(0.98) rotate(-1deg);
    }
    75% { 
        transform: translate(15px, 10px) scale(1.01) rotate(1deg);
    }
}

@keyframes flowWave2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(25px, -20px) scale(1.03) rotate(-2deg); }
    66% { transform: translate(-15px, 25px) scale(0.97) rotate(1deg); }
}

@keyframes flowWave3 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.1; }
    50% { transform: translateY(-30px) scale(1.05); opacity: 0.15; }
}

@keyframes flowWave4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 15px) rotate(3deg); }
}

/* Floating Orbs */
.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(232, 228, 217, 0.08) 0%, transparent 70%);
    top: 15%;
    left: -5%;
}

.orb-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(232, 228, 217, 0.06) 0%, transparent 70%);
    bottom: 25%;
    right: 5%;
    animation-delay: 3s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(232, 76, 48, 0.06) 0%, transparent 70%);
    top: 50%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -25px) scale(1.03); }
    66% { transform: translate(-10px, 15px) scale(0.97); }
}

/* Hero Content */
.ent-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ent-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(232, 228, 217, 0.1);
    border: 1px solid rgba(232, 228, 217, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    color: var(--ent-cream);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.ent-hero-logo {
    margin-bottom: 25px;
    animation: logoReveal 1.2s ease-out forwards;
}

.ent-hero-logo img {
    max-width: 450px;
    width: 75vw;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

@keyframes logoReveal {
    0% { opacity: 0; transform: translateY(30px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.ent-hero-title {
    display: none;
}

.ent-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.ent-hero-cta .btn-primary {
    background: var(--ent-cream);
    border: none;
    color: var(--ent-navy);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ent-hero-cta .btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 228, 217, 0.3);
}

.ent-hero-cta .btn-primary svg {
    width: 18px;
    height: 18px;
}

.ent-hero-cta .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(232, 228, 217, 0.4);
    color: var(--ent-cream);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ent-hero-cta .btn-outline-light:hover {
    background: rgba(232, 228, 217, 0.1);
    border-color: var(--ent-cream);
}

/* Hero Stats */
.ent-hero-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 30px;
    background: rgba(232, 228, 217, 0.05);
    border: 1px solid rgba(232, 228, 217, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.hero-stat {
    text-align: center;
    min-width: 65px;
}

.hero-stat .stat-number {
    display: block;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ent-cream);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Space Mono', monospace;
}

.hero-stat .stat-label {
    font-size: 0.65rem;
    color: rgba(232, 228, 217, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(232, 228, 217, 0.2);
    align-self: center;
}

/* Scroll Indicator */
.ent-hero-scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(232, 228, 217, 0.5);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.scroll-indicator {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(232, 228, 217, 0.3);
    border-radius: 11px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--ent-cream);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0.3; }
}

/* === ABOUT SECTION === */
.ent-about {
    padding: 100px 20px;
    background: var(--ent-cream-light);
    position: relative;
    overflow: hidden;
}

.ent-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, var(--ent-navy) 0%, transparent 100%);
    pointer-events: none;
}

.ent-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    background: var(--ent-navy);
    color: var(--ent-cream);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-title-xl {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--ent-navy);
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.section-title-xl .text-orange {
    color: var(--ent-orange);
}

.ent-about-text {
    color: var(--ent-navy-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ent-about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--ent-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--ent-cream);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ent-navy);
    margin-bottom: 4px;
}

.feature-content p {
    color: var(--ent-navy-light);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Video Frame */
.ent-about-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26, 39, 68, 0.3);
    background: var(--ent-navy);
    width: 100%;
    aspect-ratio: 3/4;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--ent-navy);
}

/* Mobile video fallback - show navy background if video doesn't load */
@media (max-width: 768px) {
    .video-frame video {
        background: linear-gradient(135deg, var(--ent-navy) 0%, var(--ent-navy-light) 100%);
    }
    
    /* Keep play button visible on mobile until playing */
    .video-frame .video-play-btn {
        opacity: 1;
    }
    
    .video-frame.playing .video-play-btn {
        opacity: 0;
        pointer-events: none;
    }
}

.video-frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 39, 68, 0.85) 100%);
    pointer-events: none;
}

.video-frame-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: var(--ent-cream);
    z-index: 2;
}

.video-frame-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.video-frame-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(232, 76, 48, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    border: none;
}

.video-play-btn:hover {
    background: var(--ent-orange);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 40px rgba(232, 76, 48, 0.5);
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
    margin-left: 4px;
}

.video-frame.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

/* === EPISODES SECTION === */
.ent-episodes {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.ent-episodes .ent-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ent-episodes-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.episodes-header {
    text-align: center;
    margin-bottom: 50px;
}

.episodes-header .section-tag {
    background: rgba(232, 228, 217, 0.1);
    border: 1px solid rgba(232, 228, 217, 0.2);
    color: var(--ent-cream);
}

.episodes-header .section-title-xl {
    color: var(--ent-cream);
}

.episodes-subtitle {
    color: rgba(232, 228, 217, 0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Coming Soon Banner */
.coming-soon-banner {
    background: rgba(232, 228, 217, 0.05);
    border: 1px solid rgba(232, 228, 217, 0.1);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

.coming-soon-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.coming-soon-rings .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(232, 228, 217, 0.1);
    animation: ringPulse 4s ease-in-out infinite;
}

.coming-soon-rings .ring-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.coming-soon-rings .ring-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation-delay: 1s;
}

.coming-soon-rings .ring-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.coming-soon-content {
    position: relative;
    z-index: 1;
}

/* Episode Release Alert */
.episode-release-alert {
    text-align: center;
    animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.release-alert-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.release-alert-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--ent-cream);
    margin-bottom: 10px;
    font-weight: 800;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.release-alert-title span {
    color: var(--ent-orange);
}

.release-alert-text {
    color: rgba(232, 228, 217, 0.8);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.btn-watch-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ent-orange);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(232, 76, 48, 0.4);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(232, 76, 48, 0.4); }
    50% { box-shadow: 0 15px 60px rgba(232, 76, 48, 0.6); }
}

.btn-watch-now:hover {
    background: var(--ent-orange-light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(232, 76, 48, 0.5);
}

.btn-watch-now svg {
    width: 24px;
    height: 24px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ent-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.coming-soon-content h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--ent-cream);
    margin-bottom: 15px;
    font-weight: 700;
}

.coming-soon-content p {
    color: rgba(232, 228, 217, 0.7);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Countdown Timer */
.coming-soon-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(232, 228, 217, 0.08);
    border: 1px solid rgba(232, 228, 217, 0.15);
    border-radius: 16px;
    padding: 20px 25px;
    min-width: 90px;
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ent-cream);
    font-family: 'Space Mono', monospace;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 0.75rem;
    color: rgba(232, 228, 217, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* YouTube Button */
.youtube-cta {
    margin-top: 30px;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ent-orange);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-youtube:hover {
    background: var(--ent-orange-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 76, 48, 0.4);
}

.btn-youtube svg {
    width: 22px;
    height: 22px;
}

/* === EPISODES GRID === */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.episode-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.episode-thumbnail {
    aspect-ratio: 16/10;
    position: relative;
    background: var(--ent-navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* When episode has a background image */
.episode-thumbnail[style*="background-image"] .thumbnail-placeholder {
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.4) 0%, rgba(36, 51, 82, 0.6) 100%);
}

.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--ent-navy) 0%, var(--ent-navy-light) 100%);
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 76, 48, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.episode-card:hover .placeholder-icon {
    background: var(--ent-orange);
    transform: scale(1.1);
}

.placeholder-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    margin-left: 3px;
}

.episode-number {
    font-size: 0.85rem;
    color: rgba(232, 228, 217, 0.6);
    font-weight: 600;
    letter-spacing: 3px;
    font-family: 'Space Mono', monospace;
}

/* Hover Overlay */
.episode-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 39, 68, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.episode-card:hover .episode-overlay {
    opacity: 1;
}

.coming-tag {
    background: var(--ent-orange);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.episode-card:hover .coming-tag {
    transform: translateY(0);
}

.episode-info {
    padding: 20px;
    background: #fff;
}

.episode-title {
    color: var(--ent-navy);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.episode-desc {
    color: var(--ent-navy);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* More Episodes Card */
.episode-card.more-episodes .episode-thumbnail {
    background: var(--ent-orange);
}

.episode-card.more-episodes .thumbnail-placeholder {
    background: linear-gradient(135deg, var(--ent-orange) 0%, var(--ent-orange-light) 100%);
}

.more-episodes-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    text-align: center;
}

.more-episodes-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Space Mono', monospace;
}

.more-episodes-text {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.episode-card.more-episodes .episode-overlay {
    display: none;
}

/* === PROMO SECTION === */
.ent-promo {
    padding: 100px 20px;
    background: var(--ent-cream-light);
}

.ent-promo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 350px;
    gap: 80px;
    align-items: center;
}

.promo-content {
    padding: 20px 0;
}

.promo-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(26, 39, 68, 0.2);
    aspect-ratio: 9/16;
    background: var(--ent-navy);
}

.promo-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ent-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.promo-logo {
    display: none;
}

.promo-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--ent-navy);
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.promo-description {
    color: var(--ent-navy-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.promo-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.promo-cta .btn-primary {
    background: var(--ent-orange);
    border: none;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.promo-cta .btn-primary:hover {
    background: var(--ent-orange-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 76, 48, 0.4);
}

.promo-cta .btn-outline {
    background: transparent;
    border: 2px solid var(--ent-navy);
    color: var(--ent-navy);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.promo-cta .btn-outline:hover {
    background: var(--ent-navy);
    color: var(--ent-cream);
}

.promo-cta .btn-outline-light {
    background: transparent;
    border: 2px solid var(--ent-navy);
    color: var(--ent-navy);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.promo-cta .btn-outline-light:hover {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.3);
}

/* === CTA SECTION === */
.ent-cta {
    padding: 120px 20px;
    background: var(--ent-navy);
    position: relative;
    overflow: hidden;
}

.ent-cta::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    top: -300px;
    left: -200px;
    background: radial-gradient(ellipse at 60% 60%, 
        rgba(232, 228, 217, 0.08) 0%, 
        transparent 60%
    );
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    animation: flowWave1 25s ease-in-out infinite;
    pointer-events: none;
}

.ent-cta::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -100px;
    background: radial-gradient(ellipse at 40% 40%, 
        rgba(232, 228, 217, 0.06) 0%, 
        transparent 60%
    );
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    animation: flowWave2 30s ease-in-out infinite;
    pointer-events: none;
}

.ent-cta-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content {
    padding: 70px 60px;
    background: rgba(232, 228, 217, 0.03);
    border: 1px solid rgba(232, 228, 217, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    background: radial-gradient(ellipse at 30% 70%, 
        rgba(232, 228, 217, 0.05) 0%, 
        transparent 60%
    );
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    pointer-events: none;
}

.cta-content::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
    background: radial-gradient(ellipse at 70% 30%, 
        rgba(232, 228, 217, 0.04) 0%, 
        transparent 60%
    );
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--ent-cream);
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.cta-text {
    color: rgba(232, 228, 217, 0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 35px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn-primary {
    background: var(--ent-orange);
    border: none;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-buttons .btn-primary:hover {
    background: var(--ent-orange-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 76, 48, 0.4);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    border: 2px solid rgba(232, 228, 217, 0.3);
    color: var(--ent-cream);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(232, 228, 217, 0.1);
    border-color: var(--ent-cream);
}

.cta-buttons .btn svg {
    width: 20px;
    height: 20px;
}

.cta-decoration {
    display: none;
}

/* === FOOTER === */
.footer {
    background: var(--ent-navy-dark);
    padding: 80px 20px 30px;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand .footer-logo2 {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px !important;
    max-width: 80px !important;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.footer-logo2 {
    width: 80px;
    height: 80px;
    min-width: 80px;
    max-width: 80px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

.footer-tagline {
    color: rgba(232, 228, 217, 0.6);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(232, 228, 217, 0.08);
    border: 1px solid rgba(232, 228, 217, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--ent-orange);
    border-color: var(--ent-orange);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--ent-cream);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col h4 {
    color: var(--ent-orange);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(232, 228, 217, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--ent-cream);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(232, 228, 217, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--ent-cream);
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    stroke: var(--ent-orange);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(232, 228, 217, 0.5);
    font-size: 0.85rem;
}

/* === ANIMATIONS === */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE STYLES - COMPREHENSIVE MOBILE FIX
   ============================================= */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .ent-about-container {
        grid-template-columns: 1fr 340px;
        gap: 50px;
    }
    
    .ent-promo-container {
        grid-template-columns: 1fr 300px;
        gap: 50px;
    }
    
    .episodes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablets (992px and below) */
@media (max-width: 992px) {
    .ent-hero {
        padding: 90px 20px 50px;
    }
    
    .ent-about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ent-about-visual {
        order: -1;
        justify-content: center;
    }
    
    .video-frame {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .ent-promo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .promo-content {
        text-align: center;
        order: 2;
    }
    
    .promo-video {
        max-width: 300px;
        margin: 0 auto;
        order: 1;
    }
    
    .promo-cta {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Small Tablets / Large Phones (768px and below) */
@media (max-width: 768px) {
    .ent-hero {
        padding: 70px 16px 25px;
        min-height: 100vh;
        min-height: 100svh;
    }
    
    .ent-hero-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    
    .badge-icon {
        font-size: 1rem;
    }
    
    .ent-hero-logo {
        margin-bottom: 20px;
    }
    
    .ent-hero-logo img {
        max-width: 260px;
    }
    
    .ent-hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin-bottom: 20px;
    }
    
    .ent-hero-cta .btn-primary,
    .ent-hero-cta .btn-outline-light {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .ent-hero-stats {
        gap: 8px;
        padding: 16px 14px;
        width: 100%;
        max-width: 340px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .hero-stat {
        min-width: 55px;
        flex: 1;
    }
    
    .hero-stat .stat-number {
        font-size: 1.3rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.8px;
    }
    
    .ent-hero-scroll {
        display: none;
    }
    
    /* About Section */
    .ent-about {
        padding: 60px 16px;
    }
    
    .ent-about::before {
        height: 100px;
    }
    
    .ent-about-content {
        text-align: center;
    }
    
    .section-tag {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    .section-title-xl {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .ent-about-text {
        font-size: 1rem;
    }
    
    .video-frame {
        max-width: 280px;
    }
    
    .video-frame-title {
        font-size: 1.5rem;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .ent-about-features {
        margin-top: 25px;
        gap: 16px;
    }
    
    .about-feature {
        text-align: left;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    /* Episodes Section */
    .ent-episodes {
        padding: 60px 16px;
    }
    
    .episodes-header {
        margin-bottom: 30px;
    }
    
    .episodes-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .coming-soon-banner {
        padding: 30px 20px;
        border-radius: 16px;
        margin-bottom: 30px;
    }
    
    .coming-soon-content h3 {
        font-size: 1.3rem;
    }
    
    .coming-soon-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .coming-soon-countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 14px 16px;
        min-width: 70px;
        border-radius: 12px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .youtube-cta {
        margin-top: 25px;
    }
    
    .btn-youtube {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .btn-youtube svg {
        width: 18px;
        height: 18px;
    }
    
    .episodes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .episode-info {
        padding: 14px;
    }
    
    .episode-title {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .episode-desc {
        font-size: 0.8rem;
    }
    
    .placeholder-icon {
        width: 50px;
        height: 50px;
    }
    
    .placeholder-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .episode-number {
        font-size: 0.75rem;
    }
    
    .more-episodes-number {
        font-size: 2.5rem;
    }
    
    .more-episodes-text {
        font-size: 0.85rem;
    }
    
    /* Promo Section */
    .ent-promo {
        padding: 60px 16px;
    }
    
    .promo-video {
        max-width: 260px;
    }
    
    .promo-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .promo-title {
        font-size: 1.8rem;
    }
    
    .promo-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .promo-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-cta .btn-primary,
    .promo-cta .btn-outline,
    .promo-cta .btn-outline-light {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }
    
    /* CTA Section */
    .ent-cta {
        padding: 60px 16px;
    }
    
    .cta-content {
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    .cta-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .cta-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline-light {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 16px 25px;
    }
    
    .footer-top {
        gap: 40px;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo2 {
        width: 70px;
        height: 70px;
    }
    
    .footer-tagline {
        max-width: 280px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        text-align: center;
    }
    
    .footer-col {
        align-items: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 25px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .ent-hero {
        padding: 65px 12px 20px;
    }
    
    .ent-hero-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
        gap: 5px;
        margin-bottom: 12px;
    }
    
    .badge-icon {
        font-size: 0.9rem;
    }
    
    .ent-hero-logo {
        margin-bottom: 15px;
    }
    
    .ent-hero-logo img {
        max-width: 200px;
    }
    
    .ent-hero-cta {
        max-width: 100%;
        padding: 0 10px;
        margin-bottom: 15px;
    }
    
    .ent-hero-cta .btn-primary,
    .ent-hero-cta .btn-outline-light {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .ent-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        padding: 12px 10px;
        max-width: 100%;
    }
    
    .hero-stat {
        flex: 0 0 45%;
        min-width: unset;
        padding: 6px 0;
    }
    
    .hero-stat .stat-number {
        font-size: 1.2rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.5rem;
        letter-spacing: 0.4px;
    }
    
    /* About Section */
    .ent-about {
        padding: 50px 12px;
    }
    
    .section-title-xl {
        font-size: 1.7rem;
    }
    
    .ent-about-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .video-frame {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .video-frame-content {
        padding: 16px;
    }
    
    .video-frame-title {
        font-size: 1.3rem;
    }
    
    .video-frame-subtitle {
        font-size: 0.8rem;
    }
    
    .video-play-btn {
        width: 50px;
        height: 50px;
    }
    
    .video-play-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .about-feature {
        gap: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-content h4 {
        font-size: 0.95rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
    
    /* Episodes Section */
    .ent-episodes {
        padding: 50px 12px;
    }
    
    .episodes-header {
        margin-bottom: 25px;
    }
    
    .episodes-subtitle {
        font-size: 0.85rem;
    }
    
    .coming-soon-banner {
        padding: 24px 16px;
        margin-bottom: 25px;
    }
    
    .coming-soon-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    
    .coming-soon-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .coming-soon-content p {
        font-size: 0.8rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .coming-soon-countdown {
        gap: 8px;
    }
    
    .countdown-item {
        padding: 12px 10px;
        min-width: 60px;
        flex: 1;
        max-width: 70px;
    }
    
    .countdown-number {
        font-size: 1.4rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .youtube-cta {
        margin-top: 20px;
    }
    
    .btn-youtube {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .episode-thumbnail {
        aspect-ratio: 4/3;
    }
    
    .episode-info {
        padding: 12px;
    }
    
    .episode-title {
        font-size: 0.85rem;
    }
    
    .episode-desc {
        font-size: 0.7rem;
    }
    
    .placeholder-icon {
        width: 46px;
        height: 46px;
    }
    
    .placeholder-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .episode-number {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .coming-tag {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .more-episodes-number {
        font-size: 2rem;
    }
    
    .more-episodes-text {
        font-size: 0.75rem;
    }
    
    /* Promo Section */
    .ent-promo {
        padding: 50px 12px;
    }
    
    .promo-video {
        max-width: 100%;
        aspect-ratio: 9/14;
    }
    
    .promo-title {
        font-size: 1.5rem;
    }
    
    .promo-description {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    .promo-cta .btn-primary,
    .promo-cta .btn-outline,
    .promo-cta .btn-outline-light {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* CTA Section */
    .ent-cta {
        padding: 50px 12px;
    }
    
    .cta-content {
        padding: 30px 16px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline-light {
        max-width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 12px 20px;
    }
    
    .footer-logo2 {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
    }
    
    .footer-col h4 {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .footer-col a {
        font-size: 0.85rem;
    }
    
    .footer-col {
        gap: 10px;
    }
    
    .footer-contact-item {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .footer-contact-icon {
        width: 14px;
        height: 14px;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
    .ent-hero-logo img {
        max-width: 180px;
    }
    
    .ent-hero-stats {
        padding: 14px 10px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.1rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.5rem;
    }
    
    .section-title-xl {
        font-size: 1.5rem;
    }
    
    .coming-soon-countdown {
        gap: 6px;
    }
    
    .countdown-item {
        padding: 10px 8px;
        min-width: 50px;
    }
    
    .countdown-number {
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.5rem;
    }
    
    .episodes-grid {
        gap: 8px;
    }
    
    .episode-info {
        padding: 10px;
    }
    
    .episode-title {
        font-size: 0.8rem;
    }
    
    .episode-desc {
        font-size: 0.65rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}
/* More Episodes Hover Animation */
a.episode-card.more-episodes {
    text-decoration: none;
    cursor: pointer;
}

a.episode-card.more-episodes:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(232, 76, 48, 0.3);
}

a.episode-card.more-episodes:hover .thumbnail-placeholder {
    background: linear-gradient(135deg, var(--ent-orange-light) 0%, var(--ent-orange) 100%);
}

a.episode-card.more-episodes:hover .more-episodes-number {
    transform: scale(1.1);
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.more-episodes-number,
.more-episodes-text {
    transition: all 0.3s ease;
}

/* Released Episode Styles */
.episode-card.episode-released {
    text-decoration: none;
    cursor: pointer;
}

.episode-card.episode-released .play-icon {
    background: var(--ent-orange);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(232, 76, 48, 0.4);
}

.episode-card.episode-released .play-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
    stroke: none;
}

.episode-card.episode-released .released-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 1;
}

.live-tag {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
}

.episode-card.episode-released:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(232, 76, 48, 0.5);
}

.episode-card.episode-released:hover {
    transform: translateY(-8px);
}

/* More Episodes Hover Animation */
a.episode-card.more-episodes {
    text-decoration: none;
    cursor: pointer;
}

a.episode-card.more-episodes:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(232, 76, 48, 0.3);
}

a.episode-card.more-episodes:hover .thumbnail-placeholder {
    background: linear-gradient(135deg, var(--ent-orange-light) 0%, var(--ent-orange) 100%);
}

a.episode-card.more-episodes:hover .more-episodes-number {
    transform: scale(1.1);
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.more-episodes-number,
.more-episodes-text {
    transition: all 0.3s ease;
}