/*
Theme Name: NeelixberliN
Description: Ein modernes WordPress Theme mit Glasmorphism-Design für digitale Suchtberatung. Optimiert für Performance, SEO und Benutzerfreundlichkeit.
Author: NeelixberliN
Version: 1.2.1
/* ... (Alle deine originalen CSS-Regeln von Zeile 1 bis zum Ende) ... */

/* =================================================================== */
/* NEUE STYLES FÜR BEITRAGSÜBERSICHT-TEMPLATE (HINZUGEFÜGT AM ENDE) */
/* Diese Stile gelten NUR auf Seiten mit dem "Beitragsübersicht" Template */
/* =================================================================== */

.page-template-template-beitragsuebersicht .site-main {
    max-width: 900px; /* Behält die Breite für diese spezielle Seite bei */
}

/* Hauptcontainer für den gesamten Block */
.neelix-overview-container {
    width: 100%;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    animation: overviewFadeInUp-scope 0.8s ease-out 0.2s forwards;
}

@keyframes overviewFadeInUp-scope {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Allgemeiner Stil für alle Sektionen im Template */
.neelix-overview-container .content-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px;
    margin: 25px auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.neelix-overview-container .content-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.neelix-overview-container .content-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4facfe, #00f2fe, #ff6b6b);
    background-size: 250% 100%;
    animation: overviewShimmer-scope 4s ease-in-out infinite;
}

