/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VT323 Pixel Font – applies to all headings, logo, tagline, team names */
.nav-brand,
.hero-content h1,
.hero-tagline,
.features h2,
.features-single h2,
.feature-highlights h3,
.how-it-works h2,
.pixelart-why h2,
.draw-video-area h2,
.team-section h2,
.team-content h3,
.sponsors-section h2,
.cta-section h2,
.highlight-card h4,
.step h3,
.step-number {
    font-family: 'Press Start 2P', monospace;
    letter-spacing: 1px;
}

:root {
    --primary-color: #8B7BC8;      /* Lavendel Lila */
    --secondary-color: #6B5AB0;    /* Dunkles Lila */
    --accent-color: #FFC75F;       /* Gold/Orange */
    --success-color: #6BCB77;      /* Grün */
    --info-color: #4D96FF;         /* Blau */
    --dark-color: #2C3E50;         /* Dunkelblau */
    --light-color: #F8F9FA;        /* Hell */
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(135deg, #F5F0FF 0%, #EDE6FF 50%, #E6EEFF 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    color: #999;
    cursor: pointer;
    padding: 2px 6px;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.lang-btn:hover {
    color: var(--primary-color);
}

.lang-btn.active {
    color: var(--primary-color);
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
}

.lang-divider {
    color: #ccc;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.45rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1rem;
    font-weight: normal;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.4rem;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 40px 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e8d6ff 0%, #d4c8f5 45%, #d6e4ff 100%);
}

.hero-bg-video {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    filter: contrast(1.08) saturate(1.05);
}

.hero-overlay {
    display: none;
}

/* Mobile-only video preview – hidden on desktop */
.hero-video-preview {
    display: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2.5rem 3rem;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: normal;
    line-height: 1.3;
    margin: 0;
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 0.75rem;
    font-weight: normal;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    line-height: 2;
}

.hero-content .hero-subtitle {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    padding: 15px 40px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 20px rgba(139, 123, 200, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 123, 200, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-wrapper {
    position: relative;
    display: inline-block;
    max-width: 360px;
}

.phone-wrapper::before {
    content: '';
    position: absolute;
    inset: -60px -60px -60px -200px;
    border-radius: 60px;
    background:
        radial-gradient(ellipse at 45% 12%, rgba(255, 255, 255, 0.80) 0%, transparent 48%),
        radial-gradient(ellipse at 80% 12%, rgba(220, 210, 255, 0.70) 0%, transparent 48%),
        radial-gradient(ellipse at 30% 75%, rgba(255, 255, 255, 0.65) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 75%, rgba(200, 185, 255, 0.60) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 90%, rgba(255, 255, 255, 0.50) 0%, transparent 50%);
    filter: blur(50px);
    z-index: -1;
    animation: glowPulse 5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from { opacity: 0.75; transform: scale(0.97); }
    to   { opacity: 1;    transform: scale(1.02); }
}

.phone-wrapper video,
.hero-image img {
    max-width: 100%;
    max-height: 75vh;
    height: auto;
    display: block;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
    border-radius: 30px 30px 0 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.features h2 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
    line-height: 1.8;
}

/* Problem Section */
.problem-section {
    text-align: center;
    margin-bottom: 80px;
}

.problem-heading {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.4rem;
    color: var(--dark-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.problem-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Features Single */
.features-single {
    max-width: 900px;
    margin: 0 auto 80px;
}

.core-idea {
    background: linear-gradient(135deg, rgba(139, 123, 200, 0.08), rgba(255, 199, 95, 0.08));
    border: 2px solid rgba(139, 123, 200, 0.2);
    border-radius: 20px;
    padding: 50px;
    font-size: 1.2rem;
    line-height: 1.9;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
}

.core-idea:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 123, 200, 0.1);
}

.core-idea strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Feature Highlights */
.feature-highlights {
    margin-top: 80px;
}

.feature-highlights h3 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
    line-height: 1.8;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(139, 123, 200, 0.05), rgba(255, 199, 95, 0.05));
    border: 2px solid rgba(139, 123, 200, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 123, 200, 0.15);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.highlight-card h4 {
    font-size: 0.7rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: normal;
    line-height: 2;
}

.highlight-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: #CFE2FC;
}

.how-it-works h2 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
    line-height: 1.8;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.screenshot-placeholder {
    background: linear-gradient(135deg, rgba(139, 123, 200, 0.06), rgba(255, 199, 95, 0.06));
    border: 2px solid rgba(139, 123, 200, 0.18);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.screenshot-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

.screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
}

.concept-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(139, 123, 200, 0.88);
    color: white;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.38rem;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 1;
}

.screenshot-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.42rem;
    color: rgba(139, 123, 200, 0.7);
    letter-spacing: 1px;
    line-height: 1.6;
    text-align: center;
}

