        body { font-family: 'Segoe UI', sans-serif; margin: 0; display: flex; flex-direction: column; min-height: 100vh; background:#f4f6f9; }
        
        /* --- TEMA DINAMIS --- */
        header { 
            background: var(--theme-color); 
            color: white; padding: 1rem; box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
        }
        
        .btn-login { 
            width: 100%; padding: 12px; background: var(--theme-color); 
            color: white; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; transition: 0.3s;
        }
        .btn-login:hover { filter: brightness(1.1); }
        
        .main-info h2 { 
            border-bottom: 3px solid var(--theme-color); 
            color: var(--theme-color);
        }
        .login-box h3 { margin-top: 0; color: var(--theme-color); border-bottom: 2px solid #eee; padding-bottom: 10px;}
        .btn-reg { background: white; border: 1px solid var(--theme-color); color: var(--theme-color); margin-top: 5px; padding: 10px; border-radius: 6px; cursor: pointer; font-weight: bold; transition: 0.3s;}
        .btn-reg:hover { background: var(--theme-color); color: white; }
        
        /* Layout Umum */
        nav.top-nav ul { list-style: none; padding: 0; display: flex; gap: 20px; }
        nav.top-nav a { color: white; text-decoration: none; font-weight: 500; opacity: 0.9; transition: 0.3s; }
        nav.top-nav a:hover { opacity: 1; text-shadow: 0 0 5px rgba(255,255,255,0.5); }
        .container { display: flex; flex: 1; padding: 40px 20px; gap: 30px; max-width: 1200px; margin: 0 auto; width: 100%; box-sizing: border-box; }
        .main-info { flex: 7; } 
        .sidebar { flex: 3; }
        
        /* --- LAYOUT 2 KOLOM --- */
        .content-grid {
            display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px;
        }
        .col-header {
            font-size: 1.2rem; color: #333; border-bottom: 2px solid var(--theme-color);
            padding-bottom: 8px; margin-bottom: 15px; margin-top: 0; display: flex; justify-content: space-between; align-items: center;
        }

        /* --- DESAIN CARD --- */
        .news-card { 
            background: white; border: none; margin-bottom: 20px; 
            border-radius: 10px; overflow: hidden; 
            box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: 0.3s ease; 
        }
        .news-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
        .news-img { width: 100%; height: 160px; object-fit: cover; }
        .news-content { padding: 15px; }
        .news-content h3 { margin-top: 8px; color: #222; font-size: 1.1rem; line-height: 1.3;}
        .news-badge { background: var(--theme-color); color: white; padding: 3px 8px; border-radius: 4px; font-size: 0.7em; text-transform: uppercase; font-weight: bold; }
        .read-more { 
            display: inline-block; margin-top: 10px; color: var(--theme-color); 
            text-decoration: none; font-weight: bold; cursor: pointer; font-size: 0.9em; transition: 0.2s;
        }
        .read-more:hover { color: #222; margin-left: 5px; }
        
        /* --- DESAIN PAGINATION --- */
        .pagination { display: flex; justify-content: flex-start; gap: 5px; margin-bottom: 30px; flex-wrap: wrap;}
        .pagination a { 
            padding: 6px 12px; background: white; border: 1px solid #ddd; 
            border-radius: 6px; color: var(--theme-color); text-decoration: none; 
            font-weight: bold; transition: 0.3s; font-size: 0.9rem;
        }
        .pagination a:hover, .pagination a.active { 
            background: var(--theme-color); color: white; border-color: var(--theme-color); 
        }

        /* --- DESAIN POP-UP (MODAL) --- */
        .modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease;}
        .modal-content { background-color: #fff; margin: 5% auto; padding: 30px; border-radius: 16px; width: 90%; max-width: 700px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); position: relative; transform: translateY(-30px); transition: transform 0.3s ease; max-height: 80vh; overflow-y: auto;}
        .modal.show { opacity: 1; }
        .modal.show .modal-content { transform: translateY(0); }
        .close-btn { position: absolute; top: 20px; right: 25px; color: #888; font-size: 28px; font-weight: bold; cursor: pointer; transition: 0.2s; }
        .close-btn:hover { color: #e74c3c; }
        .modal-img-full { width: 100%; max-height: 350px; object-fit: cover; border-radius: 10px; margin-bottom: 20px; display: none; }
        .modal-body-text { color: #444; line-height: 1.8; font-size: 1.05rem; }

        /* Komponen Lain */
        .login-box { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-top: 5px solid var(--theme-color); }
        .side-menu { margin-top: 30px; background: white; padding: 25px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.04); }
        .side-menu ul { list-style: none; padding: 0; }
        .side-menu li { border-bottom: 1px solid #f0f0f0; padding: 12px 0; }
        .side-menu li:last-child { border-bottom: none; }
        .side-menu a { text-decoration: none; color: #555; display: block; font-weight: 500;}
        .side-menu a:hover { color: var(--theme-color); padding-left: 8px; transition: 0.3s; }
        input, select { width: 100%; padding: 12px; margin: 8px 0 15px; border: 1px solid #ddd; border-radius: 6px; box-sizing: border-box; background: #fafafa; transition: 0.3s;}
        input:focus, select:focus { border-color: var(--theme-color); outline: none; background: #fff;}
        footer { background: var(--theme-color); color: #eee; text-align: center; padding: 25px; margin-top: auto; font-size: 0.9em; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); }
        
        @media (max-width: 992px) { .content-grid { grid-template-columns: 1fr; } .container { flex-direction: column; } }
    