@keyframes overviewShimmer-scope {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

/* YOUTUBE PODCAST SEKTION */
.neelix-overview-container .youtube-podcasts { background: linear-gradient(135deg, #d62424, #a71d1d); color: white; }
.neelix-overview-container .youtube-podcasts::before { background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.5), #ffffff); }
.neelix-overview-container .youtube-header { text-align: center; margin-bottom: 30px; }
.neelix-overview-container .youtube-title { font-size: 26px; font-weight: 800; margin-bottom: 10px; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); color: white; }
.neelix-overview-container .youtube-subtitle { opacity: 0.9; font-size: 16px; }
.neelix-overview-container .videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 30px; }
.neelix-overview-container .video-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.2); text-decoration: none; display: flex; flex-direction: column; }
.neelix-overview-container .video-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); background: rgba(255, 255, 255, 0.2); }
.neelix-overview-container .video-thumbnail { position: relative; width: 100%; padding-top: 56.25%; background-size: cover; background-position: center; }
.neelix-overview-container .video-thumbnail::after { content: '▶'; font-size: 40px; color: white; opacity: 0.8; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: all 0.3s ease; text-shadow: 0 0 15px rgba(0,0,0,0.5); }
.neelix-overview-container .video-card:hover .video-thumbnail::after { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
.neelix-overview-container .video-info { padding: 15px; flex-grow: 1; }
.neelix-overview-container .video-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; color: white; }
.neelix-overview-container .video-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; opacity: 0.8; color: white; }
.neelix-overview-container .youtube-cta { text-align: center; }
.neelix-overview-container .youtube-btn { background: white; color: #cc0000; padding: 12px 28px; border-radius: 25px; text-decoration: none; font-weight: 700; font-size: 14px; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }
.neelix-overview-container .youtube-btn:hover { background: #f0f0f0; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); }

/* Header der Übersichtsseite */
.neelix-overview-container .overview-header { text-align: center; margin-bottom: 30px; }
.neelix-overview-container .overview-title { font-size: clamp(28px, 5vw, 36px); font-weight: 800; margin-bottom: 15px; background: linear-gradient(135deg, #4facfe, #ff6b6b); -webkit-background-clip: text; background-clip: text; color: transparent; }
.neelix-overview-container .overview-description { color: #718096; line-height: 1.7; font-size: 17px; }

/* Statistiken */
.neelix-overview-container .stats-grid { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-top: 30px; }
.neelix-overview-container .stat-card { background: rgba(255, 255, 255, 0.8); padding: 20px; border-radius: 16px; text-align: center; border: 1px solid rgba(79, 172, 254, 0.1); transition: all 0.3s ease; flex: 1; min-width: 160px; }
.neelix-overview-container .stat-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(79, 172, 254, 0.2); }
.neelix-overview-container .stat-number { font-size: 28px; font-weight: 800; display: block; margin-bottom: 8px; background: linear-gradient(135deg, #4facfe, #00f2fe); -webkit-background-clip: text; background-clip: text; color: transparent; }
.neelix-overview-container .stat-label { color: #718096; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Hero Slider */
.neelix-overview-container .hero-slider { position: relative; height: 300px; border-radius: 20px; overflow: hidden; box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15); }
.neelix-overview-container .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease-in-out; display: flex; align-items: center; padding: 40px; color: white; }
.neelix-overview-container .hero-slide.active { opacity: 1; }
.neelix-overview-container .hero-slide:nth-child(1) { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.neelix-overview-container .hero-slide:nth-child(2) { background: linear-gradient(135deg, #ff6b6b, #ee5a52); }
.neelix-overview-container .hero-slide:nth-child(3) { background: linear-gradient(135deg, #a29bfe, #6c5ce7); }
.neelix-overview-container .hero-badge { background: rgba(255, 255, 255, 0.25); padding: 6px 14px; border-radius: 15px; font-size: 12px; font-weight: 700; display: inline-block; margin-bottom: 15px; }
.neelix-overview-container .hero-title { font-size: clamp(22px, 4vw, 28px); font-weight: 800; margin-bottom: 12px; text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3); line-height: 1.2; color: white; }
.neelix-overview-container .hero-description { font-size: 16px; opacity: 0.95; margin-bottom: 20px; line-height: 1.6; }
.neelix-overview-container .hero-cta { background: white; color: #2d3748; padding: 12px 24px; border-radius: 25px; text-decoration: none; font-weight: 700; font-size: 14px; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; }
.neelix-overview-container .hero-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); }
.neelix-overview-container .hero-controls { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 3; }
.neelix-overview-container .hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); cursor: pointer; transition: all 0.4s; border: none; padding: 0; }
.neelix-overview-container .hero-dot.active { background: white; transform: scale(1.3); }
    
/* QUICK ACCESS */
.neelix-overview-container .quick-access { background: linear-gradient(135deg, #48dbfb, #0abde3); color: white; text-align: center; }
.neelix-overview-container .quick-access-title { font-size: 24px; margin-bottom: 8px; font-weight: 800; color: white; }
.neelix-overview-container .quick-access-subtitle { opacity: 0.9; margin-bottom: 25px; font-size: 16px; }
.neelix-overview-container .quick-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.neelix-overview-container .quick-btn { background: rgba(255, 255, 255, 0.2); color: white; padding: 12px 20px; border-radius: 25px; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.3); transition: all 0.3s ease; font-weight: 600; font-size: 14px; }
.neelix-overview-container .quick-btn:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-3px); }

/* Kategorien */
.neelix-overview-container .categories-title { font-size: 28px; color: #2d3748; margin-bottom: 12px; font-weight: 800; text-align: center; }
.neelix-overview-container .categories-description { color: #718096; margin-bottom: 30px; text-align: center; line-height: 1.7; font-size: 16px; max-width: 700px; margin-left: auto; margin-right: auto; }
.neelix-overview-container .categories-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.neelix-overview-container .category-card { background: white; border-radius: 16px; padding: 25px; transition: all 0.3s ease; text-decoration: none; color: inherit; position: relative; overflow: hidden; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05); border: 1px solid #eee; display: flex; flex-direction: column; }
.neelix-overview-container .category-card:hover { transform: translateY(-10px); box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12); border-color: #4facfe; }
.neelix-overview-container .category-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.neelix-overview-container .category-icon { color: #4facfe; flex-shrink: 0; }
.neelix-overview-container .category-title { font-size: 18px; font-weight: 700; color: #2d3748; }
.neelix-overview-container .category-description { color: #718096; font-size: 14px; margin-bottom: 20px; line-height: 1.6; flex-grow: 1; }
.neelix-overview-container .category-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #718096; border-top: 1px solid #f0f0f0; padding-top: 15px; margin-top: auto; }
.neelix-overview-container .post-count { font-weight: 600; }
.neelix-overview-container .last-update { font-style: italic; }

/* ACTIVITY FEED */
.neelix-overview-container .activity-title { font-size: 24px; font-weight: 800; color: #2d3748; margin-bottom: 20px; text-align: center; }
.neelix-overview-container .activity-list { list-style: none; margin: 0; padding: 0; }
.neelix-overview-container .activity-item { display: flex; align-items: center; gap: 15px; padding: 15px 10px; border-bottom: 1px solid #f0f0f0; }
.neelix-overview-container .activity-item:last-child { border-bottom: none; }
.neelix-overview-container .activity-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.neelix-overview-container .activity-icon.new { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.neelix-overview-container .activity-icon.update { background: linear-gradient(135deg, #ff6b6b, #ee5a52); }
.neelix-overview-container .activity-icon.warning { background: linear-gradient(135deg, #feca57, #ff9ff3); }
.neelix-overview-container .activity-content { flex: 1; }
.neelix-overview-container .activity-text { font-size: 14px; color: #2d3748; margin-bottom: 4px; font-weight: 500; }
.neelix-overview-container .activity-time { font-size: 12px; color: #718096; }

/* SOCIAL & NEWSLETTER */
.neelix-overview-container .social-newsletter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.neelix-overview-container .social-section, .neelix-overview-container .newsletter-section { padding: 30px; border-radius: 16px; color: white; text-align: center; }
.neelix-overview-container .social-section { background: linear-gradient(135deg, #667eea, #764ba2); }
.neelix-overview-container .newsletter-section { background: linear-gradient(135deg, #fd79a8, #fdcb6e); }
.neelix-overview-container .section-small-title { font-size: 22px; margin-bottom: 10px; font-weight: 800; color: white; }
.neelix-overview-container .section-small-subtitle { opacity: 0.9; margin-bottom: 25px; font-size: 14px; }
.neelix-overview-container .social-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.neelix-overview-container .social-btn { background: rgba(255, 255, 255, 0.2); color: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 20px; transition: all 0.3s ease; }
.neelix-overview-container .social-btn:hover { transform: translateY(-5px) scale(1.1); background: rgba(255, 255, 255, 0.3); }
.neelix-overview-container .newsletter-form { display: flex; gap: 12px; max-width: 400px; margin: 20px auto 0; flex-wrap: wrap; }
.neelix-overview-container .newsletter-input { flex: 1; padding: 12px 18px; border: none; border-radius: 25px; font-size: 14px; min-width: 180px; background: rgba(255, 255, 255, 0.9); color: #2d3748; }
.neelix-overview-container .newsletter-btn { background: white; color: #fd79a8; padding: 12px 24px; border: none; border-radius: 25px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; }
.neelix-overview-container .newsletter-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); }
    
/* RESPONSIVE ANPASSUNGEN für das Template */
@media (max-width: 768px) {
    .neelix-overview-container .content-section { padding: 25px 20px; }
    .neelix-overview-container .hero-slide { padding: 30px; text-align: center; justify-content: center; flex-direction: column; }
    .neelix-overview-container .hero-title { font-size: clamp(20px, 5vw, 24px); }
    .neelix-overview-container .categories-container { grid-template-columns: 1fr; gap: 20px; }
    .neelix-overview-container .category-header { flex-direction: column; gap: 10px; text-align: center; }
    .neelix-overview-container .category-description { text-align: center; }
    .neelix-overview-container .quick-buttons { flex-direction: column; gap: 15px; align-items: stretch; }
    .neelix-overview-container .social-newsletter-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .neelix-overview-container .content-section { padding: 20px 15px; }
    .neelix-overview-container .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .neelix-overview-container .stat-card { padding: 15px; }
}
