@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;900&display=swap');


        :root {
            --mc-green: #4CAF50;
            --mc-green-hover: #45a049;
            --mc-blue: #00BCD4;
            --mc-dark: #2C3E50;
            --bg-color: #F4F9F4; /* Sehr sanftes, warmes Grau-Grün statt Klinik-Weiß */
            --card-bg: #FFFFFF;
            --text-main: #34495E;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--text-main);
            background-color: var(--bg-color);
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        /* Hero Section - Der Gaming Einstieg */
        .hero {
            background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
            border-bottom: 8px solid var(--mc-green);
        }

        .badge {
            background-color: var(--mc-green);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 900;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 900;
            margin: 0 0 20px 0;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px auto;
            color: #BDC3C7;
        }

        .usps {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .usp-item {
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .usp-item span {
            color: var(--mc-green);
            font-size: 1.2rem;
        }

        /* Hauptinhalt Container */
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        h2 {
            font-size: 2.2rem;
            color: var(--mc-dark);
            text-align: center;
            margin-bottom: 40px;
            font-weight: 900;
        }

        .intro {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px auto;
        }

        /* Feature Cards (Die 4 Säulen) */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .card {
            background: var(--card-bg);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-top: 6px solid var(--mc-blue);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card.green { border-color: var(--mc-green); }
        .card.orange { border-color: #FF9800; }
        .card.purple { border-color: #9C27B0; }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .card h3 {
            font-size: 1.3rem;
            color: var(--mc-dark);
            margin-top: 0;
            font-weight: 900;
            hyphens: auto;
            -webkit-hyphens: auto; /* Für Safari (iPhone/Mac) unabdingbar */
            word-break: break-word; /* Sicherheits-Fallback für ältere Browser */
        }

        /* Kurs-Konzept Box */
        .konzept-box {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 60px;
            border: 2px dashed #BDC3C7;
        }

        .konzept-box ul {
            list-style: none;
            padding: 0;
        }

        .konzept-box li {
            margin-bottom: 15px;
            padding-left: 35px;
            position: relative;
            font-size: 1.1rem;
        }

        .konzept-box li::before {
            content: '🚀';
            position: absolute;
            left: 0;
            top: 2px;
        }

        /* FAQ Bereich */
        .faq-item {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border-left: 5px solid var(--mc-dark);
        }

        .faq-question {
            font-weight: 900;
            font-size: 1.2rem;
            color: var(--mc-dark);
            margin-bottom: 10px;
        }

        /* CTA Bridge (Die Überleitung zur Schule) */
        .cta-bridge {
            background: linear-gradient(135deg, var(--mc-blue) 0%, #0097A7 100%);
            color: white;
            text-align: center;
            padding: 60px 20px;
            border-radius: 20px;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .cta-bridge h2 {
            color: white;
            margin-bottom: 20px;
        }

        .cta-bridge p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px auto;
        }

        .btn {
            background-color: var(--mc-green);
            color: white;
            text-decoration: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 900;
            display: inline-block;
            transition: transform 0.2s, background-color 0.2s;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
        }

        .btn:hover {
            background-color: var(--mc-green-hover);
            transform: scale(1.05);
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 30px;
            color: #7F8C8D;
            font-size: 0.9rem;
            margin-top: 40px;
        }

        .footer a {
            color: #7F8C8D;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* Responsive Design für Smartphones */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .hero { padding: 50px 20px; }
            .grid { grid-template-columns: 1fr; }
            .konzept-box { padding: 25px; }
        }

    .article-body h2 { font-size: 1.8rem; color: #2C3E50; margin-top: 40px; margin-bottom: 20px; font-weight: 800; }
    .article-body p { font-size: 1.15rem; line-height: 1.8; color: #4A5568; margin-bottom: 24px; }
    .article-body ul { margin-bottom: 24px; padding-left: 20px; }
    .article-body li { font-size: 1.1rem; line-height: 1.7; color: #4A5568; margin-bottom: 12px; }
    .insight-box { background-color: #f7fafc; border-left: 4px solid #3182ce; padding: 25px; border-radius: 0 12px 12px 0; margin: 35px 0; }

        /* Spezifische Hub-Erweiterung für die Artikel-Links */
        .hub-card {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            text-align: left;
        }
        .hub-card p {
            font-size: 0.95rem;
            color: var(--text-main);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .hub-link {
            color: var(--mc-green);
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: color 0.2s;
        }
        .hub-link:hover {
            color: var(--mc-green-hover);
        }