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

:root {
    --senegal-green: #00853F;
    --senegal-yellow: #FCD116;
    --senegal-red: #E31B23;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-gray: #F3F4F6;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-light);
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 1rem 5%;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-flag {
    width: 45px;
    height: 30px;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}

.flag-stripe {
    flex: 1;
}

.flag-green {
    background: var(--senegal-green);
}
.flag-yellow {
    background: var(--senegal-yellow);
}
.flag-red {
    background: var(--senegal-red);
}

.logo-text h1 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--senegal-green);
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-light);
}

.nav-menu-desktop {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu-desktop a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-menu-desktop a:hover,
.nav-menu-desktop a.active {
    color: var(--senegal-green);
}

/* Hero Section */
.podcast-hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 4rem 5% 3rem;
    text-align: center;
    border-bottom: 1px solid var(--bg-gray);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.podcast-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.podcast-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats Bar */
.stats-bar {
    background: var(--white);
    padding: 2rem 5%;
    border-bottom: 1px solid var(--bg-gray);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--senegal-green);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Filter Section */
.filter-section {
    background: var(--white);
    padding: 1.5rem 5%;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 80px;
    z-index: 100;
    border-bottom: 1px solid var(--bg-gray);
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.filter-btn {
    padding: 0.65rem 1.5rem;
    border: 2px solid var(--bg-gray);
    background: var(--white);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--senegal-green);
    background: var(--bg-light);
}

.filter-btn.active {
    border-color: var(--senegal-green);
    background: var(--senegal-green);
    color: var(--white);
}

/* Main Content */
.podcast-main {
    padding: 3rem 5%;
}

.podcast-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Featured Video */
.featured-video {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--bg-gray);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0;
}

.featured-thumbnail {
    position: relative;
    background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.featured-thumbnail:hover {
    transform: scale(1.02);
}

.featured-thumbnail:hover .play-button {
    transform: scale(1.1);
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--senegal-green);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.video-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--senegal-green);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-duration {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
}

.featured-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--bg-light);
    color: var(--senegal-green);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.featured-details h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.featured-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.action-btn {
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-primary {
    background: var(--senegal-green);
    color: var(--white);
}

.btn-primary:hover {
    background: #006d33;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--bg-gray);
}

.btn-secondary:hover {
    border-color: var(--senegal-green);
    background: var(--white);
}

/* Section Title */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.view-all-link {
    color: var(--senegal-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.view-all-link:hover {
    opacity: 0.7;
}

/* Video Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-gray);
    transition: all 0.3s;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.video-thumbnail {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gradient-purple {
    background: linear-gradient(135deg, #9CA3AF, #6B7280);
}
.gradient-pink {
    background: linear-gradient(135deg, #D1D5DB, #9CA3AF);
}
.gradient-cyan {
    background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
}
.gradient-orange {
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
}
.gradient-blue {
    background: linear-gradient(135deg, #9CA3AF, #6B7280);
}
.gradient-green {
    background: linear-gradient(135deg, #D1D5DB, #9CA3AF);
}
.gradient-indigo {
    background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
}
.gradient-red {
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
}

.thumbnail-play {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--senegal-green);
    transition: all 0.3s;
}

.video-card:hover .thumbnail-play {
    transform: scale(1.15);
}

.video-time {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.video-new-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    background: var(--senegal-green);
    color: var(--white);
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.video-content {
    padding: 1.5rem;
}

.video-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--bg-light);
    color: var(--senegal-green);
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.video-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.video-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.video-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    padding-top: 1rem;
    border-top: 1px solid var(--bg-gray);
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Playlists Section */
.playlists-section {
    margin-bottom: 4rem;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.playlist-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--bg-gray);
    transition: all 0.3s;
    cursor: pointer;
}

.playlist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.playlist-cover {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playlist-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
}

.playlist-icon {
    font-size: 3rem;
}

.playlist-info {
    padding: 1.5rem;
}

.playlist-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.playlist-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.playlist-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bg-gray);
    margin-bottom: 3rem;
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.newsletter-section p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--bg-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--senegal-green);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: var(--senegal-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: #006d33;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--senegal-green);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-video {
        grid-template-columns: 1fr;
    }

    .featured-thumbnail {
        min-height: 350px;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .podcast-hero h1 {
        font-size: 2.2rem;
    }

    .nav-menu-desktop {
        display: none;
    }

    .videos-grid,
    .playlists-grid {
        grid-template-columns: 1fr;
    }

    .featured-details h2 {
        font-size: 1.6rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
