        :root {
            --primary-accent: #6A5AF9;
            --primary-accent-light-bg: #f5f3ff;
            --primary-accent-border: #e0d9ff;
            --text-dark: #212529;
            --text-muted: #6c757d;
            --light-bg: #F8F9FA;
            --white-bg: #FFFFFF;
            --border-color: #EAEAEA;
            --border-radius: 16px;
            --shadow: 0 4px 15px rgba(0,0,0,0.07);
            --green-accent: #28a745;
            --red-accent: #dc3545;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-dark);
            margin: 0;
            line-height: 1.7;
        }
        
        /* --- Page containers --- */
        .page {
            display: none;
        }
        .page.active {
            display: block;
        }


        /* --- Tool Grid --- */
        .tool-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .tool-tile {
            background-color: var(--white-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .tool-tile:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .tool-tile-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }

        .tool-tile-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .tool-tile-content h3 {
            margin: 0 0 0.25rem 0;
            font-size: 1.25rem;
        }

        .tool-tile-main-category {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .tool-tile-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .tool-tile-tags .tag {
            font-size: 0.75rem;
            background-color: #f0f0f0;
            padding: 0.25rem 0.7rem;
            border-radius: 15px;
            font-weight: 500;
        }
        
        .tool-tile-actions {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .btn-primary {
            display: block;
            text-align: center;
            background-color: var(--primary-accent);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.2s;
            cursor: pointer;
            border: none;
        }
        .btn-primary:hover {
            background-color: #5244d4;
        }

        .link-secondary {
            text-align: center;
            color: var(--primary-accent);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
        }
        .link-secondary:hover {
            text-decoration: underline;
        }
        
        /* --- Detail Page Specific Styles --- */
        .hero-section {
            background: radial-gradient(circle, rgba(36,36,74,1) 0%, rgba(16,17,24,1) 100%);
            color: #F0F0F0;
        }
        .hero-cta {
            background-color: var(--primary-accent);
            color: white;
        }
        .hero-image-container::before {
             background: linear-gradient(45deg, var(--primary-accent), #c367e6);
        }
        .content-box {
            background-color: var(--primary-accent-light-bg);
            border: 1px solid var(--primary-accent-border);
        }
        .features-list svg { color: var(--primary-accent); }
        .faq-question::after { color: var(--primary-accent); }

        .detail-page-content {
            max-width: 1200px;
            margin: auto;
            padding: 2rem 0; /* No horizontal padding */
        }

.detail-page-content .hero-section {
    width: 100vw; /* Mach dich so breit wie das Fenster */
    position: relative;
    left: 50%;
    transform: translateX(-50%); /* Zentriere dich wieder korrekt */
    box-sizing: border-box; 
}

        /* General styles for detail pages from previous version */
        .hero-section {
            padding: 4rem 2rem;
            overflow: hidden;
        }
        .hero-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .hero-content { flex: 1; z-index: 2; }
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 0 0 1rem 0;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .hero-content p {
            font-size: 1.1rem;
            max-width: 500px;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
        .hero-image-container { position: relative; }
        .hero-image-container::before {
            content: '';
            position: absolute;
            inset: -20px;
            filter: blur(50px);
            opacity: 0.5;
            z-index: 0;
            border-radius: var(--border-radius);
        }
        .hero-visual img {
            max-width: 100%;
            border-radius: var(--border-radius);
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .detail-content-section {
            padding: 4rem 0;
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }
        .tool-intro-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem 4rem;
        }
        @media (min-width: 768px) {
            .tool-intro-grid { grid-template-columns: 1fr 2fr; }
        }
        .tool-meta { display: flex; flex-direction: column; gap: 1.5rem; }
        .tool-header { display: flex; align-items: center; gap: 1rem; }
        .tool-logo { width: 60px; height: 60px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
        .tool-title h2 { margin: 0; font-size: 1.5rem; font-weight: 700; }
        .tool-summary { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin: -0.5rem 0 0.5rem 0; }
        .meta-tags-container { display: flex; flex-wrap: wrap; gap: 0.5rem; }
        .meta-tag {
            display: inline-flex; align-items: center; gap: 0.3rem; background-color: #f0f0f0;
            padding: 0.25rem 0.7rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
        }
        .meta-tag.free-version { background-color: #e7f5ec; color: var(--green-accent); }
        .meta-tag svg { width: 12px; height: 12px; }
        .section-title { font-size: 1.75rem; font-weight: 700; margin-top: 0; margin-bottom: 1.5rem; }
        .content-box { border-radius: var(--border-radius); padding: 1.5rem 2rem; }
        .tool-highlights-box ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
        .tool-highlights-box li { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.1rem; line-height: 1.6; }
        .tool-highlights-box li span { font-size: 1.5rem; margin-top: -2px; }
        
        .features-ratings-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
        }
        @media (min-width: 1024px) {
            .features-ratings-grid {
                grid-template-columns: 3fr 2fr;
            }
        }
        
        .features-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
        .features-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 1rem; }
        .features-list svg { width: 20px; height: 20px; flex-shrink: 0; }
        
        .ratings-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.5rem; }
        .rating-item { display: flex; flex-direction: column; gap: 0.5rem; }
        .rating-label { display: flex; justify-content: space-between; font-weight: 600; font-size: 0.9rem; }
        .rating-bar-container { background-color: #e0d9ff; border-radius: 5px; height: 8px; overflow: hidden; }
        .rating-bar { background-color: var(--primary-accent); height: 100%; border-radius: 5px; }

        .pro-con-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
        @media (min-width: 768px) { .pro-con-grid { grid-template-columns: 1fr 1fr; } }
        .pro-con-grid h3 { font-size: 1.25rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
        .pro-con-grid .pros h3 { color: var(--green-accent); }
        .pro-con-grid .cons h3 { color: var(--red-accent); }
        .pro-con-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
        .pro-con-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; }
        .pro-con-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; }
        .pro-icon { color: var(--green-accent); }
        .con-icon { color: var(--red-accent); }
        .extra-section { padding: 4rem 0; background-color: var(--light-bg); }
        .extra-container { max-width: 1200px; margin: auto; }
        .extra-container h2 { font-size: 2.5rem; font-weight: 700; text-align: center; margin-top: 0; margin-bottom: 3rem; }
        .alternatives-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 5rem; }
        .alternative-tile { background-color: var(--white-bg); border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0,0,0,0.07); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .alternative-tile:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
        .alternative-tile img { width: 100%; height: 160px; object-fit: cover; display: block; }
        .alternative-tile-content { padding: 1.5rem; }
        .alternative-tile-content h3 { margin: 0 0 0.75rem 0; font-size: 1.25rem; }
        .alternative-tile-tags .tag { font-size: 0.8rem; background-color: #e9ecef; padding: 0.3rem 0.8rem; border-radius: 15px; }
        .faq-item { background-color: var(--white-bg); border: 1px solid var(--border-color); border-radius: 12px; margin-bottom: 1rem; overflow: hidden; }
        .faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; cursor: pointer; font-weight: 600; font-size: 1.1rem; }
        .faq-question::after { content: '+'; font-size: 1.8rem; transition: transform 0.3s ease; }
        .faq-item.active .faq-question::after { transform: rotate(45deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
        .faq-answer p { margin: 0; padding: 0 1.5rem 1.5rem 1.5rem; color: var(--text-muted); line-height: 1.8; }
        @media (max-width: 992px) {
            .hero-container { flex-direction: column; text-align: center; }
            .hero-content p { margin-left: auto; margin-right: auto; }
            .hero-visual { margin-top: 3rem; }
            .hero-content h1 { font-size: 2.8rem; }
        }

* --- STILE FÜR DEN AUSKLAPPBAREN INHALT --- */

/* Der Container für den Hauptinhalt */
.detail-page-content .post-content-section .expandable-content {
    /* Legt die maximale Höhe im geschlossenen Zustand fest. 
       Passe diesen Wert an, um mehr oder weniger Text anzuzeigen. */
    max-height: 15em; 
    overflow: hidden;
    position: relative;
    transition: max-height 0.7s ease-in-out;
}

/* Erzeugt den weichen "Ausblend"-Effekt am unteren Rand */
.detail-page-content .post-content-section .expandable-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6em;
    background: linear-gradient(to bottom, rgba(245, 243, 255, 0), rgba(245, 243, 255, 1)); /* Passe die Farbe an den Hintergrund deiner Box an */
    transition: opacity 0.3s ease-in-out;
}

/* Stile für den ausgeklappten Zustand */
.detail-page-content .post-content-section .expandable-content.expanded {
    /* Ein sehr hoher Wert, damit der gesamte Inhalt Platz hat */
    max-height: 2000px; 
}

/* Blendet den Verlauf aus, wenn der Inhalt ausgeklappt ist */
.detail-page-content .post-content-section .expandable-content.expanded::after {
    opacity: 0;
}

/* Stil für den "Mehr anzeigen"-Button */
.detail-page-content .expand-link {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--primary-accent);
    background-color: transparent;
    border: 2px solid var(--primary-accent);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.detail-page-content .expand-link:hover {
    background-color: var(--primary-accent);
    color: white;
}
