/* ============================================================
   PageDrop Theme Switcher theme: alooytv
   ------------------------------------------------------------
   Colors + site components ONLY. Direction and Arabic typography
   come from the theme's RTL / Arabic Mode option (v1.8.1) —
   this file works on top of it, and stays reusable for any
   future Arabic (or non-Arabic) site by tweaking colors.
   Upload via: PageDrop > Theme Switcher.
   ============================================================ */

:root {
    --watch-accent: #e50914;
    --watch-accent-glow: rgba(229, 9, 20, 0.35);
}

/* ---------- Primary watch CTA ---------- */
.btn-watch {
    display: inline-block;
    background: var(--watch-accent);
    color: #fff;
    font-weight: 800;
    font-size: 1.15em;
    padding: 14px 34px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 14px var(--watch-accent-glow);
}
.btn-watch:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--watch-accent-glow);
    color: #fff;
}

/* ---------- Series / category card grid ---------- */
.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: var(--space-md);
    margin: var(--space-lg) 0 var(--space-2xl);
}
@media (max-width: 480px) {
    .series-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.series-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition);
}
.series-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
}
.series-card a {
    color: var(--text-heading);
    font-weight: 800;
    font-size: 1.02em;
    text-decoration: none;
    display: block;
}
.series-card a span {
    display: block;
    color: var(--text-muted);
    font-size: 0.82em;
    margin-top: 6px;
    font-weight: 500;
}

/* ---------- FAQ blocks ---------- */
.faq-item {
    margin-bottom: var(--space-lg);
}
.faq-item h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.1em;
}

/* ---------- Episode list (series pages, batch 3+) ---------- */
.episode-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-md) 0 var(--space-xl);
}
.episode-list a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.9em;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}
.episode-list a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
