/* ============================================
   INLINE CTA — after sinopsis
   ============================================ */
.inline-cta {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.inline-cta .btn {
    font-size: 1rem;
    padding: 0.85rem 2rem;
    width: 100%;
    max-width: 320px;
    animation: cta-pulse 2s ease-in-out infinite;
}

.inline-cta-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(42,157,110,0.25); }
    50% { box-shadow: 0 4px 24px rgba(42,157,110,0.45); }
}

/* ============================================
   POSTER PLAY BUTTON — overlay on poster image
   ============================================ */
.poster-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: rgba(255,255,255,0.9);
    background: rgba(42,157,110,0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    pointer-events: none;
    transition: all 0.3s ease;
    padding-left: 4px;
}

a:hover .poster-play-btn {
    background: rgba(42,157,110,1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   STICKY CTA BAR — fixed bottom on mobile
   ============================================ */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(10, 15, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 0.6rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 4px 16px rgba(42,157,110,0.3);
    animation: cta-pulse 2s ease-in-out infinite;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.sticky-cta-icon {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

    .inline-cta {
        margin-top: 1rem;
    }
}

@media (min-width: 769px) {
    .sticky-cta-bar {
        display: none !important;
    }
}

/* ============================================
   RESPONSIVE — drama info grid
   ============================================ */
@media (max-width: 600px) {
    section.fade-in > div[style*="grid-template-columns:200px"] {
        grid-template-columns: 140px 1fr !important;
        gap: 1rem !important;
    }
    .poster-play-btn {
        font-size: 1.8rem;
        width: 44px;
        height: 44px;
    }
    .inline-cta .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    section.fade-in > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    section.fade-in > div[style*="grid-template-columns"] img {
        max-width: 180px;
        margin: 0 auto;
    }
    .poster-play-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}
