* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.container {
    text-align: center;
    margin-top: 50px;
    width: 90%;
    max-width: 600px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Score Board with Glassmorphism */
.score-board {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.score-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    min-width: 120px;
}

.score-box span {
    font-size: 3rem;
    font-weight: 600;
    display: block;
}

.score-box p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Message Area */
.result-msg {
    margin-bottom: 40px;
    min-height: 50px;
}

.result-msg h2 {
    font-size: 1.5rem;
    background-color: #081b31;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

/* Choices Buttons */
.choices {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.choice {
    height: 100px;
    width: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #1e3c72;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px rgba(0,0,0,0.3);
}

.choice:hover {
    transform: translateY(-10px);
    background: #ffcc00;
    color: #000;
    box-shadow: 0 15px 25px rgba(255, 204, 0, 0.4);
}

/* Footer Credit */
footer {
    width: 100%;
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
}

footer span {
    font-weight: bold;
    color: #ffcc00;
}

/* Mobile Responsiveness */
@media (max-width: 500px) {
    header h1 { font-size: 2rem; }
    
    .score-board { gap: 20px; }
    
    .score-box { padding: 10px 20px; min-width: 90px; }
    
    .score-box span { font-size: 2rem; }
    
    .choices { gap: 15px; }
    
    .choice { height: 80px; width: 80px; font-size: 2.2rem; }
}