* {
    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;
    margin: 0;
    padding: 0;
    background-color: #0e0e0e;
    color: #fff;
}

/* Header styles */
.header {
    text-align: center;
    padding: 20px 20px;
    background-color: #111;
}

.header .logo img {
    width: 200px;
}

.headline {
    font-size: 36px;
    font-weight: bold;
    color: #ff6f00;
    margin: 10px 0;
}

.subheadline {
    font-size: 18px;
    color: #fff;
}

/* Button Start */
.button_container {
    width: 100%;
    margin: 3% 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.button {
    width: 25%;
    min-width: 150px;
    padding: 18px 30px;
    text-align: center;
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.3),
        0 0 20px rgba(255, 69, 0, 0.4);
    letter-spacing: 1.2px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.button:hover {
    background: linear-gradient(45deg, #ffae42, #ff5733);
    transform: scale(1.1);
    box-shadow: 0 0 18px rgba(255, 165, 0, 1),
        0 0 30px rgba(255, 69, 0, 0.7);

}

@keyframes fireGlow {
    0% {
        box-shadow: 0 0 12px rgba(255, 140, 0, 0.6), 0 0 20px rgba(255, 69, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 18px rgba(255, 165, 0, 1), 0 0 30px rgba(255, 69, 0, 0.6);
    }

    100% {
        box-shadow: 0 0 12px rgba(255, 140, 0, 0.6), 0 0 20px rgba(255, 69, 0, 0.4);
    }
}

.button {
    animation: fireGlow 2s infinite alternate;
}

.button:active {
    transform: scale(0.95);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Button End */



/* Banner */
.banner {
    width: 40%;
    margin: auto;
    position: relative;
}

.banner img {
    width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.8),
        0 0 40px rgba(255, 69, 0, 0.6),
        0 0 60px rgba(255, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.banner img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 165, 0, 1),
        0 0 50px rgba(255, 69, 0, 0.8),
        0 0 70px rgba(255, 0, 0, 0.6);
}

/* Banner End */

/* Features Start*/
.features {
    text-align: center;
    padding: 40px 20px;
    background-color: #111;
}

.features h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #ff6f00;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.feature-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #222;
    padding: 30px;
    border-radius: 12px;
    width: 280px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 140, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.2);
}

.feature-card:hover {
    background-color: #333;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.6);
}

.feature-card h4 {
    font-size: 22px;
    color: #ff6f00;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}

.feature-card p {
    font-size: 16px;
    color: #bbb;
    line-height: 1.5;
}

/* Feature End */

/* Footer Start */
.footer {
    background-color: #111;
    /* Warna lebih gelap agar sesuai dengan tema */
    padding: 25px;
    text-align: center;
    margin-top: 40px;
    border-top: 2px solid rgba(255, 140, 0, 0.3);
    /* Garis atas dengan efek glow */
    box-shadow: 0 -5px 15px rgba(255, 140, 0, 0.2);
    /* Efek glow di bagian atas */
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    display: inline;
    margin: 0 20px;
    /* Sedikit lebih besar untuk jarak antar item */
}

.footer a {
    color: #ddd;
    /* Warna teks lebih lembut */
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.footer a:hover {
    color: #ff6f00;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.8);
    /* Efek glow saat hover */
}

/* Footer End */

/* Sosmed Start*/
.sosmed {
    width: fit-content;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    background: rgba(30, 30, 30, 0.8);
    /* Warna lebih gelap agar ikon lebih menonjol */
    box-shadow: 0px 0px 15px rgba(255, 140, 0, 0.5);
    /* Glow oranye lembut */
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}

.sosmed:hover {
    box-shadow: 0px 0px 20px rgba(255, 140, 0, 0.8);
    /* Glow lebih intens saat hover */
}

.sosmed a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 0, 0.2);
    /* Efek semi-transparan */
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.sosmed a:hover {
    background: rgba(255, 140, 0, 0.5);
    /* Lebih terang saat hover */
    box-shadow: 0px 0px 10px rgba(255, 140, 0, 0.7);
}

.sosmed img {
    width: 70%;
    transition: transform 0.3s ease-in-out;
}

.sosmed a:hover img {
    transform: scale(1.1);
    /* Efek membesar saat hover */
}

/* Sosmed End */

@media (max-width: 1020px) {
    .button_container {
        gap: 10px;
    }

    .banner {
        width: 90%;
        max-width: 600px;
        margin-bottom: 40px;
    }

}

@media (max-width: 768px) {
    .button {
        width: 40%;
        font-size: 1em;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .button {
        width: 60%;
        font-size: 0.9em;
        padding: 10px 12px;
    }
}