    /* === Variables === */
    :root {
        --primary: #132043;
        --secondary: #1F4171;
        --accent-yellow: #F8DD50;
        --accent-pink: #F1B4BB;
        --light: #FCF0F0;
    }

    body {

        margin: 0;
        font-family: 'Poppins', sans-serif;
        color: var(--primary);
        background: #fafafa;
    }

    /* Navbar */
    .navbar {
        position: sticky;
        top: 0;
        background: var(--primary);
        padding: 12px 0;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .nav-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-brand {
        font-weight: bold;
        font-size: 1.4em;
        color: var(--accent-yellow);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }

    .nav-links a:hover {
        color: var(--accent-yellow);
    }

    /* Header */
    header {
        background: linear-gradient(rgba(93, 126, 214, 0.75), rgba(205, 156, 156, 0.75)),
            url('../images/bg-header.jpg') center/cover no-repeat;
        color: var(--light);
        text-align: center;
        padding: 100px 20px 120px;
        position: relative;
        overflow: hidden;
    }

    header::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        /* tinggi gradasi, bisa diatur */
        background: linear-gradient(to bottom, rgba(19, 32, 67, 0) 0%, rgba(252, 240, 240, 1) 100%);
        /* atas transparan → bawah warna background body (#FCF0F0) */
        pointer-events: none;
    }

    header img.logo {
        width: 140px;
        margin-bottom: 15px;
    }

    .home-btn{
                    background: none;
            border: 2px solid var(--accent-yellow);
            color: var(--accent-yellow);
            border-radius: 50%;
            width: 38px;
            height: 38px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s, color 0.3s;
    }
    .cta-btn {
        margin-top: 15px;
        padding: 10px 20px;
        border: none;
        border-radius: 8px;
        background: var(--accent-yellow);
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .cta-btn:hover {
        background: var(--accent-pink);
    }

    /* Content */
    .section {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .section h1 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--secondary);
        justify-content: center;
    }

    /* Search */
    .search-box {
        text-align: center;
        margin-bottom: 25px;
    }

    .search-box input[type="text"] {
        padding: 10px 14px;
        border-radius: 8px;
        border: 1px solid #ccc;
        min-width: 260px;
        outline: none;
    }

    .search-box input[type="text"]:focus {
        border-color: var(--accent-yellow);
    }

    .search-box button,
    .reset-btn {
        margin-left: 8px;
        padding: 9px 16px;
        border: none;
        border-radius: 8px;
        background: var(--accent-yellow);
        color: var(--primary);
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        text-decoration: none;
    }

    .search-box button:hover,
    .reset-btn:hover {
        background: var(--accent-pink);
    }

    /* Table */
    .table-container {
        display: flex;
        justify-content: center;
    }

    .table {
        width: 90%;
        max-width: 1200px;
        font-size: 1rem;
        border-collapse: collapse;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .table thead {
        background: var(--secondary);
        color: var(--light);
    }

    .table thead th {
        padding: 16px 14px;
        font-size: 1.05rem;
        text-transform: uppercase;
    }

    .table tbody td {
        padding: 14px 12px;
        text-align: center;
    }

    .table tbody tr:nth-child(odd) {
        background: var(--light);
    }

    .table tbody tr:nth-child(even) {
        background: #E8F6F7;
    }

    .table tbody tr:hover {
        background: rgba(241, 180, 187, 0.3);
    }

    .badge {
        display: inline-block;
        padding: 6px 12px;
        border-radius: 12px;
        background: var(--secondary);
        color: var(--light);
        font-weight: 600;
    }