:root {
    --primary-blue: #003869;
    --gold-subtle: rgba(212, 175, 55, 0.08); /* Lebih tipis lagi */
    --gold-gradient: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(241, 210, 123, 0.05) 100%);
    --white: #ffffff;
    --text-dark: #0f172a;
    --text-gray: #64748b;
}

.event-podcast {
    padding: 100px 5%;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Gold Blobs - Diperhalus */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.15; 
    background: var(--gold-gradient);
    pointer-events: none;
}

.blob-1 { width: 400px; height: 400px; top: 10%; right: -100px; }
.blob-2 { width: 300px; height: 300px; top: 50%; left: -50px; }
.blob-3 { width: 500px; height: 500px; bottom: -100px; right: 20%; }

.event-container {
    max-width: 1250px;
    margin: 0 auto;
}

/* Layout Flex: Sebelah-sebelahan */
.podcast-flex {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Bagian Teks */
.podcast-content {
    flex: 1;
    position: sticky; /* Teks tetap terlihat saat scroll video (opsional) */
    top: 120px;
}

.podcast-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--gold-subtle);
    color: #D4AF37;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.podcast-title {
    font-size: 3.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.podcast-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.podcast-desc strong {
    color: var(--primary-blue);
}

/* Bagian Video (Sebelah Kanan) */
.video-stack {
    flex: 0 0 450px; 
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-card {
    background: white;
    border-radius: 16px; 
    overflow: hidden;
    border: 1px solid rgba(0, 56, 105, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-responsive iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

@media (max-width: 1200px) {
    .video-stack {
        flex: 0 0 380px;
    }
}

/* Responsive Tablet & Mobile */
@media (max-width: 1024px) {
    .podcast-flex {
        flex-direction: column;
        gap: 50px;
    }
    
    .podcast-content {
        position: static;
        text-align: center;
    }

    .video-stack {
        flex: 1;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-stack {
        grid-template-columns: 1fr;
    }
    .podcast-title {
        font-size: 2.5rem;
    }
}

.youthfest-section {
    padding: 100px 5%;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Layout Flex: Gambar Kiri, Teks Kanan */
.yf-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row; /* Kebalikan dari podcast */
}

/* Bagian Teks (Kanan) */
.yf-content {
    flex: 1;
}

/* Bagian Gallery (Kiri) */
.yf-gallery-wrapper {
    flex: 1.2;
    width: 100%;
    overflow: hidden;
}

.yf-gallery-container {
    overflow-x: auto;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.yf-gallery-container::-webkit-scrollbar {
    display: none;
}

.yf-gallery-container.active-grab {
    cursor: grabbing;
    transform: scale(0.99);
    transition: transform 0.2s;
}

.yf-slider {
    display: flex;
    gap: 20px;
}

/* Ukuran Card: Disamakan Semua */
.yf-item {
    flex: 0 0 320px; /* Lebar tetap sama */
    height: 400px; /* Tinggi tetap sama */
    border-radius: 28px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.yf-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* Biar drag lancar */
    transition: 0.6s ease;
}

.yf-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 56, 105, 0.1);
}

.yf-item:hover .yf-img {
    transform: scale(1.1);
}

.scroll-hint {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
    opacity: 0.6;
    text-align: center;
}

/* Blob: Mirror posisi */
.blob-yf {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 10%;
    right: -150px; /* Di sisi kanan mengikuti teks */
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
}

/* Responsive */
@media (max-width: 1024px) {
    .yf-flex {
        flex-direction: column-reverse; /* Teks di atas galeri di mobile */
        gap: 40px;
    }
    
    .yf-content {
        text-align: center;
    }

    .yf-item {
        flex: 0 0 280px;
        height: 350px;
    }
}

.entreweek-section {
    padding: 120px 5%;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Standard Grid System 3x2 */
.ew-standard-grid {
    flex: 1.3; /* Sedikit lebih lebar dari kolom teks */
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Kolom */
    gap: 15px;
}

.ew-grid-item {
    aspect-ratio: 1 / 1; /* Biar kotak sempurna atau sesuaikan jadi 4/3 jika mau agak lebar */
    border-radius: 20px;
    overflow: hidden;
    background: #eee;
    border: 1px solid rgba(0, 56, 105, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ew-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.ew-grid-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 56, 105, 0.1);
}

.ew-grid-item:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .ew-standard-grid {
        grid-template-columns: repeat(2, 1fr); /* Jadi 2 kolom di tablet */
    }
}

@media (max-width: 600px) {
    .ew-standard-grid {
        grid-template-columns: repeat(1, 1fr); /* Jadi 1 kolom di mobile */
    }
    
    .ew-grid-item {
        aspect-ratio: 16 / 9; /* Lebih bagus landscape di mobile */
    }
}

.ppm-section {
    padding: 100px 5%;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Grid Khusus 2x2 Landscape */
.ppm-grid {
    flex: 1.3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ppm-item {
    aspect-ratio: 16 / 9; /* Menjaga konsistensi landscape */
    border-radius: 20px;
    overflow: hidden;
    background: #f1f1f1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid rgba(0, 56, 105, 0.05);
}

.ppm-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hover Effect yang Berbeda: Zoom-out subtle */
.ppm-item:hover img {
    transform: scale(1.1);
}

.ppm-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 56, 105, 0.2), transparent);
    opacity: 0;
    transition: 0.4s;
}

.ppm-item:hover::after {
    opacity: 1;
}

/* Blob Warna Soft Biru */
.blob-ppm {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 56, 105, 0.03) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Kembali ke column-reverse agar teks tetap di atas gambar di mobile */
    .yf-flex {
        flex-direction: column-reverse;
    }

    .ppm-grid {
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .ppm-grid {
        grid-template-columns: 1fr; /* Jadi satu deret landscape di HP */
    }
}

.funweek-section {
    padding: 120px 5%;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Dynamic Grid */
.fw-grid {
    flex: 1.3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.fw-item {
    aspect-ratio: 16 / 10; /* Landscape sedikit lebih tinggi agar kokoh */
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fw-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Hover Effect: Efek Melebar (Flex-like feel in Grid) */
.fw-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    z-index: 2;
}

.fw-item:hover img {
    transform: scale(1.1);
}

/* Blob FW - Warna Gold Tipis */
.blob-fw {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
}

/* Responsive */
@media (max-width: 1024px) {
    .podcast-flex {
        flex-direction: column;
    }

    .fw-grid {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .fw-grid {
        grid-template-columns: 1fr;
    }
    
    .fw-item {
        border-radius: 20px;
    }
}

.funweek-section {
    padding: 120px 5%;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Dynamic Grid */
.fw-grid {
    flex: 1.3;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.fw-item {
    aspect-ratio: 16 / 10; /* Landscape sedikit lebih tinggi agar kokoh */
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fw-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Hover Effect: Efek Melebar (Flex-like feel in Grid) */
.fw-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    z-index: 2;
}

.fw-item:hover img {
    transform: scale(1.1);
}

/* Blob FW - Warna Gold Tipis */
.blob-fw {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
}

/* Responsive */
@media (max-width: 1024px) {
    .podcast-flex {
        flex-direction: column;
    }

    .fw-grid {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .fw-grid {
        grid-template-columns: 1fr;
    }
    
    .fw-item {
        border-radius: 20px;
    }
}