        :root {
            --primary-color: #e74c3c;
            --secondary-color: #f39c12;
            --accent-color: #c0392b;
            --light-bg: #f9f5f2;
            --text-color: #333;
            --text-muted: #7f8c8d;
            --success-color: #27ae60;
            --warning-color: #f39c12;
            --danger-color: #c0392b;
        }
 
        .page-header {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.7) 0%, rgba(243, 156, 18, 0.7) 100%);
            padding: 2.5rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(192, 57, 43, 0.2);
            position: relative;
            overflow: hidden;
      //      text-align: center;
            color: white;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2); 
            background-size: cover;
            background-position: center;
        }
        
        .page-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(231, 76, 60, 0.6);
        }
      
        /* Result Display */
        .result-container {
            background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
            border-radius: 10px;
            padding: 2rem;
            margin-top: 1.5rem;
            text-align: center;
            border: 1px solid #eaeaea;
        }
        
        .result-value {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        
        .result-label {
            font-size: 1.25rem;
            color: var(--text-muted);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #fff8e1;
            border-left: 4px solid var(--warning-color);
            padding: 1rem;
            margin-top: 1.5rem;
            border-radius: 4px;
        }
        
        .disclaimer-title {
            font-weight: 600;
            color: var(--warning-color);
            margin-bottom: 0.5rem;
        }
        
        /* Cooking Tips */
        .tip-card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            border-left: 3px solid var(--secondary-color);
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            margin-bottom: 1rem;
        }
        
        .tip-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--secondary-color);
        }
        
        /* Timer */
        .timer-container {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid #eaeaea;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        
        .timer-display {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 1rem 0;
        }
        
        .timer-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        /* Guide Cards */
        .guide-container {
 
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .guide-card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom:1.5rem;
            border-left: 3px solid var(--primary-color);
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        
        .guide-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .guide-icon {
            font-size: 1.5rem;
            margin-right: 0.75rem;
            color: var(--primary-color);
        }
        
        .guide-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin: 1rem 0;
        }
        
        /* Popular Recipes */
        .recipe-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            transition: all 0.3s;
            margin-bottom: 1rem;
        }
        
        .recipe-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .recipe-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        
        .recipe-body {
            padding: 1rem;
        }
        
        .recipe-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-color);
        }
        
        .recipe-time {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        /* Doneness Guide */
        .doneness-indicator {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: inline-block;
            margin-right: 0.5rem;
        }
        
        .rare { background-color: #e74c3c; }
        .medium-rare { background-color: #e67e22; }
        .medium { background-color: #f1c40f; }
        .medium-well { background-color: #d35400; }
        .well-done { background-color: #7f8c8d; }
        
        /* Responsive Adjustments */
        @media (max-width: 767px) {
            .result-value {
                font-size: 2.5rem;
            }
            
            .timer-display {
                font-size: 2.5rem;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
    