/* Reset & Pengaturan Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    background-color: #121212;
    background-image: url('https://images.unsplash.com/photo-1613376023733-0a73375d8628?q=80&w=1974'); /* Ganti dengan gambar latar anime yang Anda suka */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 1) 10%, rgba(18, 18, 18, 0.7) 50%, rgba(18, 18, 18, 1) 90%);
    z-index: 1;
}

/* Konten Utama */
.hero-section {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.hero-content .logo {
    font-size: 3rem;
    font-weight: 700;
    color: #8A2BE2; /* Warna ungu khas anime/gaming */
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-content p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Tombol */
.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Agar tombol tidak berantakan di layar kecil */
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: #8A2BE2;
    color: white;
}
.btn-primary:hover {
    background-color: #7d26cc;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Popup / Modal */
.modal {
    display: none; /* Awalnya disembunyikan */
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #2a2a2a;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #444;
    width: 90%;
    max-width: 450px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.5s;
}

.modal-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #8A2BE2;
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-button:hover,
.close-button:focus {
    color: #fff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    color: #888;
}

/* Media Query untuk Mobile */
@media (max-width: 768px) {
    .hero-content .logo {
        font-size: 2.5rem;
    }
    .hero-content h2 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}
