/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --primary-pink: #FF7FB5;
    --primary-purple: #C098D3;
    --primary-blue: #8BC6EC;
    --gradient-brand: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-purple) 50%, var(--primary-blue) 100%);
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #fb7185;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    justify-content: center;
}

.logo img {
    height: 180px; /* Massive for visibility check */
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 20px rgba(255, 127, 181, 0.4));
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(139, 198, 236, 0.5));
}

.nav-links {
    display: flex;
    gap: 3rem;
    font-weight: 500;
    justify-content: center;
}

.nav-links a:hover {
    color: var(--primary-pink);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature Episode */
.featured-episode {
    background: linear-gradient(135deg, rgba(255, 127, 181, 0.1) 0%, rgba(139, 198, 236, 0.1) 100%);
    border-radius: 2rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.featured-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.featured-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Episode Grid */
.episode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.episode-card {
    background: var(--dark-card);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.episode-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.card-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    transition: var(--transition-smooth);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px -5px var(--primary-purple);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
}

.btn-outline:hover {
    background: var(--primary-pink);
    color: #fff;
}

/* Footer */
footer {
    padding: 4rem 0;
    background: #080c14;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .featured-episode {
        grid-template-columns: 1fr;
    }
    .featured-content h2 {
        font-size: 2rem;
    }
}
