/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0f172a;
    color: white;
    overflow-x: hidden;
}

/* BACKGROUND */
.bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.warna {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 40%, #1e293b 100%);
    opacity: 0.95;
}

/* HEADER */
header {
    display: flex;
    justify-content: flex-end;
    padding: 20px 40px;
}

.share-box img {
    width: 45px;
    cursor: pointer;
    transition: 0.3s ease;
}

.share-box img:hover {
    transform: scale(1.15) rotate(10deg);
}

/* ALERT SHARE */
.share-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #22c55e;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
    animation: fadeIn 0.5s ease;
}

/* MAIN */
main {
    text-align: center;
    margin-top: 100px;
}

.animated-title span {
    font-size: 60px;
    font-weight: bold;
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.6s ease forwards;
    color: #ffffff;
    text-shadow: 0 0 10px #00ffcc,
                 0 0 20px #00ffcc,
                 0 0 40px #00ffcc;
}

/* Delay tiap huruf */
.animated-title span:nth-child(1) { animation-delay: 0.1s; }
.animated-title span:nth-child(2) { animation-delay: 0.2s; }
.animated-title span:nth-child(3) { animation-delay: 0.3s; }
.animated-title span:nth-child(4) { animation-delay: 0.4s; }
.animated-title span:nth-child(5) { animation-delay: 0.5s; }
.animated-title span:nth-child(6) { animation-delay: 0.6s; }
.animated-title span:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background biar makin keren */
body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}


/* VERIFIED BADGE */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 8px 14px;
    border-radius: 30px;
    margin: 20px auto;
    width:15%;
    font-size: 14px;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.verified-badge .icon {
    font-weight: bold;
}

/* AKSES SITE */
.aksesite {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.tombol-aksesite {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tombol-aksesite a {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    color: white;
    transition: 0.3s ease;
}

.tombol-aksesite a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* PREDIKSI & JADWAL */
.prediksi-jadwal {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.tombol-prediksi-jadwal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tombol-prediksi-jadwal button {
    padding: 14px 26px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    color: white;
    transition: 0.3s ease;
    font-size: 14px;
}

.tombol-prediksi-jadwal button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    main h1 {
        font-size: 36px;
    }

    main h2 {
        font-size: 18px;
    }

    .tombol-aksesite,
    .tombol-prediksi-jadwal {
        flex-direction: column;
        align-items: center;
    }

    .tombol-aksesite a,
    .tombol-prediksi-jadwal button {
        width: 100%;
        text-align: center;
    }
    .verified-badge {
        width: 30%;
    }
}
