/* Base Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.head-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head-container h2 {
    margin-right: 5px;
    color: #f4f4f4;
}

.myOptions {
    color: wheat;
    font-weight: 700;
}


/* Container Styling */
.quiz-container {
    max-width: 600px;
    margin: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.quiz-container:hover {
    box-shadow: 0 6px 35px rgba(0, 0, 0, 0.2);
}

/* Header Styling */
h2 {
    font-size: 2em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    margin-left: 6rem;
}

/* Horizontal Rule Styling */
hr {
    opacity: 0.3;
    margin-bottom: 20px;
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #00d2ff, transparent);
}

/* Question Styling */
.question-container {
    margin-bottom: 20px;
}

.question {
    font-weight: 500;
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #f4f4f4;
}

/* Input and Label Styling */
input[type="radio"] {
    margin-right: 10px;
    accent-color: #00d2ff;
    transform: scale(1.2);
}

label {
    color: #ffffff;
    font-size: 1.1em;
}

/* Button Styling */
button {
    padding: 10px 20px;
    background: rgba(47, 22, 22, 0.2);
    color: #00d2ff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

/* Badge Styling */
.badge {
    width: 60px;
    background-color: #8f9293;
    color: #fff;
    border-radius: 12px;
    padding: 5px 10px;
    font-size: 0.9em;
    text-align: center;
    align-items: center;
    margin-bottom: 10px;
}

/* Button Group Styling */
.btns {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

/* Score Display Styling */
.scores {
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 25px;
    border-radius: 20px;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    line-height: 25px;
    margin-bottom: 20px;
    color: #00d2ff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Disabled Button Styling */
.no-pointer {
    cursor: default !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: #00d2ff !important;
}

.no-pointer:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #00d2ff !important;
}

/* Responsive Design */
@media (max-width: 600px) {
    .quiz-container {
        padding: 15px;
    }

    h2 {
        font-size: 1.5em;
    }

    button {
        width: 100%;
        padding: 10px;
        font-size: 0.9em;
    }

    .btns {
        flex-direction: column;
        gap: 10px;
    }
}
