:root {
    --primary-color: #ff6b6b;
    --secondary-color: #ffa94d;
}

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero .lead {
    font-size: 1.3rem;
}

.btn-generate {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
}

.btn-generate:hover {
    transform: translateY(-3px);
    color: white;
}

.recipe-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-top: -50px;
    margin-bottom: 50px;
}

.recipe-image {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.recipe-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.recipe-content {
    padding: 40px;
}

.recipe-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.recipe-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #718096;
}

.meta-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingredient-item {
    background: #f7fafc;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    border-left: 4px solid var(--secondary-color);
}

.ingredient-amount {
    font-weight: 700;
    color: var(--primary-color);
}

.instructions-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 30px;
    border-radius: 15px;
    line-height: 1.8;
}

.kofi-prompt {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 60px 0;
    text-align: center;
    margin: 50px 0;
}

.kofi-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.btn-kofi {
    background: linear-gradient(135deg, #FF5E5B 0%, #F09819 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 94, 91, 0.3);
    transition: all 0.3s ease;
}

.btn-kofi:hover {
    transform: translateY(-3px);
    color: white;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .recipe-title {
        font-size: 1.8rem;
    }
    .recipe-image {
        height: 250px;
    }
    .recipe-content {
        padding: 25px;
    }
    .recipe-meta {
        flex-direction: column;
        gap: 15px;
    }
}