* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('https://res.cloudinary.com/dy1rcnflj/image/upload/v1779419991/stars-galaxy_nr3kea_fimjvn.gif');
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1024px;
    text-align: center;
}

/* TOP MENU */
.top-menu {
    width: 100%;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 15px;
}

.top-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: .3s;
}

.top-menu a:hover {
    color: #f7b500;
}

.top-menu span {
    color: #666;
    font-size: 14px;
}

/* MOBILE */
@media(max-width:768px) {

    .top-menu {
        justify-content: flex-start;
        gap: 10px;
        padding: 0 12px;
        height: 40px;
    }

    .top-menu a {
        font-size: 13px;
    }

    .top-menu span {
        font-size: 12px;
    }
}

/* INFO BAR */
.info-bar {
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
    border-top: 2px solid #2aff00;
    border-bottom: 2px solid #c40000;
    background: #000;
}

/* TIME */
.info-time {
    min-width: 250px;
    height: 100%;
    background: #c40000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 0 15px;
    white-space: nowrap;
}

/* NEWS */
.info-news {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 0 10px;
    background: #111;
}

.info-news marquee {
    width: 100%;
}

/* SLIDER */
.slider {
    width: 100%;
    aspect-ratio: 1024 / 560;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.slides {
    display: flex;
    width: 400%;
    height: 100%;
    animation: slide 16s infinite;
}

.slide {
    width: 25%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BOTTOM BANNER */
.bottom-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 102px;
    z-index: 10;
    overflow: hidden;
}

.bottom-banner img {
    width: 100%;
    height: 100%;
}

/* SLIDER ANIMATION */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-25%);
    }

    45% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    70% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-75%);
    }

    95% {
        transform: translateX(-75%);
    }

    100% {
        transform: translateX(0);
    }
}

/* BUTTON */
.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.buttons a {
    flex: 1;
    max-width: 320px;
    text-decoration: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    text-align: center;
}

.login {
    background: #f7b500;
    color: #111;
}

.login:hover {
    background: #ffd447;
}

.daftar {
    background: #28a745;
    color: #fff;
}

.daftar:hover {
    background: #3cd45b;
}

/* =========================
   ARTIKEL
========================= */
.artikel {
    text-align: left;
}

/* JUDUL UTAMA */
.artikel h1 {
    font-size: 32px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 22px;
    font-weight: 700;
    text-align: center;
}

/* SUB JUDUL */
.artikel h2 {
    font-size: 26px;
    color: #ffffff;
    margin-top: 35px;
    margin-bottom: 18px;
    padding-left: 14px;
    border-left: 3px solid #f7b500;
    line-height: 1.4;
}

/* H3 */
.artikel h3 {
    font-size: 22px;
    color: #f7b500;
    margin-top: 30px;
    margin-bottom: 16px;
}

/* PARAGRAF */
.artikel p {
    font-size: 17px;
    line-height: 1.9;
    color: #dddddd;
    margin-bottom: 18px;
    text-align: justify;
}

/* LIST */
.artikel ul,
.artikel ol {
    margin-left: 25px;
    margin-bottom: 22px;
}

.artikel li {
    color: #dddddd;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 10px;
}

/* TABLET */
@media(max-width:768px) {

    .artikel {
        padding: 22px;
        margin-top: 24px;
        border-radius: 12px;
    }

    .artikel h1 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .artikel h2 {
        font-size: 21px;
        margin-top: 28px;
    }

    .artikel h3 {
        font-size: 18px;
    }

    .artikel p {
        font-size: 15px;
        line-height: 1.8;
    }

    .artikel li {
        font-size: 15px;
    }
}

/* MOBILE */
@media(max-width:480px) {

    .artikel {
        padding: 18px;
    }

    .artikel h1 {
        font-size: 20px;
        line-height: 1.5;
    }

    .artikel h2 {
        font-size: 18px;
        padding-left: 10px;
    }

    .artikel h3 {
        font-size: 16px;
    }

    .artikel p {
        font-size: 14px;
        line-height: 1.8;
    }

    .artikel li {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* RESPONSIVE MOBILE */
@media(max-width:480px) {

    .artikel {
        padding: 16px;
        border-radius: 10px;
    }

    .artikel h1,
    h2 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .artikel p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* FOOTER */
footer {
    color: #aaa;
    font-size: 14px;
    padding-bottom: 30px;
}

/* TABLET */
@media (max-width: 992px) {

    .container {
        max-width: 100%;
    }

    .bottom-banner {
        height: 65px;
    }

    .buttons a {
        font-size: 16px;
        padding: 14px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    body {
        padding: 10px;
    }

    .container {
        padding: 10px;
    }

    .info-bar {
        height: auto;
        flex-direction: column;
    }

    .info-time {
        width: 100%;
        min-width: 100%;
        height: 40px;
        font-size: 12px;
    }

    .info-news {
        width: 100%;
        height: 40px;
        font-size: 12px;
    }

    .slider {
        margin-bottom: 20px;
    }

    .bottom-banner {
        height: 50px;
    }

    .buttons {
        flex-direction: column;
        gap: 12px;
    }

    .buttons a {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        padding: 14px;
    }

    footer {
        font-size: 12px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .bottom-banner {
        height: 40px;
    }

    .buttons a {
        font-size: 15px;
        padding: 12px;
    }

    footer {
        font-size: 11px;
    }
}