/* Import Font Modern */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    /* Background Gradient Animasi */
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.quiz-container {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    width: 100%;
    max-width: 500px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
}

.quiz-container:hover {
    transform: translateY(-5px);
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

#quiz-box {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
}

h5 {
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

ul {
    list-style: none;
}

li {
    margin-bottom: 12px;
}

li a {
    display: block;
    text-decoration: none;
    color: #2b2d42;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Icon Panah Kecil setelah Teks */
li a::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

li a:hover {
    background: #23a6d5;
    color: white;
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

li a:hover::after {
    transform: translateX(5px);
}

/* Responsif Layar HP */
@media (max-width: 480px) {
    .quiz-container {
        padding: 25px 20px;
    }

    h1 {
        font-size: 1.4rem;
    }

    li a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}