/* Sci-Fi-inspiriertes Stylesheet */
:root {
    --primary-color: #0a0e2a;
    --secondary-color: #00d4ff;
    --accent-color: #ff00cc;
    --background-color: #050a20;
    --text-color: #e0e0e0;
    --card-background: #0d1433;
    --border-glow: 0 0 10px rgba(0, 212, 255, 0.5);
    --font-main: 'Orbitron', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--background-color);
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 30%),
                      radial-gradient(circle at 90% 80%, rgba(255, 0, 204, 0.1) 0%, transparent 30%);
}

header {
    background: linear-gradient(90deg, var(--primary-color), rgba(0, 212, 255, 0.2));
    color: var(--text-color);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--border-glow);
    border-bottom: 1px solid var(--secondary-color);
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 0 8px var(--secondary-color);
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.recipe-section {
    background-color: var(--card-background);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--border-glow);
    border: 1px solid var(--secondary-color);
    backdrop-filter: blur(5px);
}

.recipe-section h2 {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recipe-section ul {
    list-style-type: none;
    padding: 0;
}

.recipe-section li {
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background-color: rgba(13, 20, 51, 0.6);
    border-radius: 4px;
    transition: all 0.3s ease;
    border-left: 2px solid var(--accent-color);
}

.recipe-section li:hover {
    background-color: rgba(0, 212, 255, 0.1);
    transform: translateX(5px);
}

.recipe-section a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.recipe-section a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-color);
    color: var(--text-color);
    margin-top: 2rem;
    border-top: 1px solid var(--secondary-color);
}

.recipe-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: var(--border-glow);
    border: 1px solid var(--secondary-color);
}

.recipe-page h1 {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recipe-page img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--border-glow);
    border: 1px solid var(--accent-color);
    filter: drop-shadow(0 0 5px var(--accent-color));
}

.recipe-page h2 {
    color: var(--accent-color);
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recipe-page ul, .recipe-page ol {
    padding-left: 1.5rem;
}

.recipe-page li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: 2px solid var(--secondary-color);
}

/* Animation für interaktive Elemente */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba

