        :root {
            --primary: #1a3a5f;
            --secondary: #f39c12;
            --accent-blue: #3498db;
            --light-bg: #f0f2f5;
            --text-dark: #2d3436;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --footer-dark: #122a44;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Header --- */
        .main-header {
            background: var(--white);
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 2000;
        }

        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            padding: 5px 0;
        }

        .logo img {
            height: 55px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo h1 {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 0.5px;
            margin: 0;
            line-height: 1.1;
        }

        .logo p {
            font-size: 0.8rem;
            font-weight: 500;
            color: #636e72;
            margin: 2px 0 0 0;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        /* --- Running Text --- */
        .marquee-container {
            background: var(--primary);
            color: white;
            padding: 8px 0;
            font-size: 0.85rem;
            overflow: hidden;
            position: relative;
        }

        .marquee-text {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 25s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        /* --- Navigation --- */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 8px 12px;
            transition: 0.3s;
            border-radius: 5px;
        }

        .nav-menu a:hover {
            background: rgba(52, 152, 219, 0.1);
            color: var(--accent-blue);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--primary);
            transition: 0.3s;
        }

        /* --- Grid Layout --- */
        .main-grid {
            display: grid;
            grid-template-columns: 2.2fr 1fr;
            gap: 25px;
            margin-top: 25px;
            padding-bottom: 50px;
        }

        /* --- Card Styles --- */
        .card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            margin-bottom: 25px;
            overflow: hidden;
        }

        .card-header {
            padding: 12px 20px;
            background: var(--accent-blue);
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 1rem;
        }

        .card-body {
            padding: 20px;
        }

        .card h3.section-title {
            padding: 15px 20px 0;
            color: var(--primary);
            font-size: 1.1rem;
            border-left: 5px solid var(--secondary);
            margin-left: 20px;
            margin-top: 15px;
        }

        /* --- Video Responsive --- */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            background: #000;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- News Item --- */
        .news-item {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid #f0f2f5;
            align-items: flex-start;
        }

        .news-item:hover {
            background: #fafafa;
        }

        .news-item img {
            width: 140px;
            /* Sedikit lebih besar agar jelas */
            height: 100px;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0;
            /* Mencegah gambar menyusut */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
        }

        .news-item h4 {
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            /* Batasi judul maksimal 2 baris */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-item div {
            flex-grow: 1;
        }

        /* --- Archive & List --- */
        .archive-list {
            list-style: none;
        }

        .archive-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f1f1f1;
        }

        .archive-list a {
            text-decoration: none;
            color: var(--primary);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .archive-list a:hover {
            color: var(--accent-blue);
            transform: translateX(5px);
        }

        /* --- Calendar --- */
        .calendar-box {
            text-align: center;
        }

        .cal-month {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary);
            display: block;
            font-size: 1.1rem;
        }

        .cal-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
        }

        .cal-day-name {
            font-weight: bold;
            color: var(--accent-blue);
            font-size: 0.75rem;
            padding-bottom: 8px;
        }

        .cal-date {
            padding: 8px 0;
            border-radius: 6px;
            background: #f8f9fa;
            font-size: 0.85rem;
        }

        .cal-date.today {
            background: var(--secondary);
            color: white;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
        }

        .cal-date.sunday {
            color: #e74c3c;
        }

        /* --- Gallery --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .gallery-item img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            border-radius: 8px;
            background: #eee;
            cursor: pointer;
            transition: 0.3s;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        /* --- Pagination --- */
        .pagination-container {
            display: flex;
            justify-content: center;
            margin: 30px 0;
            gap: 5px;
        }

        .page-link {
            padding: 8px 14px;
            text-decoration: none;
            color: var(--primary);
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            font-weight: 600;
            transition: 0.3s;
        }

        .page-link.active {
            background: var(--accent-blue);
            color: white;
            border-color: var(--accent-blue);
        }

        /* --- Animasi --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Footer --- */
        .main-footer {
            background-color: var(--footer-dark);
            color: #bdc3c7;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 8px;
        }

        .kkn-badge {
            display: inline-block;
            background: rgba(243, 156, 18, 0.15);
            color: var(--secondary);
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 600;
            border: 1px solid var(--secondary);
            margin-top: 15px;
        }

        /* --- Profil Section Styles --- */
        .profile-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .profile-intro {
            background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
            color: white;
            padding: 30px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .profile-intro::after {
            content: '\f66f';
            /* Icon Landmark */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 150px;
            opacity: 0.1;
        }

        .profile-intro h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .profile-intro p {
            font-size: 1rem;
            opacity: 0.9;
            line-height: 1.8;
        }


        /* --- Modern Gallery Section --- */
        .main-gallery {
            margin-bottom: 25px;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* 3 kolom di desktop */
            gap: 15px;
            padding: 20px;
        }

        .gallery-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 58, 95, 0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-overlay span {
            color: white;
            font-size: 0.85rem;
            font-weight: 600;
            transform: translateY(10px);
            transition: transform 0.3s ease;
        }

        .gallery-card:hover img {
            transform: scale(1.1);
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-card:hover .gallery-overlay span {
            transform: translateY(0);
        }

        /* --- Detail Berita Styles --- */
        .news-detail-container {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        .news-detail-header {
            padding: 30px 30px 15px 30px;
        }

        .news-category {
            background: rgba(52, 152, 219, 0.1);
            color: var(--accent-blue);
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
        }

        .news-title {
            font-size: 2rem;
            color: var(--primary);
            line-height: 1.3;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .news-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #7f8c8d;
            font-size: 0.85rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }

        .news-meta span i {
            color: var(--secondary);
            margin-right: 5px;
        }

        .news-featured-image {
            width: 100%;
            padding: 0 30px;
        }

        .news-featured-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            max-height: 450px;
        }

        .news-content {
            padding: 30px;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444;
        }

        .news-content p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .news-content blockquote {
            border-left: 5px solid var(--secondary);
            background: #fdfaf3;
            padding: 20px;
            margin: 30px 0;
            font-style: italic;
            color: var(--primary);
        }

        .news-share {
            padding: 20px 30px;
            border-top: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .news-slider-wrapper {
            position: relative;
            padding: 0 30px;
            margin-bottom: 15px;
        }

        .news-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            gap: 15px;
            border-radius: 12px;
            -webkit-overflow-scrolling: touch;
            /* Halus di iOS */
        }

        /* Sembunyikan scrollbar tapi tetap bisa di-scroll */
        .news-slider::-webkit-scrollbar {
            height: 6px;
        }

        .news-slider::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 10px;
        }

        .slider-item {
            flex: 0 0 100%;
            /* Satu foto tampil penuh */
            scroll-snap-align: start;
            position: relative;
        }

        .slider-item img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 12px;
            display: block;
        }

        /* Caption di dalam foto (Opsional) */
        .slider-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 8px 15px;
            font-size: 0.8rem;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }

        /* Indikator Swipe (Mobile) */
        .swipe-hint {
            display: none;
            text-align: center;
            font-size: 0.75rem;
            color: #999;
            margin-top: 8px;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 10;
            transition: 0.3s;
        }

        .slider-nav:hover {
            background: var(--primary);
            color: white;
        }

        .prev-btn {
            left: 40px;
        }

        .next-btn {
            right: 40px;
        }

        /* Responsive News Detail */

        /* Responsive Galeri */
        @media (max-width: 768px) {
            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
                /* 2 kolom di tablet */
            }

            .slider-nav {
                display: none;
            }

            .news-title {
                font-size: 1.5rem;
            }

            .news-detail-header,
            .news-content,
            .news-share {
                padding: 20px;
            }

            .news-featured-image {
                padding: 0 20px;
            }

            .news-slider-wrapper {
                padding: 0 20px;
            }

            .slider-item img {
                height: 300px;
            }

            .swipe-hint {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .gallery-container {
                grid-template-columns: 1fr;
                /* 1 kolom di HP */
            }

            .news-item {
                flex-direction: column;
                /* Gambar di atas, teks di bawah */
                gap: 12px;
                padding: 15px 0;
            }

            .news-item img {
                width: 100%;
                /* Gambar selebar layar */
                height: 180px;
                /* Lebih tinggi agar proporsional */
            }

            .news-item h4 {
                font-size: 1.1rem !important;
                /* Judul lebih besar di HP */
                margin-top: 5px;
            }

            .news-item p {
                font-size: 0.9rem !important;
                -webkit-line-clamp: 3;
                /* Deskripsi maksimal 3 baris */
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .card h3.section-title {
                margin-left: 15px;
                font-size: 1rem;
                padding-top: 10px;
            }


        }


        /* --- Responsive --- */
        @media (max-width: 992px) {
            .main-header {
                padding: 0.75rem 0;
                /* Lebih ramping di mobile */
            }

            .top-bar {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .logo {
                gap: 10px;
                /* Jarak logo dan teks lebih rapat */
            }

            .logo img {
                height: 45px;
                /* Ukuran logo lebih proporsional */
            }

            .logo h1 {
                font-size: 1rem;
                /* Ukuran teks judul mengecil */
            }

            .logo p {
                font-size: 0.7rem;
                /* Ukuran teks sub-judul mengecil */
            }

            .main-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-col h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .hamburger {
                display: flex;
                z-index: 3001;
                /* Di atas nav-menu */
                padding: 10px;
                margin-right: -10px;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                /* Tidak full screen agar user tahu masih di web yang sama */
                max-width: 300px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 30px;
                gap: 10px;
                box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
                transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 3000;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                width: 100%;
            }

            .nav-menu a {
                display: block;
                font-size: 1rem;
                padding: 15px 20px;
                border-bottom: 1px solid #f0f2f5;
                border-radius: 8px;
            }

            /* Animasi Hamburger ke 'X' */
            .hamburger.open span:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.open span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.open span:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
        }