 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        user-select: none
    }

    body {
        margin: 0;
        font-family: 'Orbitron', sans-serif;
        background: url('../image/background.jpg') no-repeat center center fixed;
        background-size: cover;
        color: white;
    }

    header {
        background-color: #000;
        padding: 20px;
        text-align: center;
        border-bottom: 3px solid #FFD700;
    }

    header img {
        height: 80px;
    }

    h1 {
        font-size: 32px;
        color: #FFD700;
        margin-top: 10px;
    }

    .banner-utama {
        text-align: center;
        margin: 20px auto;
    }

    .banner-utama img {
        max-width: 95%;
        border-radius: 12px;
        border: 2px solid #FFD700;
        box-shadow: 0 0 15px #FFD700;
    }

    .panel-berita {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        padding: 30px;
        background-color: #0a0a0a;
    }

    .berita-item {
        background: linear-gradient(145deg, #111, #000);
        border: 2px solid gold;
        border-radius: 12px;
        padding: 20px;
        transition: 0.3s;
    }

    .berita-item:hover {
        transform: scale(1.03);
        box-shadow: 0 0 20px gold;
    }

    .berita-item h3 {
        font-size: 20px;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .berita-item p {
        font-size: 14px;
        color: #ccc;
        line-height: 150%;
        text-align: justify;
    }

    .banner-kecil-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 20px 30px;
    }

    .banner-kecil {
        flex: 1 1 200px;
        max-width: 220px;
    }

    .banner-kecil img {
        width: 100%;
        border-radius: 10px;
        border: 2px solid #FFD700;
        box-shadow: 0 0 10px #FFD700;
    }

    footer {
        background-color: #000;
        text-align: center;
        padding: 15px;
        color: #aaa;
        border-top: 2px solid #FFD700;
    }

    .overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .btn-container {
        text-align: center;
        margin: 30px auto;
    }

    .btn-main {
        background: linear-gradient(145deg, #FFD700, #e6c300);
        color: #000;
        font-weight: bold;
        font-size: 18px;
        padding: 15px 30px;
        text-decoration: none;
        border-radius: 50px;
        box-shadow: 0 0 15px gold;
        transition: all 0.3s ease;
        display: inline-block;
        font-family: 'Orbitron', sans-serif;
    }

    .btn-main:hover {
        background: #ffec7a;
        color: #000;
        box-shadow: 0 0 30px #FFD700, 0 0 10px #ffeb3b;
        transform: scale(1.05);
    }

    a {
        text-decoration: none;
    }