body {
    font-family: 'Arial', sans-serif;
    background: url('https://upload.wikimedia.org/wikipedia/commons/4/42/Football_in_Bloomington%2C_Indiana%2C_1995.jpg') no-repeat center center fixed; 
    background-size: cover; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
}

h1 {
    text-align: center;
    color: #ffcc33;
    font-size: 4em;
    margin-top: 50px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.8);
}

p.motivation-text {
    text-align: center;
    font-size: 1.3em;
    padding: 10px 30px;
    line-height: 1.8;
    color: #fff;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: inline-block;
}

.quiz-container {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border: 3px solid #ffcc33;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.question {
    background-color: rgba(50, 50, 50, 0.8);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #ffcc33;
}

label {
    display: block;
    font-size: 1.2em;
    color: #ffcc33; 
    margin-bottom: 10px;
}

input[type="radio"] {
    margin-right: 10px;
    accent-color: #ffcc33; 
}

input[type="radio"]:checked {
    background-color: #ffcc33;
}

input[type="radio"]:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 204, 51, 0.8); 
}

button.submit-button {
    padding: 20px 40px; 
    background-color: #ff5733; 
    border: none;
    border-radius: 10px; 
    color: #fff;
    font-size: 1.7em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s; 
    margin-top: 30px;
    width: auto;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

button.submit-button:hover {
    background-color: #e03d10;
    transform: scale(1.05);
}


.results-container {
    display: none;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffcc33;
}

.results {
    display: none;
    animation: fadeIn 1s ease-out;
}

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

.results img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    border: 3px solid #ffcc33;
}

.results h2 {
    color: #ffcc33; 
    font-size: 2.5em;
    margin-top: 20px;
}

.results p {
    color: #fff;
    font-size: 1.3em;
    line-height: 1.8;
    max-width: 600px;
    margin: 20px auto;
}


#incomplete {
    font-size: 1.5em;
    color: #ffcc33;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
}


@media (max-width: 768px) {
    .quiz-container {
        padding: 20px;
        margin-top: 30px;
    }

    h1 {
        font-size: 2.5em;
    }

    .question {
        padding: 10px;
    }

    .results h2 {
        font-size: 2em;
    }

    .results p {
        font-size: 1.1em;
    }

    button.submit-button {
        padding: 15px 30px; 
        font-size: 1.5em;
    }
}