* {
    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: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

header {
    width: 15%;
    text-align: center;
    margin-bottom: 30px;
}

header img {
    width: 100%;
}

.glass-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    max-width: 500px;
}

h1 {
    font-size: 38px;
    color: #d4af37;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

.logdaf {
    width: 100%;
}

.cta-button {
    width: 42%;
    padding: 15px 0px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    background-color: #d4af37;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
    margin: 0% 0.5%;
}

.cta-button:hover {
    background-color: #b38b2c;
}

footer {
    margin-top: 30px;
    font-size: 14px;
    color: #d4af37;
}

.sosmed {
    width: 45%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 15px;

}

.sosmed a {
    width: 100%;
}

.sosmed img {
    width: 100%;
}

@media screen and (max-width: 1020px) {
    header {
        width: 80%;
        max-width: 200px;
        text-align: center;
    }

    .cta-button {
        width: 45%;

    }

    .sosmed {
        width: 70%;
        max-width: 150px;


    }

    .sosmed a {
        width: 100%;
    }

    .sosmed img {
        width: 100%;
    }

}