/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Lora:wght@400;600;700&display=swap');

:root {
    --primary-color: #0b1a30;
    --secondary-color: #d4af37;
    --bg-color: #f4f6f9;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: #333;
}

/* --- TATA LETAK HYBRID MEDIA --- */

/* Hero Image (Gaya Asumsi) */
.hero-hybrid {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 400px;
}
.hero-hybrid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-hybrid .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    color: white;
}

/* Feed Card (Gaya Kumparan) */
.card-kumparan {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}
.card-kumparan img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
}
.action-buttons button {
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.action-buttons button:hover { color: #0b1a30; }

/* Listicle Card (Gaya IDN Times) */
.card-listicle {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}
.card-listicle ul {
    padding-left: 20px;
    color: #444;
    font-size: 14px;
}
.card-listicle li::marker { color: #d9232d; font-size: 1.2em; }

/* Video Section (Gaya Narasi) */
.dark-section {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 25px;
    color: white;
}
.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Gaya Hidup & Kultur (Gaya USS Feed) */
.edgy-section {
    background-color: #000000;
    border-radius: 16px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}
.text-cyan { color: #00ffff !important; font-weight: 900; line-height: 1.1; font-size: 2rem; }
.text-orange { color: #ff5500 !important; }
.edgy-bg-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: #ff5500;
    transform: rotate(15deg);
    z-index: 0;
}
.edgy-content { position: relative; z-index: 1; }