/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #2e2e2e, #1a1a1a);
    color: #fff;
    position: relative;
}

/* Efek Blur */
.blur-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: -1;
}

/* Animasi Fade-in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Kontainer Utama */
.container {
    text-align: center;
    animation: fadeInUp 1.5s ease-in-out;
    padding: 60px;
    width: auto;
}

/* Logo */
.logo {
    width: 150px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

/* Judul */
.title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #f76b42;
    position: relative;
    letter-spacing: 4px;
}

.title::after {
    content: "";
    display: block;
    width: 220px;
    height: 6px;
    background-color: #f76b42;
    margin: 10px auto 0;
}

/* Subjudul */
.subtitle {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Petunjuk */
.instructions {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 2rem;
    margin-left: 20%;
    margin-right: 20%;
    text-align: left;
}

.instructions h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f76b42;
}

.instructions ol {
    padding-left: 20px;
}

.instructions li {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Tombol */
.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    background-color: #f76b42;
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn:hover {
    background-color: #ff855c;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

/* Responsif */
@media (max-width: 768px) {
    .title {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.6rem 1.8rem;
    }

    .instructions h1 {
        font-size: 1.5rem;
    }

    .instructions{
        margin-left: 0%;
        margin-right: 0%;
    }

    .instructions li {
        font-size: 0.9rem;
    }
}