.concept-disclaimer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #3a3a4a;
    text-align: center;
    margin-top: 2rem;
    line-height: 1.7;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.step .screenshot-placeholder {
    margin-top: auto;
    width: 100%;
    height: 580px;
    background: transparent;
    border: none;
    border-radius: 0;
}

.step .screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    clip-path: inset(4% 0 4% 0);
}

.step .concept-badge {
    top: 8px;
    right: 8px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 0.7rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 2;
}

.step p {
    color: #3a3a4a;
}

.arrow {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    display: none;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-section h2 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.team-member {
    background: linear-gradient(135deg, rgba(139, 123, 200, 0.05), rgba(255, 199, 95, 0.05));
    border: 2px solid rgba(139, 123, 200, 0.1);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.team-photo-placeholder {
    width: 240px;
    height: 240px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(139, 123, 200, 0.15), rgba(255, 199, 95, 0.15));
    border: 2px dashed rgba(139, 123, 200, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.team-image {
    display: flex;
    justify-content: center;
}

.team-image img {
    width: 100%;
    max-width: 160px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(139, 123, 200, 0.2);
}

.team-content h3 {
    font-size: 1.2rem;
    font-weight: normal;
    color: var(--dark-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 2;
}

.team-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.team-role {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 1.5rem !important;
}

.team-content .btn {
    text-decoration: none;
}

/* Sponsors Section */
.sponsors-section {
    padding: 60px 0;
    background: #ffffff;
}

.sponsors-section h2 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-color);
    line-height: 1.8;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sponsor-logo img {
    max-width: 220px;
    max-height: 120px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf8ff, #f8f4fd);
    color: var(--dark-color);
    text-align: center;
    border-radius: 30px;
    margin: 60px 20px;
    border: 2px solid rgba(139, 123, 200, 0.15);
}

.cta-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 2;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

/* CTA Contact Buttons */
.cta-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-contact .btn {
    font-size: 1rem;
    padding: 15px 30px;
}

.cta-contact a.btn-primary {
    text-decoration: none;
}

.cta-contact a.btn-primary:hover {
    text-decoration: none;
}

.cta-note {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navbar: Brand + Lang nebeneinander, Links darunter */
    .navbar .container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
        font-size: 0.6rem;
    }

    .navbar {
        overflow: hidden;
    }

    .nav-brand {
        font-size: 0.75rem;
    }

    /* Hero */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        padding: 1.5rem;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        min-width: 0;
        word-break: break-word;
    }

    .hero-title-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content .hero-subtitle {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 0.45rem;
    }

    .logo-icon--hero {
        width: 70px;
        height: 70px;
    }

    .hero-title-row {
        gap: 0.5rem;
    }

    .hero-image {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Features */
    .problem-text {
        font-size: 1.1rem;
    }

    .features h2,
    .features-single h2,
    .feature-highlights h3,
    .how-it-works h2,
    .pixelart-why h2,
    .draw-video-area h2,
    .team-section h2,
    .sponsors-section h2,
    .cta-section h2 {
        font-size: 0.75rem;
    }

    .core-idea {
        padding: 25px;
        font-size: 1rem;
    }

    .highlight-card {
        padding: 25px;
    }

    /* Steps */
    .steps {
        flex-direction: column;
        align-items: center;
    }

    .arrow {
        display: none;
    }

    /* CTA */
    .cta-section {
        margin: 40px 10px;
        padding: 60px 20px;
    }

    .cta-contact {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-contact .btn {
        width: 100%;
        word-break: break-all;
        font-size: 0.75rem;
        padding: 14px 16px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
        text-align: center;
    }

    .team-image {
        justify-content: center;
    }

    .team-image img {
        max-width: 260px;
    }

    .team-content h3 {
        font-size: 0.85rem;
    }

    /* Screenshots */
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    /* Hero draw link */
    .hero-draw-link {
        font-size: 0.9rem;
    }

    .draw-group {
        align-items: center;
    }

    /* Sponsors */
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sponsor-logo img {
        max-width: 180px;
    }

    /* Draw / Pixel Art section */
    .draw-section {
        padding: 60px 0;
    }

    .step .screenshot-placeholder {
        height: 340px;
    }

    .draw-inner {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }

    .pixelart-why,
    .draw-video-area {
        width: 100%;
        max-width: 100%;
    }

    .pixelart-why h2,
    .draw-video-area h2 {
        font-size: 0.85rem;
        text-align: center;
    }

    .pixelart-intro {
        text-align: center;
    }

    .pixelart-points {
        max-width: 100%;
        margin: 0 auto;
        padding: 1.2rem 1rem 1.2rem 1.8rem;
        box-sizing: border-box;
    }

    .timelapse-outer,
    .timelapse-wrapper {
        max-width: 100%;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-bg-video {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0.15;
    }

    .hero-overlay {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(245, 240, 255, 0.55);
        z-index: 1;
    }

    /* Video unter dem Hero-Text auf Handy – Phone-Screen-Crop */
    .hero-video-preview {
        display: block;
        position: relative;
        width: 100%;
        height: 440px;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(139, 123, 200, 0.35);
        border: 2px solid rgba(139, 123, 200, 0.25);
        margin-top: 2rem;
        z-index: 2;
    }

    /* Video von rechts verankert + hochskaliert → Phone-Screen füllt den Rahmen */
    .hero-video-preview video {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 145%;
        width: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cta-handmade {
        font-size: 0.6rem;
    }

    .cta-draw-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 0.6rem;
    }

    .nav-links {
        font-size: 0.65rem;
        gap: 1rem;
    }

    .lang-btn {
        font-size: 0.5rem;
    }

    .hero-content h1 {
        font-size: 1rem;
    }

    .logo-icon--hero {
        width: 55px;
        height: 55px;
    }

    .hero-content .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-tagline {
        font-size: 0.42rem;
    }

    .hero-image {
        max-width: 260px;
    }

    .problem-text {
        font-size: 1rem;
    }

    .features h2,
    .features-single h2,
    .feature-highlights h3,
    .how-it-works h2,
    .pixelart-why h2,
    .draw-video-area h2,
    .team-section h2,
    .sponsors-section h2,
    .cta-section h2 {
        font-size: 0.75rem;
    }

    .core-idea {
        padding: 18px;
        font-size: 0.9rem;
    }

    .highlight-card {
        padding: 18px;
    }

    .highlight-card h4 {
        font-size: 0.6rem;
    }

    .highlight-card p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .cta-contact .btn {
        font-size: 0.6rem;
        padding: 12px 14px;
    }

    .team-card {
        padding: 18px;
    }

    .team-image img {
        max-width: 100%;
    }

    .team-content h3 {
        font-size: 0.7rem;
    }

    .team-content p {
        font-size: 0.95rem;
    }

    /* Screenshots: 1 column on very small screens */
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .sponsor-logo img {
        max-width: 150px;
    }
}

/* CTA – Handmade Statement + Draw Button */
.cta-handmade {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    line-height: 2;
    opacity: 0.85;
}

.hero-draw-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #1565C0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid rgba(21, 101, 192, 0.5);
    transition: opacity 0.2s ease;
}

.hero-draw-link:hover {
    opacity: 0.75;
}

.hero-handmade {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-header {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-bottom: 0.6rem;
}

.hero-title-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.logo-icon--hero {
    width: 105px;
    height: 105px;
    flex-shrink: 0;
    image-rendering: pixelated;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.hero-buttons .btn-primary {
    flex: 1 1 0;
    text-align: center;
    justify-content: center;
}

.btn-how {
    flex: 1 1 100%;
    padding-top: 9px;
    padding-bottom: 9px;
    text-align: center;
}

.draw-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
}

.draw-group .hero-handmade {
    margin-bottom: 0;
}

/* Draw / Pixel Art Section */
.draw-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 123, 200, 0.05), rgba(255, 199, 95, 0.08));
}

.draw-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

/* Warum Pixel Art */
.pixelart-why {
    text-align: center;
}

.pixelart-why h2 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.pixelart-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.pixelart-points {
    text-align: left;
}

.pixelart-points {
    list-style: none;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: linear-gradient(135deg, rgba(139, 123, 200, 0.08), rgba(255, 199, 95, 0.06));
    border: 2px solid rgba(139, 123, 200, 0.2);
    border-radius: 16px;
    text-align: left;
}

.pixelart-points li {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    padding-left: 1.6rem;
    position: relative;
}

.pixelart-points li::before {
    content: '▪';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.1em;
    font-size: 1rem;
}

.pixelart-points li strong {
    color: var(--primary-color);
}

.pixelart-citation {
    font-size: 0.82rem;
    color: #aaa;
    font-style: italic;
}

/* Fun Fact Box */
.funfact-box {
    margin-top: 2rem;
    background: linear-gradient(135deg, rgba(139, 123, 200, 0.06), rgba(255, 199, 95, 0.08));
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    padding: 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.funfact-label {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.funfact-box p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin: 0;
}

.funfact-source {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.5;
}

/* Video Area */
.draw-video-area h2 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.9;
}

.draw-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.timelapse-wrapper {
    max-width: 420px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 123, 200, 0.2);
    border: 3px solid rgba(139, 123, 200, 0.25);
    clip-path: inset(0 0 8% 0 round 16px);
}

