.joke-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.joke-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #ffffff;
}

.joke-answer-container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.joke-answer {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.joke-answer.revealed {
    opacity: 1;
}

.joke-answer.hidden {
    position: relative;
}

.joke-answer.hidden::after {
    content: '🤫';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

.joke-reveal-btn {
    background: #ffffff;
    color: #667eea;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.joke-reveal-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.joke-reveal-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.joke-reveal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .joke-container {
        padding: 15px;
        margin: 10px 0;
    }
    
    .joke-question {
        font-size: 16px;
    }
    
    .joke-answer {
        font-size: 15px;
    }
    
    .joke-reveal-btn {
        padding: 10px 20px;
        font-size: 15px;
        width: 100%;
    }
}
