* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 500px;
    width: 90%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 40px 30px 30px;
    text-align: center;
}

.question-header h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.question-lang {
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
    margin-bottom: 35px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 15px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(240,147,251,0.3);
}

.option-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240,147,251,0.4);
}

.option-btn:active {
    transform: translateY(0);
}

.complete-screen {
    text-align: center;
    padding: 60px 40px;
}

.complete-screen h1 {
    font-size: 2em;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.complete-screen p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.restart-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.restart-btn:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px 20px;
        margin: 10px;
    }
    
    .question-header h2 {
        font-size: 1.2em;
    }
}
