* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    user-select: none;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a {
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.banner {
    width: 40%;
    border-radius: 15px;
    border: 2px solid #8B0000;
    margin-bottom: 1%;
}

.banner img {
    width: 100%;
    border-radius: 15px;
}


/* Button */

.button-group {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.button {
    width: 17.5%;
    background: linear-gradient(45deg, #8B0000, #FF0000);
    color: white;
    font-weight: bold;
    border: 2px solid #FF0000;
    border-radius: 8px;
    padding: 10px 20px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.8);
    outline: 2px solid white;
    /* Outline putih tipis */
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background: linear-gradient(45deg, #B22222, #FF4444);
    box-shadow: 0px 0px 25px rgba(255, 0, 0, 1);
    outline: 2px solid yellow;
    /* Outline kuning saat hover */
}

/* Sosmed */
.sosmed {
    width: 10%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0.5%;
}

.sosmed a {
    width: 100%;
}

.sosmed img {
    width: 100%;
}

/* Article */

.content {
    width: 60%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.article {
    width: 40%;
    background: linear-gradient(180deg, #8B0000, #300000);
    border: 2px solid #FF0000;
    border-radius: 15px;
    /* Lebih membulat agar terlihat modern */
    padding: 20px;
    color: white;
    box-shadow: 0px 0px 25px rgba(255, 0, 0, 0.8);
    /* Lebih terang agar lebih standout */
    text-align: justify;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.article::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.7), rgba(255, 165, 0, 0.7));
    z-index: -1;
    filter: blur(10px);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.article:hover::before {
    opacity: 1;
}

/* Header Artikel */
.article h2 {
    color: #FFD700;
    font-weight: bold;
    text-align: center;
    text-shadow: 0px 0px 10px rgba(255, 215, 0, 0.8);
    font-size: 1.8em;
}

/* Tambahan hover efek agar lebih interaktif */
.article:hover {
    transform: scale(1.03);
    box-shadow: 0px 0px 30px rgba(255, 0, 0, 1);
}

.article p {
    margin-bottom: 0.5%;
}

ul {
    margin-bottom: 0.5%;
}

li {
    margin-left: 5%;
}

@media screen and (max-width: 1020px) {
    .container {
        padding: 5px;
    }

    .banner {
        width: 100%;
        max-width: 600px;

    }

    /* Button */

    .button {
        width: 45%;
    }


    /* Sosmed */
    .sosmed {
        width: 50%;
        max-width: 200px;
    }


    /* Article */

    .content {
        width: 100%;
        display: block;
    }

    .article {
        width: 100%;
        margin-bottom: 6%;
    }


}