@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;700&family=Georgia:ital,wght@0,400;0,700;1,400&display=swap');

body {
    font-family: 'Fira Code', monospace;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.recipe-content {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    background: #fdf6e3;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Blinking cursor animation */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.animate-pulse {
    animation: blink 1s infinite;
}

/* Terminal-style scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00ffff;
}

/* Loading animation for status messages */
.status-message {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Retro terminal glow effect */
.border-green-400 {
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.border-cyan-400 {
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.border-yellow-400 {
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.3);
}

.border-amber-400 {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Recipe card styling */
.recipe-card {
    background: linear-gradient(145deg, #fdf6e3, #f7f3d0);
    border: 2px solid #d4b070;
    border-radius: 12px;
    position: relative;
}

.recipe-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d4b070, #f7f3d0, #d4b070);
    border-radius: 14px;
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .lg\:col-span-2 {
        grid-column: span 1;
    }
}