* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: "Segoe UI", sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    color: white;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

.content {
    text-align: center;
    margin: 60px auto;
    animation: fadeIn 2s ease;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.anime-title {
    font-size: 2.5em;
    color: #ffd700;
    margin-bottom: 10px;
    animation: slideUp 1s ease-out;
}

.desc {
    font-size: 1.2em;
    margin-bottom: 20px;
    animation: slideUp 1.3s ease-out;
}

.features ul {
    list-style: none;
    margin-bottom: 20px;
    animation: slideUp 1.6s ease-out;
}

.features li {
    margin: 10px 0;
    font-size: 1em;
}

.btn {
    background: #ff5e5e;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: 0.3s;
    animation: slideUp 2s ease-out;
}

.btn:hover {
    background: #ff2e2e;
}

.harga {
    margin-top: 15px;
    font-size: 0.9em;
    color: #ccc;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 500px) {
    .anime-title {
        font-size: 1.8em;
    }

    .desc {
        font-size: 1em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}

footer {
    color: #ccc;
    margin: 60px auto;
    text-align: center;
    padding: 20px;
}

.footer2 {
    text-align: center;
    margin: 5px auto;
    animation: fadeIn 2s ease;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 20px;

}
.socials a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.socials a:hover {
    color: #00ffae;
}

.credit {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #ccc;
}

#loading {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.1);
    border-top: 8px solid #ffd700;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
