:root {
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.4);
    --secondary: #3b82f6;
    --accent: #d8b4fe;
    --dark-bg: #020617; /* Slate 950 base */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #94a3b8; /* Slate 400 */
    --kompas-red: #ea580c; /* Accent red/orange if needed */
    --premium-gradient: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.8;
    overflow-x: hidden;
}

.navbar-landing {
    padding: 1rem 0;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.btn-premium {
    padding: 0.8rem 2rem;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-glow {
    background: var(--premium-gradient);
    color: #fff !important;
    box-shadow: 0 10px 20px var(--primary-glow);
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 15px 30px var(--primary-glow); }

/* Left Column Layout */
.breadcrumb-news {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.breadcrumb-news a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-news a:hover {
    color: var(--primary);
}

.post-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.post-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 2px solid var(--glass-border);
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 15px;
    object-fit: cover;
    max-height: 500px;
    border: 1px solid var(--glass-border);
}

.hero-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-style: italic;
    text-align: right;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #cbd5e1; /* Slate 300 for readable reading */
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}
.post-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }
.post-content p { margin-bottom: 25px; }

.baca-juga {
    background: rgba(139, 92, 246, 0.08);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}
.baca-juga strong { color: var(--text-main); font-size: 0.9rem; display: block; margin-bottom: 5px; }
.baca-juga a { color: var(--primary); text-decoration: none; font-weight: 700; font-size: 1.1rem; }
.baca-juga a:hover { text-decoration: underline; }

/* Komentar Section Fake */
.comments-section {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
}
.comments-section h4 { font-weight: 700; border-bottom: 1px solid var(--glass-border); padding-bottom: 15px; margin-bottom: 20px; }
.comment-input-box {
    background: #0f172a;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    position: relative;
}
.comment-input-box textarea {
    background: transparent;
    border: none;
    width: 100%;
    color: #fff;
    outline: none;
    resize: none;
    height: 60px;
}
.komentar-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    float: right;
    transition: 0.3s;
}
.komentar-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Sidebar Elements */
.sidebar {
    padding-left: 20px;
}
.sidebar-title {
    font-size: 1.2rem;
    font-weight: 800;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.adsense-placeholder {
    background: #0f172a;
    border: 1px dashed var(--glass-border);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border-radius: 12px;
    margin-bottom: 40px;
    position: relative;
}
.adsense-placeholder::before {
    content: 'AdSense Slot';
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}
.ads-banner-tall { min-height: 600px; }

/* Terpopuler List */
.terpopuler-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}
.terpopuler-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}
.terpopuler-item:last-child { border-bottom: none; }
.terpopuler-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--glass-border);
    line-height: 1;
    width: 40px;
    text-align: center;
    transition: color 0.3s;
}
.terpopuler-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
    margin-top: 5px;
}
.terpopuler-item:hover .terpopuler-number { color: var(--primary); }
.terpopuler-item:hover .terpopuler-title { color: var(--primary); text-decoration: none; }

/* Pilihan Untukmu / Trending Grid */
.trending-grid {
    margin-bottom: 40px;
}
.trending-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    text-decoration: none;
}
.trending-card:hover { transform: translateX(5px); background: rgba(255, 255, 255, 0.05); border-color: rgba(139, 92, 246, 0.3); }
.trending-img {
    width: 110px;
    height: 90px;
    object-fit: cover;
    flex-shrink: 0;
}
.trending-content {
    padding: 12px 15px 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.trending-cat {
    font-size: 0.7rem;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}
.trending-title {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Post Content tweaks */
@media (max-width: 991px) {
    .sidebar { padding-left: 15px; margin-top: 50px; }
    .post-content { padding: 2rem 1.5rem; }
    .post-title { font-size: 1.8rem; }
}
