<style>
        :root {
            --primary: #2563eb;
            --primary-dark: #1e40af;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --radius: 12px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
        body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }

        header {
            background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)), 
                        url('#'); 
            background-size: cover;
            background-position: center;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        nav { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }

        .logo { 
            display: flex; 
            align-items: center; 
            gap: 12px; 
            color: white; /* Teks putih karena header gelap */
            font-weight: 700; 
            font-size: 1.5rem; 
            text-decoration: none;
        }
        
        .logo-img {
            height: 45px; /* Tinggi logo */
            width: auto;
            border-radius: 8px; /* Sedikit melengkung pada sudut logo */
            border: 2px solid rgba(255,255,255,0.2);
        }

        .nav-links button { 
            background: rgba(255,255,255,0.1); 
            border: 1px solid rgba(255,255,255,0.2);
            color: white; 
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer; 
            font-size: 0.95rem; 
            transition: all 0.3s; 
        }

        .nav-links button:hover { 
            background: rgba(255,255,255,0.2); 
            transform: translateY(-1px);
        }

        .hero { 
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.5), rgba(96, 165, 250, 0.5)), 
                        url('../slipgaji/images/gedung-rektorat.png'); 
            
            background-size: cover; 
            background-position: center; 
            color: var(--white); 
            text-align: center; 
            padding: 6rem 2rem; 
            margin-bottom: 2rem;
        }

        .hero h1 { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 800; letter-spacing: -0.5px; }
        .hero p { font-size: 1.15rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

        main { max-width: 1200px; margin: 0 auto 3rem auto; padding: 0 2rem; flex: 1; width: 100%; }

        .news-section { margin-bottom: 3rem; }
        .news-card { 
            background: var(--white); 
            border-left: 5px solid var(--primary); 
            padding: 1.5rem; 
            border-radius: var(--radius); 
            box-shadow: var(--shadow); 
            display: flex; 
            align-items: flex-start; 
            gap: 1.5rem; 
            transition: transform 0.2s;
        }
        .news-card:hover { transform: translateY(-2px); }
        
        .news-date { 
            background: #eff6ff; 
            color: var(--primary); 
            padding: 0.8rem 1.2rem; 
            border-radius: 8px; 
            text-align: center; 
            min-width: 80px; 
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .news-date span:first-child { font-size: 1.4rem; font-weight: 700; display: block; line-height: 1; }
        .news-date small { font-size: 0.8rem; font-weight: 600; margin-top: 4px; display: block; text-transform: uppercase; }
        
        .news-content h3 { margin-bottom: 0.5rem; color: var(--text-dark); font-size: 1.2rem; }
        .news-content p { color: var(--text-light); }

        .salary-section { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; }
        .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; border-bottom: 1px solid #f1f5f9; padding-bottom: 1rem; }
        .section-header h2 { color: var(--text-dark); font-size: 1.5rem; }
        
        .table-responsive { overflow-x: auto; }
        table { width: 100%; border-collapse: collapse; }
        th, td { padding: 1rem; text-align: left; border-bottom: 1px solid #e2e8f0; }
        th { background-color: #f8fafc; color: var(--text-light); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; }
        tr:hover { background-color: #f8fafc; }
        
        .btn-download { 
            background-color: var(--primary); 
            color: var(--white); 
            padding: 0.6rem 1.2rem; 
            border-radius: 6px; 
            text-decoration: none; 
            font-size: 0.9rem; 
            font-weight: 500;
            display: inline-flex; 
            align-items: center; 
            gap: 8px; 
            border: none; 
            cursor: pointer; 
            transition: background 0.3s; 
            box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
        }
        .btn-download:hover { background-color: var(--primary-dark); transform: translateY(-1px); }

        .pagination { display: flex; justify-content: center; margin-top: 2rem; gap: 8px; }
        .page-btn { 
            padding: 0.6rem 1rem; 
            border: 1px solid #e2e8f0; 
            background: var(--white); 
            border-radius: 6px; 
            cursor: pointer; 
            transition: all 0.2s; 
            color: var(--text-dark);
            font-weight: 500;
        }
        .page-btn:hover { background-color: #f1f5f9; border-color: #cbd5e1; }
        .page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

        footer { background: #0f172a; color: #94a3b8; text-align: center; padding: 2rem; margin-top: auto; border-top: 4px solid var(--primary); }

        @media (max-width: 768px) {
            .hero h1 { font-size: 1.8rem; }
            .news-card { flex-direction: column; }
            .news-date { min-width: auto; width: 100%; flex-direction: row; justify-content: space-between; padding: 0.5rem 1rem; }
        }
    </style>