* {
    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;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 40px;
    max-width: 500px;
    width: 100%;
}

h1 {
    text-align: center;
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.suggestion-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredient-display {
    text-align: center;
    width: 100%;
}

.combo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ingredient-item {
    flex: 1;
}

.ingredient-display .placeholder {
    color: #999;
    font-size: 18px;
}

.ingredient-display p {
    font-size: 48px;
    font-weight: bold;
    color: #667eea;
    animation: fadeIn 0.5s ease-in-out;
}

.ingredient-display .plus {
    font-size: 28px;
    font-weight: bold;
    color: #667eea;
    margin: 0 10px;
}

.ingredient-display .ingredient-name {
    font-size: 32px;
    color: #333;
    margin: 10px 0;
    font-weight: 600;
}

.ingredient-display .emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 10px;
}

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

.suggest-button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.suggest-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.suggest-button:active {
    transform: translateY(0);
}

.suggestion-list {
    border-top: 2px solid #e0e0e0;
    padding-top: 20px;
}

.suggestion-list h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.suggestion-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.suggestion-list li {
    background: #f5f5f5;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    color: #555;
    font-size: 14px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.suggestion-list li:hover {
    background: #667eea;
    color: white;
    border-left-color: #764ba2;
}

@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 24px;
    }

    .ingredient-display p {
        font-size: 36px;
    }

    .ingredient-display .emoji {
        font-size: 48px;
    }

    .suggestion-list ul {
        grid-template-columns: 1fr;
    }
}
