/*
Theme Name: FreeFlirtChat Portal
Theme URI: https://freeflirtchat.de
Author: FreeFlirtChat
Description: 1:1 Umsetzung der HTML Vorlage.
Version: 1.0
*/

:root {
    --flirt-red: #ff3366;
    --bg-body: #f8f9fa; 
    --bg-content: #ffffff;
    --text-main: #1a1a1a;
    --border-light: #e9ecef;
    --ad-bg: #f1f3f5;
    --ad-border: #dee2e6;
}

body { background-color: var(--bg-body); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; color: var(--text-main); }
.app-wrapper { max-width: 1140px; margin: 0 auto; background-color: var(--bg-content); min-height: 100vh; box-shadow: 0 0 20px rgba(0,0,0,0.03); }

.navbar { background-color: var(--bg-content); border-bottom: 1px solid var(--border-light); padding: 12px 20px; }
.navbar-brand { font-weight: 800; font-size: 1.5rem; color: var(--flirt-red) !important; letter-spacing: -0.5px; }
.nav-link { font-weight: 700; color: var(--text-main); transition: color 0.2s; padding: 8px 15px !important; }
.nav-link:hover, .nav-link.active { color: var(--flirt-red); }
.dropdown-menu { border: 1px solid var(--border-light); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 10px 0; margin-top: 10px; }
.dropdown-item { font-weight: 600; padding: 10px 20px; transition: background 0.2s, color 0.2s; color: var(--text-main); font-size: 0.95rem; }
.dropdown-item:hover { background-color: rgba(255, 51, 102, 0.08); color: var(--flirt-red); }
.navbar-toggler { border: none; padding: 5px; }
.navbar-toggler:focus { box-shadow: none; outline: none; }
.status-badge { font-size: 0.85rem; font-weight: 700; color: #1a1a1a; display: flex; align-items: center; gap: 6px; background: #f8f9fa; padding: 6px 14px; border-radius: 20px; border: 1px solid var(--border-light); }

.ad-spot { background-color: var(--ad-bg); border: 2px dashed var(--ad-border); display: flex; align-items: center; justify-content: center; color: #adb5bd; font-weight: bold; font-size: 0.9rem; margin-bottom: 30px; text-align: center; border-radius: 12px; flex-direction: column; overflow: hidden; }
.ad-leaderboard { width: 100%; height: 90px; margin-top: 20px; }
.ad-rectangle { width: 100%; height: 250px; }
.ad-sticky { position: sticky; top: 90px; } 
.ad-label { font-size: 0.65rem; color: #ced4da; text-transform: uppercase; margin-bottom: 5px; display: block; letter-spacing: 1px; }

.hero-banner { margin: 20px 20px 30px; border-radius: 16px; overflow: hidden; position: relative; display: block; box-shadow: 0 6px 15px rgba(0,0,0,0.06); height: 220px; }
@media (min-width: 768px) { .hero-banner { height: 280px; } }
.hero-banner img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 20px 20px; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); color: white; }

.category-section { margin-bottom: 30px; }
.section-header { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; margin-bottom: 15px; }
.section-title { font-weight: 800; font-size: 1.25rem; margin: 0; }
.section-link { font-weight: 700; font-size: 0.85rem; color: var(--flirt-red); text-decoration: none; }
.horizontal-scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 15px; padding: 0 20px 20px 20px; -ms-overflow-style: none; scrollbar-width: none; }
.horizontal-scroll::-webkit-scrollbar { display: none; }
.thumb-card { flex: 0 0 auto; width: 110px; scroll-snap-align: start; text-decoration: none; display: flex; flex-direction: column; align-items: center; }
@media (min-width: 768px) { .thumb-card { width: 130px; } }
.img-wrapper { width: 100%; aspect-ratio: 1 / 1; border-radius: 18px; overflow: hidden; position: relative; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border: 1px solid var(--border-light); transition: transform 0.2s, box-shadow 0.2s; background: #fff; }
.thumb-card:hover .img-wrapper { transform: translateY(-4px) scale(1.02); box-shadow: 0 8px 20px rgba(255, 51, 102, 0.2); border-color: rgba(255, 51, 102, 0.3); }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.thumb-title { margin-top: 10px; font-weight: 800; font-size: 0.85rem; color: var(--text-main); text-align: center; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-badge { position: absolute; top: 8px; right: 8px; background: var(--flirt-red); color: white; font-size: 0.65rem; font-weight: 800; padding: 4px 8px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.8); }
.badge-live { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4); } 70% { box-shadow: 0 0 0 5px rgba(255, 51, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0); } }

.blog-scroll-wrapper { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 20px; padding: 0 20px 20px 20px; -ms-overflow-style: none; scrollbar-width: none; }
.blog-scroll-wrapper::-webkit-scrollbar { display: none; }
.blog-card-wrapper { flex: 0 0 auto; width: 280px; scroll-snap-align: start; }
@media (min-width: 768px) { .blog-scroll-wrapper { flex-wrap: wrap; overflow-x: visible; } .blog-card-wrapper { width: calc(50% - 10px); } }
.blog-card { display: flex; flex-direction: column; border: 1px solid var(--border-light); border-radius: 16px; background-color: var(--bg-content); overflow: hidden; text-decoration: none; color: var(--text-main); transition: transform 0.2s, box-shadow 0.2s; height: 100%; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(0,0,0,0.06); border-color: rgba(255, 51, 102, 0.2); }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background-color: #f8f9fa; border-bottom: 1px solid var(--border-light); }
.blog-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-category { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; color: var(--flirt-red); letter-spacing: 0.5px; margin-bottom: 8px; }
.blog-title { font-size: 1.1rem; font-weight: 800; line-height: 1.3; margin-bottom: 10px; color: var(--text-main); }
.blog-excerpt { font-size: 0.85rem; color: #6c757d; line-height: 1.5; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { margin-top: auto; font-size: 0.85rem; font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 5px; transition: color 0.2s; }
.blog-card:hover .blog-read-more { color: var(--flirt-red); }

.sidebar-card { border: 1px solid var(--border-light); border-radius: 16px; margin-bottom: 30px; }
.sidebar-header { font-weight: 800; padding: 15px 20px; border-bottom: 1px solid var(--border-light); font-size: 1.1rem; }
.list-group-item { border: none; padding: 12px 20px; border-bottom: 1px solid var(--border-light); font-size: 0.95rem; font-weight: 600; }
.list-group-item:last-child { border-bottom: none; }
.chart-num { color: var(--flirt-red); font-weight: 900; font-size: 1.2rem; width: 25px; display: inline-block; }

.seo-top-wrapper { padding: 0 20px 20px 20px; }
.seo-top-wrapper h1 { font-size: 1.6rem; font-weight: 900; letter-spacing: -0.5px; color: var(--text-main); margin-bottom: 10px; }
.seo-top-wrapper p { font-size: 0.95rem; color: #495057; line-height: 1.6; margin: 0; }

.seo-footer { padding: 40px 20px; background: var(--bg-body); border-top: 1px solid var(--border-light); margin-top: 20px; border-radius: 0 0 16px 16px; }
.seo-footer h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 15px; color: var(--text-main); }
.seo-footer h3 { font-size: 1.1rem; font-weight: 700; margin-top: 25px; margin-bottom: 10px; color: var(--text-main); }
.seo-footer p { font-size: 0.9rem; color: #6c757d; line-height: 1.6; margin-bottom: 15px; }

@media (min-width: 992px) { .border-start-lg { border-left: 1px solid var(--border-light); } }