body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #faf3f0;
            padding: 2rem;
            color: #5e5e5e;
        }
        
        h1 {
            text-align: center;
            color: #a5b4cb;
            margin-bottom: 2rem;
            font-size: 2.5rem;
        }
        
        .recipes-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .recipe-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            height: 400px;
        }
        
        .recipe-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .recipe-image {
            height: 200px;
            width: 100%;
            object-fit: cover;
            border-bottom: 3px solid #d4e1f2;
        }
        
        .recipe-content {
            padding: 1.5rem;
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .recipe-name {
            margin: 0 0 0.5rem 0;
            color: #88a3c9;
            font-size: 1.4rem;
        }
        
        .recipe-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .recipe-meta span {
            background-color: #e8f0f7;
            padding: 0.3rem 0.6rem;
            border-radius: 20px;
            color: #6a8cb8;
        }
        
        .recipe-description {
            font-size: 0.95rem;
            line-height: 1.5;
             margin-bottom: 1rem;
            color: #7a7a7a;
        }
        
        .ingredients-container {
            position: absolute;
            bottom: -100%;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #f5e6f8, #e6f8f5);
            padding: 1.5rem;
            height: 200px;
            transition: bottom 0.5s ease;
            overflow-y: auto;
            border-top: 2px solid #d4e1f2;
        }
        
        .recipe-card:hover .ingredients-container {
            bottom: 0;
        }
        
        .ingredients-title {
            color: #88a3c9;
            margin-top: 0;
            font-size: 1.2rem;
            border-bottom: 1px dashed #c2d4eb;
            padding-bottom: 0.5rem;
        }
        
        .ingredients-list {
            columns: 2;
            column-gap: 1rem;
            padding: 0;
            margin: 0;
        }
        
          .ingredients-list li {
            list-style-type: none;
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.2rem;
            font-size: 0.9rem;
            color: #6a8cb8;
        }
        
        .ingredients-list li:before {
            content: "•";
            color: #a5b4cb;
            position: absolute;
            left: 0;
        }
        
        @media (max-width: 768px) {
            .recipes-container {
                grid-template-columns: 1fr;
            }
        }