/* Global Styles */
:root {
    --primary-color: #4a6da7;
    --secondary-color: #8a4baf;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --accent-color: #ff6b6b;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --fun-gradient: linear-gradient(135deg, #ff7e5f, #feb47b);
    --confetti-gradient: linear-gradient(45deg, #f83600, #fe8c00, #f9d423, #00b09b, #96c93d, #09c6f9);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: #f5f7fa;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--gradient);
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 2rem;
}

h1 i {
    margin-right: 0.5rem;
}

main {
    flex: 1;
}

footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    color: #777;
    font-size: 0.8rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    outline: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #3a5a8e;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Screens */
.screen {
    display: none;
    padding: 1rem;
}

.screen.active {
    display: block;
}

/* Welcome Screen */
.welcome-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.welcome-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.welcome-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Menu de seleção de jogos */
.game-selection {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.game-option {
    background: white;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 2rem;
    width: 220px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.game-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.game-option.selected {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.game-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.game-option h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.game-option p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Tela de configuração */
.setup-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.setup-options {
    margin: 2rem 0;
}

.setup-option {
    margin-bottom: 1.5rem;
}

.setup-option label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.checkbox-option {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-option label {
    display: inline;
    margin-bottom: 0;
    cursor: pointer;
}

.setup-option select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 5px;
    border: 2px solid #eee;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
}

.setup-option select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-secondary {
    background: #f0f4f8;
    color: var(--dark-color);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: #e0e4e8;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

/* Lobby Screen */
.game-code {
    text-align: center;
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.code-display {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 5px;
    margin: 1rem 0;
    color: var(--primary-color);
}

.url-display {
    background: #f0f4f8;
    padding: 0.75rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.player-list {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.player-list h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.player-list ul {
    list-style: none;
    margin-bottom: 1rem;
}

.player-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f0f4f8;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.player-list li i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.player-count {
    font-weight: bold;
    text-align: right;
}

.controls {
    text-align: center;
}

/* Game Screen */
.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.round-info {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hymn-display {
    margin-bottom: 2rem;
}

.hymn-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.hymn-card-inner {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hymn-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.hymn-number-display {
    position: relative;
}

.hymn-number-badge {
    background: var(--fun-gradient);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    transform-origin: center;
    transition: all 0.3s;
}

.hymn-number-badge.animated {
    animation: popIn 0.5s ease-out;
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hymn-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hymn-excerpt {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    padding: 1rem;
    background: #f0f4f8;
    border-radius: 10px;
}

.player-answers {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.player-answers h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.answer-item {
    background-color: white;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeIn 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.answer-item.correct {
    background: rgba(40, 167, 69, 0.2);
}

.answer-item.incorrect {
    background: rgba(220, 53, 69, 0.1);
}

.answer-reveal {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    text-align: center;
    animation: fadeIn 0.5s ease;
    position: relative;
    overflow: hidden;
}

.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--confetti-gradient);
    border-radius: 0;
    opacity: 0.8;
    animation: confetti-fall 4s ease-in-out infinite;
}

.confetti:nth-child(1) { left: 10%; animation-delay: 0s; transform: rotate(0deg); }
.confetti:nth-child(2) { left: 20%; animation-delay: 0.2s; transform: rotate(45deg); }
.confetti:nth-child(3) { left: 30%; animation-delay: 0.4s; transform: rotate(90deg); }
.confetti:nth-child(4) { left: 40%; animation-delay: 0.6s; transform: rotate(135deg); }
.confetti:nth-child(5) { left: 50%; animation-delay: 0.8s; transform: rotate(180deg); }
.confetti:nth-child(6) { left: 60%; animation-delay: 1s; transform: rotate(225deg); }
.confetti:nth-child(7) { left: 70%; animation-delay: 1.2s; transform: rotate(270deg); }
.confetti:nth-child(8) { left: 80%; animation-delay: 1.4s; transform: rotate(315deg); }
.confetti:nth-child(9) { left: 90%; animation-delay: 1.6s; transform: rotate(360deg); }
.confetti:nth-child(10) { left: 15%; animation-delay: 1.8s; transform: rotate(45deg); }

@keyframes confetti-fall {
    0% { top: -10%; transform: rotate(0) scale(1); }
    25% { transform: rotate(180deg) scale(1.5); }
    50% { transform: rotate(360deg) scale(1); }
    75% { transform: rotate(540deg) scale(1.5); }
    100% { top: 110%; transform: rotate(720deg) scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.correct-answer h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.correct-hymn-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.correct-answer p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--success-color);
    margin: 0;
}

.hymn-number-big {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    background: var(--fun-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem 2rem;
    border: 3px dashed var(--warning-color);
    border-radius: 15px;
    animation: bounce 1s ease-in-out infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

/* Results Screen */
.winner-display {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.winner-crown {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 1rem;
}

.winner-name {
    font-size: 2rem;
    margin: 0.5rem 0;
    color: var(--primary-color);
}

.winner-score {
    font-size: 1.5rem;
    font-weight: bold;
}

.results-list {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.results-list h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f0f4f8;
    border-radius: 5px;
}

.result-rank {
    font-weight: bold;
    margin-right: 0.5rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
}

.result-name {
    flex: 1;
}

.result-score {
    font-weight: bold;
}

/* Player Mobile Styles */
.player-screen {
    background: var(--gradient);
    color: white;
}

.player-screen .container {
    max-width: 500px;
}

.player-screen header {
    background: rgba(255, 255, 255, 0.1);
}

.join-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #333;
}

.join-form h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--dark-color);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.error-message {
    color: var(--danger-color);
    margin-top: 1rem;
    font-weight: bold;
    text-align: center;
    display: none;
}

.waiting-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    margin: 1rem auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.player-screen .game-screen {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.answer-form {
    text-align: center;
    margin-bottom: 2rem;
}

.answer-form h3 {
    margin-bottom: 1.5rem;
}

.timer {
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 2rem;
}

.timer-bar {
    height: 100%;
    background: white;
    width: 100%;
    animation: timer 30s linear;
}

@keyframes timer {
    from { width: 100%; }
    to { width: 0%; }
}

.answer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.answer-item.correct {
    background: rgba(40, 167, 69, 0.2);
    border-left: 5px solid var(--success-color);
}

.answer-item.incorrect {
    background: rgba(220, 53, 69, 0.1);
    border-left: 5px solid var(--danger-color);
}

.answer-item.pending {
    background: rgba(248, 249, 250, 0.9);
    border-left: 5px solid var(--warning-color);
}

.answer-icon.pending {
    color: var(--warning-color);
    opacity: 0.8;
}

.player-answer.oculto {
    font-style: italic;
    color: #888;
    background-color: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px dashed var(--warning-color);
}

@keyframes revealAnswer {
    0% { transform: translateY(-10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.answer-revealed {
    animation: revealAnswer 0.5s ease-out forwards;
}

/* Estilos para o modo Áudio */
.audio-display {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.audio-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.audio-card-inner {
    padding: 2rem;
}

.audio-header {
    text-align: center;
    margin-bottom: 2rem;
}

.audio-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.audio-player-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.audio-player-container audio {
    width: 100%;
    max-width: 400px;
}

.audio-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.audio-controls button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.feedback {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: none;
}

.feedback.correct {
    background: rgba(40, 167, 69, 0.2);
    border: 2px solid var(--success-color);
}

.feedback.incorrect {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid var(--danger-color);
}

.feedback-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.correct .feedback-icon {
    color: var(--success-color);
}

.incorrect .feedback-icon {
    color: var(--danger-color);
}

.correct-answer-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.waiting-next {
    text-align: center;
    margin-top: 2rem;
}

.waiting-message {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 2rem;
}

/* Animação de nova rodada */
@keyframes roundHighlight {
    0% { background-color: rgba(255, 215, 0, 0.3); }
    50% { background-color: rgba(255, 215, 0, 0.5); }
    100% { background-color: rgba(255, 255, 255, 0); }
}

.new-round-highlight {
    animation: roundHighlight 1s ease-out;
}

.player-position {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
}

.position-display {
    font-size: 1.5rem;
    margin-top: 1rem;
}

#player-rank {
    font-weight: bold;
    margin-right: 1rem;
}

.player-name {
    font-weight: bold;
    margin-right: 10px;
}

.player-answer {
    font-style: italic;
    color: var(--dark-color);
    margin-right: auto;
}

/* Estilos para informações de tempo de resposta */
.response-time {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-top: 5px;
}

.time-bonus {
    background-color: rgba(72, 187, 120, 0.2);
    color: #48bb78;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .host-screen {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .hymn-excerpt {
        font-size: 1.2rem;
    }
    
    .code-display {
        font-size: 2rem;
    }
}

/* Estilos para o modo de múltipla escolha */
.multiple-choice .options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    width: 100%;
}

.option-button {
    background-color: #333;
    color: #fff;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.option-button:hover {
    background-color: #444;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.option-button.selected {
    background-color: #2c5282;
    border-color: #4299e1;
    color: white;
}

.option-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Estilos para o campo de digitação em perguntas de completar frase */
.fill-blank-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.fill-blank-input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #444;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.fill-blank-input:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.3);
}

.submit-fill-blank-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    background-color: #2c5282;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-fill-blank-btn:hover {
    background-color: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-fill-blank-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Estilos para exibir a resposta correta no modo de múltipla escolha */
.correct-answer-info {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
}

.correct-answer-info .question {
    font-size: 18px;
    color: #eee;
    margin-bottom: 10px;
}

.correct-answer-info .correct-option {
    font-size: 20px;
    font-weight: bold;
    color: #48bb78;
    padding: 10px;
    border-radius: 8px;
    background-color: rgba(72, 187, 120, 0.2);
    border: 1px solid #48bb78;
}

/* Estilos para a tela do host - Resposta correta no modo múltipla escolha */
.correct-question-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.correct-question-info .question {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 15px;
}

.correct-question-info .correct-option {
    background: rgba(72, 187, 120, 0.2);
    color: #48bb78;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.3rem;
    font-weight: bold;
    border: 1px solid #48bb78;
    display: inline-block;
    margin-top: 10px;
}

/* Estilos para a exibição de perguntas na tela do host */
.question-display {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 20px;
}

.question-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.question-card-inner {
    padding: 20px;
}

.question-header {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.question-header h3 {
    margin: 0;
    color: #4299e1;
    font-size: 1.2rem;
}

.question-text {
    font-size: 1.5rem;
    color: #fff;
    padding: 15px;
    min-height: 80px;
    text-align: center;
    line-height: 1.5;
}
