:root {
    /* --- 🎨 PALETTE: KITCHEN LAB --- */
    --bg-main: #ffffff;
    --bg-off: #f5f5f7;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-dark: rgba(20, 20, 30, 0.6); /* Für Dark Mode Elemente */
    
    /* Tech (The Shell) */
    --tech-blue: #2E86AB;
    --tech-cyan: #00F0FF;
    --tech-dark: #0a0a0f;

    /* Taste (The Soul) */
    --saffron: #FF9933;
    --chili: #FF4136;
    --basil: #00ff9d; /* Strainverse Link */

    /* Text */
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --text-light: #ffffff;

    /* Spacing & Radius */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-neon: 0 0 20px rgba(0, 240, 255, 0.3);
    --shadow-saffron: 0 0 20px rgba(255, 153, 51, 0.4);
}

body {
    background-color: var(--bg-off);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-top: 0;
}

/* --- 🧩 COMPONENTS --- */

/* Header */
.rr-header {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rr-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
}

.rr-logo img {
    height: 40px;
}

.rr-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.rr-wordmark-top {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--tech-blue);
}

.rr-wordmark-bottom {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--saffron);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at 50% 50%, rgba(46, 134, 171, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    padding: 2rem;
}

.hero-badge {
    background: rgba(46, 134, 171, 0.1);
    color: var(--tech-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(46, 134, 171, 0.2);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--tech-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-main {
    background: var(--saffron);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-saffron);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 153, 51, 0.6);
}

/* Character Cards */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.char-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.char-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.char-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-off);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 3px solid var(--tech-blue);
}

.char-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.char-role {
    color: var(--tech-blue);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.char-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Recipe Comic Strip Placeholder */
.comic-section {
    padding: 4rem 2rem;
    background: white;
}

.comic-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    color: var(--saffron);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.comic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.comic-panel {
    aspect-ratio: 1/1;
    background: var(--bg-off);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    border: 2px dashed rgba(0,0,0,0.1);
}

/* Cooking Mode Overlay */
.cooking-mode-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .comic-grid {
        grid-template-columns: 1fr 1fr;
    }
}