.timelapse-video {
    width: 100%;
    display: block;
}

.timelapse-outer {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.timelapse-play-btn {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(107, 90, 176, 0.3);
    backdrop-filter: blur(6px);
    color: white;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 20px rgba(107, 90, 176, 0.4);
}

.timelapse-play-btn:hover {
    background: rgba(107, 90, 176, 0.7);
    transform: translate(-50%, -50%) scale(1.08);
}

/* Dekorative Pixel-Art Bilder */
.deko {
    pointer-events: none;
    user-select: none;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    opacity: 1;
    z-index: 10;
}

/* Sonnenblumen – Features Sektion */
.deko--sf-tl { position: absolute; top: 25px;    left: 18px;  width: 120px; transform: rotate(-15deg); }
.deko--sf-tr { position: absolute; top: 15px;    right: 22px; width: 75px;  transform: rotate(12deg);  }
.deko--sf-ml { position: absolute; top: 44%;     left: 10px;  width: 65px;  transform: rotate(-8deg);  }
.deko--sf-mr { position: absolute; top: 38%;     right: 14px; width: 98px;  transform: rotate(22deg);  }
.deko--sf-bl { position: absolute; bottom: 20px; left: 35px;  width: 85px;  transform: rotate(-22deg); }
.deko--sf-br { position: absolute; bottom: 15px; right: 28px; width: 108px; transform: rotate(16deg);  }

/* Extra Sonnenblumen – unregelmäßig */
.deko--sf-a  { position: absolute; top: 8%;      left: 6%;    width: 52px;  transform: rotate(30deg);  }
.deko--sf-b  { position: absolute; top: 18%;     right: 8%;   width: 128px; transform: rotate(-6deg);  }
.deko--sf-c  { position: absolute; top: 62%;     left: 4%;    width: 60px;  transform: rotate(10deg);  }
.deko--sf-d  { position: absolute; top: 72%;     right: 5%;   width: 48px;  transform: rotate(-28deg); }
.deko--sf-e  { position: absolute; bottom: 8%;   left: 12%;   width: 78px;  transform: rotate(5deg);   }
.deko--sf-f  { position: absolute; top: 55%;     right: 10%;  width: 58px;  transform: rotate(-14deg); }

.deko--wheelbarrow {
    display: block;
    width: 320px;
    max-width: 85%;
    margin: 1.5rem auto 0;
}

.features {
    position: relative;
    overflow: visible;
    background: linear-gradient(160deg,
        rgba(255, 199, 95, 0.10) 0%,
        rgba(255, 255, 255, 0.0) 35%,
        rgba(255, 255, 255, 0.0) 65%,
        rgba(139, 123, 200, 0.08) 100%
    );
}

@media (max-width: 768px) {
    .deko--sf-tl,
    .deko--sf-tr,
    .deko--sf-ml,
    .deko--sf-mr,
    .deko--sf-bl,
    .deko--sf-br {
        display: none;
    }
    .deko--wheelbarrow {
        width: 220px;
    }

    /* draw-inner base style is defined after the first media query block,
       so we override it here to ensure single-column layout on mobile */
    .draw-inner {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
    }
}

/* Logo Icon – ersetzt 🌱 Emoji überall */
.logo-icon {
    display: inline-block;
    vertical-align: middle;
    image-rendering: pixelated;
}

.logo-icon--nav {
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 4px;
}

.logo-icon--lg {
    width: 6rem;
    height: 6rem;
}

.logo-icon--inline {
    width: 2.2em;
    height: 2.2em;
    vertical-align: -0.5em;
}
