:root {
    --primary-color: #d1e8e4;
    --accent-color: #f9c74f;
    --text-color: #333;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Pacifico', cursive;
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), #a8d8d3);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    text-align: center;
}

.title {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--accent-color);
    text-shadow: 
        2px 2px 0px rgba(0,0,0,0.2),
        -2px -2px 0px rgba(0,0,0,0.2),
        2px -2px 0px rgba(0,0,0,0.2),
        -2px 2px 0px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

.instruction {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.9;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.option {
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 4px 6px var(--shadow-color);
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
}

.option:nth-child(1) { animation-delay: 0.2s; }
.option:nth-child(2) { animation-delay: 0.4s; }
.option:nth-child(3) { animation-delay: 0.6s; }

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px var(--shadow-color);
}

.option-text {
    font-size: 2rem;
}

.emoji {
    font-size: 2rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalOpen 0.3s ease-out;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .content {
        padding: 1rem;
    }
    
    .option-text {
        font-size: 1.5rem;
    }
    
    .emoji {
        font-size: 1.5rem;
    }
} 