

@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap'); 

body {
    background: url('/assets/img/background.jpg') no-repeat center center fixed; 
    background-size: cover;
    position: relative;
    font-family: 'VT323', monospace; 
    font-size: 20px;
    text-align: center;
    color: white;
}


body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.0); 
    z-index: -1; 
}


.quiz-header {
    position: absolute;
    top: 10px;
    left: 10px;
}

.quiz-logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0px 0px 10px #000000);
}


.timer-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.arcade-timer {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ffcc00, #ff3300);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
    box-shadow: 0px 0px 15px #ff3300;
    animation: pulse 1s infinite alternate;
}




.quiz-table {
    width: 100%;
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #ffcc00;
}

.quiz-table th, .quiz-table td {
    padding: 10px;
    text-align: center;
}


.quiz-card {
    background: linear-gradient(135deg, #00e1ff, #0008ff);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 20px #ff00bf;
    animation: pulse 1s infinite alternate;
}


.quiz-correct {
    color: #00ff00;
    font-weight: bold;
    text-shadow: 0px 0px 10px #00ff00;
}


.quiz-wrong {
    color: #ff0000;
    font-weight: bold;
    text-shadow: 0px 0px 10px #ff0000;
}


.quiz-btn, .quiz-submit-btn {
    padding: 10px;
    font-size: 18px;
    background: linear-gradient(45deg, #ff9900, #ff3300);
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0px 0px 15px #ff9900;
    transition: transform 0.2s;
}

.quiz-btn:hover, .quiz-submit-btn:hover {
    background: linear-gradient(45deg, #ff6600, #ff1100);
    transform: scale(1.1);
}
