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

body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #f0f0f0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.game-container {
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 800px;
    width: 90%;
}

.game-header {
    margin-bottom: 2rem;
}

h1 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.game-stats {
    display: flex;
    justify-content: space-around;
    font-size: 1.2rem;
    color: #666;
}

.game-mode {
    margin-bottom: 2rem;
}

.mode-btn {
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f0f0f0;
}

.mode-btn.active {
    background-color: #4ecdc4;
    color: white;
}

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

.meme-box {
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.meme-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.meme-box img:hover {
    transform: scale(1.05);
}

.options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-btn {
    padding: 1rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #333;
    transform-origin: center;
}

.option-btn:hover {
    transform: translateY(-2px) scale(1.02);
    background-color: #e9ecef;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.option-btn.correct {
    background-color: #4ecdc4;
    color: white;
    animation: correctAnswer 0.5s ease;
}

.option-btn.wrong {
    background-color: #ff6b6b;
    color: white;
    animation: wrongAnswer 0.5s ease;
}

.game-controls {
    margin-bottom: 1rem;
}

.control-btn {
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #4ecdc4;
    color: white;
}

.control-btn:hover {
    transform: translateY(-2px);
    background-color: #45b7ae;
}

.result {
    font-size: 1.5rem;
    margin-top: 1rem;
    min-height: 2rem;
    transition: all 0.3s ease;
}

.result.correct {
    color: #4ecdc4;
    animation: bounce 0.5s ease;
}

.result.wrong {
    color: #ff6b6b;
    animation: shake 0.5s ease;
}

.result.loading {
    color: #666;
    font-style: italic;
    animation: pulse 1.5s infinite;
}

.result.game-over {
    color: #333;
    font-size: 1.8rem;
    line-height: 1.4;
    animation: fadeIn 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

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

.hard-mode img {
    filter: blur(5px);
    transform: scale(1.2);
}

.creator-credit {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.credit-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

.credit-text {
    color: #666;
    font-size: 1rem;
}

.heart {
    animation: heartbeat 1.5s ease-in-out infinite;
}

.creator-name {
    color: #fd0000;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.meme-text {
    color: #ff6b6b;
    font-size: 0.9rem;
    font-style: italic;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

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