/* CSS Reset und grundlegendes Design */
* { box-sizing: border-box; margin: 0; padding: 0; }
/* Verhindert, dass Bilder auf dem Handy das Layout zerschießen */
img {
    max-width: 100%;
    height: auto;
}

/* --- Fix gegen horizontales Scrollen/Wackeln auf dem Handy --- */
html, body {
    max-width: 100%;
    overflow-x: hidden; 
}

/* Globale Formatierung für normale Text-Links */
a {
    color: #2c974b; /* Dein gewohntes Welli-Grün */
    text-decoration: underline; /* Unterstreichung für gute Erkennbarkeit im Fließtext */
    transition: color 0.3s ease;
}

/* Wenn der Link berührt (hover), angeklickt (active) oder bereits besucht (visited) wurde */
a:hover, a:active, a:visited {
    color: #237a3c; /* Das etwas dunklere Grün deiner Buttons und Cards */
}

/* --- GLOBALE TRENNLINIE --- */
hr.divider {
    border: 0;
    border-top: 2px solid #a0aec0;
    width: 85%; 
    border-radius: 2px;
    
    /* Ganz klare Abstände nach oben und unten erzwingen */
    margin-top: 60px !important; 
    margin-bottom: 60px !important; 
    
    /* Zentriert die Linie horizontal */
    margin-left: auto;
    margin-right: auto;
}

/* 1. Eigene Schriften laden */
@font-face {
    font-family: 'Berlin';
    src: url('fonts/berlin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/nunito.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Globale Ausrichtung für die großen Überschriften */
h1, h2 {
    text-align: center;
}

/* 3. Fließtext: Nunito nutzen */
body { 
    font-family: 'Nunito', sans-serif; 
    font-size: 18px; 
    line-height: 1.6; 
    color: #1a202c; 
    background-color: #f4f7f5; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
}

/* Verhindert, dass ultralange Wörter oder Links die Boxen sprengen */
.post-content, .book-recommendation, p, h1, h2, h3, h4 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto; 
}

/* 4. Überschriften & Logo: Berlin nutzen */
h1, h2, h3, .logo, .section-title {
    font-family: 'Berlin', sans-serif;
    font-weight: normal;
}

/* --- HEADER / NAVIGATION --- */
header { 
    background-color: #fff; 
    padding: 1rem 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}

.logo { 
    display: flex;
    align-items: center; 
    text-decoration: none; 
    padding: 5px 0; 
}

.logo-img {
    max-height: 150px; 
    width: auto; 
}

/* --- DAS HAMBURGER-MENÜ & OVERLAY --- */
.menu-btn {
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
}

.overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f4f7f5; 
    z-index: 90; 
    overflow-y: auto; 
    padding-bottom: 50px; 
    padding-left: 5%; 
    padding-right: 5%;
}

.overlay-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 210px;
}

.overlay a {
    padding: 8px 0;
    text-decoration: none;
    font-size: 1.2rem;
    color: #444;
    display: flex; 
    justify-content: flex-start; 
    align-items: center;
    gap: 8px; 
    transition: color 0.3s;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee; 
}

.overlay a:hover {
    color: #2c974b;
}

.overlay a::after {
    content: '→'; 
    color: #2c974b; 
    font-size: 1.4rem; 
    transition: transform 0.3s ease; 
}

.overlay a:hover::after {
    transform: translateX(6px); 
}

/* --- HERO SEKTION (Startseite) --- */
.hero { 
    background: url('Bilder/wellis.jpg') center/cover; 
    color: #fff; 
    text-align: center; 
    padding: 120px 20px; 
}

.btn { 
    display: inline-block; 
    background-color: #2c974b; 
    color: #fff; 
    padding: 10px 24px; 
    font-size: 1rem; 
    text-decoration: none; 
    border-radius: 25px; 
    font-weight: 700; 
    transition: background 0.3s, transform 0.2s; 
    box-shadow: 0 4px 6px rgba(44, 151, 75, 0.2); 
}

.btn:hover { 
    background-color: #237a3c; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 12px rgba(44, 151, 75, 0.3); 
}

/* --- THEMEN-GRID (Startseite) --- */
.container { max-width: 1100px; margin: 0 auto; padding: 60px 20px; flex: 1; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 40px; color: #222; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.card { background: #fff; border-radius: 12px; padding: 30px; text-align: center; box-shadow: 0 8px 15px rgba(0,0,0,0.03); transition: transform 0.3s, box-shadow 0.3s; border-bottom: 4px solid transparent; display: flex; flex-direction: column; justify-content: space-between; align-items: center;}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 20px rgba(0,0,0,0.08); border-bottom: 4px solid #2c974b; }
.card h3 { color: #2c974b; margin-bottom: 12px; font-size: 1.4rem; }
.card p { color: #333; margin-bottom: 20px; font-size: 1.05rem; flex-grow: 1;}

/* Erweitertes Grid für exakt 4 Cards auf der Startseite */
.grid-half {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Erzwingt exakt 2 Spalten nebeneinander */
    gap: 30px;
}

/* Auf dem Smartphone (unter 768px Breite) wird es automatisch 1-spaltig */
@media (max-width: 768px) {
    .grid-half {
        grid-template-columns: 1fr;
    }
}

/* --- VIDEO SEKTION --- */
.video-section { background-color: #eaf3ed; padding: 60px 20px; }
.video-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; max-width: 1100px; margin: 0 auto; align-items: flex-start;}

.video-wrapper { 
    background: #000; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.main-video {
    flex: 1; 
    min-width: 300px; 
    max-width: 560px; 
    aspect-ratio: 16/9;
}

.short-wrapper { 
    max-width: 315px; 
    aspect-ratio: 315 / 560; 
    width: 100%;
}

.video-wrapper iframe { width: 100%; height: 100%; border: none; }

.video-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.video-wrapper:hover .video-placeholder {
    transform: scale(1.03);
}

.play-button {
    background-color: rgba(26, 26, 24, 0.8); 
    color: #fff;
    font-size: 2rem;
    width: 70px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.video-placeholder:hover .play-button {
    background-color: #2c974b;
    color: #fff;
}

/* Verhindert den doppelten Abstand der Video-Überschriften auf Unterseiten */
.video-section .section-title {
    margin-top: 0 !important;
}

/* --- BEITRAGS-SEITEN (ARTIKEL) --- */
.post-container {
    max-width: 800px; 
width: 100%; /* NEU: Zwingt den Container auf die echte Bildschirmbreite */
    margin: 40px auto; 
    padding: 0 20px;
    flex: 1; 
}

.post-title {
    font-size: 2.8rem;
    color: #1a1a18;
    margin-bottom: 10px;
    text-align: center;
}

.post-meta {
    font-size: 1.15rem; 
    color: #222; 
    text-align: center;
    margin-bottom: 30px;
}

.post-meta span {
    font-weight: 700;
    color: #1a1a18; 
}

.post-hero-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover; 
    border-radius: 12px;
    margin-bottom: 60px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.post-content {
    max-width: 720px; 
    margin: 0 auto; 
    text-align: left; 
}

.post-content p {
    margin-bottom: 25px; 
    line-height: 1.7; 
}

.post-content h2, .post-content h3 {
    text-align: center;
    color: #1a1a18; 
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 55px 0 20px 0; 
}

.post-content h4 {
    font-family: 'Nunito', sans-serif; 
    font-size: 1.2rem; 
    font-weight: 700; 
    margin: 40px 0 5px 0; 
    color: #1a1a18; 
}

/* --- BUCHTIPP / INFO-BOX --- */
.book-recommendation {
    background-color: #fff;
    border-left: 5px solid #2c974b; 
    padding: 20px 25px;
    margin: 35px 0;
    border-radius: 0 8px 8px 0; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); 
    text-align: left;
}

.book-recommendation h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem; 
    font-weight: 700;
    color: #1a1a18;
    margin: 0 0 12px 0; 
}

.book-recommendation p {
    margin-bottom: 0; 
}

/* Spezielles Design für die Vogel-Namen */
.bird-name {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 5px;
    font-size: 2.2rem;       
    font-weight: 700;        
    color: #2c974b;          
    letter-spacing: 1px;     
}

/* --- FIX FÜR LISTEN UND SPRUNGMARKEN --- */
h2[id], h3[id], h4[id] {
    scroll-margin-top: 100px; 
}

.post-content ul,
.post-content ol {
    padding-left: 25px; 
}

/* --- TABELLEN-DESIGN --- */
.welli-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 1rem;
}

.welli-table th, .welli-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd; 
}

.welli-table th {
    background-color: #2c974b;
    color: #ffffff;
    font-weight: bold;
}

.welli-table tr:nth-child(even) {
    background-color: #e8f5e9; 
}

/* Gibt der ersten Spalte in Tabellen immer eine feste Mindestbreite */
.welli-table th:first-child, 
.welli-table td:first-child {
    width: 35%; /* Die linke Spalte bekommt immer ca. ein Drittel des Platzes */
    min-width: 110px; /* Verhindert, dass die Spalte auf ganz schmalen Handys zu extrem schrumpft */
}

/* --- BILDUNTERSCHRIFT (WordPress-Style) --- */
.wp-caption {
    font-style: italic;
    text-align: center;
    font-size: 1.1rem; 
    color: #555;
    margin-top: 10px; 
    margin-bottom: 40px; 
}

/* --- BILDER-VERGRÖßERUNG (Lightbox) --- */
.zoom-img {
    cursor: pointer; 
    transition: opacity 0.3s ease;
}

.zoom-img:hover {
    opacity: 0.8; 
}

.lightbox-overlay {
    display: none; 
    position: fixed;
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85); 
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 90%;
    max-height: 80vh; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.lightbox-caption {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    color: #ffffff;
    font-style: italic;
    text-align: center;
    margin-top: 15px; 
    font-size: 1.1rem;
    max-width: 90%;
    text-shadow: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* --- INSTAGRAM-STYLE GALERIEN --- */
.ig-gallery {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 20px;
    max-width: 100%;
}

.ig-cover {
    display: block;
    border-radius: 8px;
    max-width: 100%;
}

.ig-hidden-img {
    display: none; 
}

.ig-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    pointer-events: none; 
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 40px;
    padding: 15px 25px;
    user-select: none;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

.lightbox-prev:hover, .lightbox-next:hover {
    color: #2c974b; 
}

/* --- 404 FEHLERSEITEN LAYOUT & ANIMATIONEN --- */
.error-container {
    text-align: center;
    padding: 100px 20px;
    min-height: 50vh;
}

.error-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: inline-block;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes wiggle {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
}

.animate-wiggle {
    animation: wiggle 2s ease-in-out infinite;
    transform-origin: bottom center;
}

.error-title {
    font-size: 2.5rem;
    color: #2c974b;
    margin-bottom: 15px;
}

.error-text {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.error-btn {
    background-color: #2c974b;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.error-btn:hover {
    background-color: #217338;
}

/* --- FOOTER --- */
footer { 
    background-color: #1a202c; 
    color: #f4f7f5; 
    text-align: center; 
    padding: 40px 20px; 
    margin-top: 50px; 
    width: 100% !important;
    max-width: 100%;
    clear: both; 
    display: block;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px; 
}

.footer-links {
    margin: 5px 0;
}

.footer-links a { 
    color: #2c974b; 
    text-decoration: none; 
    margin: 0 10px; 
    font-weight: bold;
}

.footer-links a:hover { 
    text-decoration: underline; 
    color: #fff; 
}

.footer-copyright {
    color: #cbd5e1;
    font-size: 1.1rem; 
    margin-top: 15px;
}

.back-to-top-center {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-decoration: none;
    transition: transform 0.3s;
    margin-bottom: 25px; 
}

.back-to-top-center:hover {
    transform: translateY(-5px); 
}

.back-to-top-center img {
    width: 150px; 
    height: auto;
    margin-bottom: 8px; 
}

.back-to-top-center span {
    color: #2c974b;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

.back-to-top-center:hover span {
    text-decoration: underline;
    color: #fff;
}

/* --- MOBILE ANPASSUNGEN (Media Queries ganz ans Ende!) --- */
@media (max-width: 768px) {
    .hero { padding: 80px 20px; }
    .hero h1 { font-size: 2rem; }
    .video-container { flex-direction: column; align-items: center; }
    
    .post-content ul,
    .post-content ol {
        padding-left: 20px; 
    }
}
/* --- WELLI-STORY OVERLAY EFFECT (NUN UNTEN ÜBER DER CAPTION) --- */
.story-text {
    position: absolute;
    bottom: 95px; /* NEU: Positioniert den Text weit unten, direkt über der Caption */
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10001;
    color: #ffffff;
    font-family: 'Berlin', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    background-color: rgba(44, 151, 75, 0.92); /* Dein Welli-Grün */
    padding: 10px 22px;
    border-radius: 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    max-width: 85%;
    width: auto;
    white-space: nowrap;
    pointer-events: none;
    display: none;
    opacity: 0;
}

/* Animations-Trigger für die Box (Bleibt gleich: fliegt von unten nach oben ein) */
.story-text.animate-story {
    animation: slideUpFade 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Standardzustand für Emojis */
.story-emoji {
    display: inline-block;
    transform: scale(0);
    margin: 0 4px;
}

/* Animations-Trigger für Emojis */
.animate-story .story-emoji {
    animation: emojiPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s forwards;
}

/* KEYFRAMES: Text fliegt ein */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translate(-50%, 40px); /* Startet 40px tiefer als die Ziel-Position */
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* KEYFRAMES: Emojis ploppen auf */
@keyframes emojiPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* Optimierung für Handy-Bildschirme (Mobilgeräte) */
@media (max-width: 768px) {
    .story-text {
        font-size: 1.2rem;
        padding: 8px 18px;
        bottom: 260px; /* Erhöht: Schiebt den Text weiter nach oben, weg von der Caption */
        max-width: 90%;
        white-space: normal; /* Erlaubt automatischen Zeilenumbruch auf Smartphones */
    }
}
/* --- TRADITIONELLE TRAUER-KÄRTCHEN (ERINNERUNGS-GALERIE) --- */
.memorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.memorial-card {
    background: #ffffff;
    border: 1px solid #dcdcdc; /* Sehr feiner, dezenter Außenrahmen */
    padding: 15px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Wichtig, damit der Trauerflor sauber an den Kanten abgeschnitten wird */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0; /* Absolut eckig für den klassischen Karten-Look */
}

/* Beim Darüberfahren dunkelt der Rahmen dezent nach */
.memorial-card:hover {
    border-color: #1a202c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.memorial-img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Zwingt das Element in ein perfektes Quadrat */
    object-fit: contain; /* Zeigt das quadratische Bild komplett unbeschnitten und zentriert */
    border: 1px solid #e2e8f0; /* Innerer Rahmen um das Foto */
    padding: 6px; /* Erzeugt einen edlen Passepartout-Effekt */
    background: #ffffff;
    margin-bottom: 12px;
    border-radius: 0;
}

.memorial-card h3 {
    font-family: 'Berlin', sans-serif;
    font-size: 1.2rem;
    color: #1a202c;
    margin: 5px 0 0 0;
}

/* Der Trauerflor-Effekt (Ein echtes Band in der unteren rechten Ecke) */
.memorial-card::after {
    content: '';
    position: absolute;
    bottom: 22px;
    right: -35px;
    width: 120px;
    height: 24px; /* Die Dicke des Trauerflors */
    background: linear-gradient(to bottom, #333333, #000000); /* Edler schwarzer Verlauf */
    box-shadow: 0 3px 8px rgba(0,0,0,0.4); /* Wirft einen Schatten auf das Bild darunter */
    transform: rotate(-45deg); /* Diagonale Neigung von unten links nach oben rechts */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

/* Aktiviert den Trauerflor beim Hovern (Desktop) */
.memorial-card:hover::after {
    opacity: 1;
}

/* Optimierung für Handys: Dauerhaft sichtbar, da es kein "Hover" gibt */
@media (max-width: 768px) {
    .memorial-card::after {
        opacity: 0.85; /* Dauerhaft, aber dezent sichtbar auf dem Smartphone */
        bottom: 18px; /* Leicht angepasst für schmalere Handy-Bildschirme */
        right: -30px;
        width: 100px;
        height: 20px;
}

/* Verhindert dauerhaft, dass besuchte Buttons den Text grün färben */
.btn:visited, .btn:active {
    color: #ffffff !important;
    text-decoration: none !important;
}
/* --- MINIMALES QUIZ-CSS (Erbt das Design der Hauptseite) --- */
.quiz-container {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Navigations-Leiste oben */
.level-nav { 
    display: flex; gap: 8px; margin-bottom: 1rem; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; 
}
.level-nav::-webkit-scrollbar { display: none; }
.level-btn { 
    padding: 6px 14px; border-radius: 20px; border: 1px solid #ddd; background: transparent; color: #555; cursor: pointer; transition: 0.3s;
}
.level-btn.active { background: #2c974b; color: #fff; border-color: #2c974b; font-weight: bold; }

.progress-bar-wrap { height: 8px; background: #e2e8f0; border-radius: 4px; margin-bottom: 2rem; }
.progress-bar { height: 8px; border-radius: 4px; background: #2c974b; transition: width 0.4s ease; }

/* Die Antwortmöglichkeiten (erben die Schriftgröße der Seite) */
.options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1.5rem; }
.option-btn { 
    display: flex; align-items: flex-start; gap: 12px; padding: 15px; border-radius: 8px; border: 2px solid #e2e8f0; background: #fff; cursor: pointer; text-align: left; transition: all 0.2s; font-size: 1.1rem;
}
.option-btn:hover:not(:disabled) { border-color: #2c974b; background: #e8f5e9; }
.option-btn .opt-letter { font-weight: bold; color: #888; }

/* Richtig/Falsch Farben */
.option-btn.correct { border-color: #2c974b; background: #e8f5e9; color: #1e6b35; font-weight: bold; }
.option-btn.correct .opt-letter { color: #2c974b; }
.option-btn.wrong { border-color: #e53e3e; background: #fff5f5; color: #c53030; }
.option-btn.wrong .opt-letter { color: #e53e3e; }

/* Score & Sterne */
.score-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.score-dots { display: flex; gap: 8px; }
.dot { width: 26px; height: 26px; border-radius: 50%; background: #f4f7f5; border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; }
.dot.filled { background: #F9D308; border-color: #e0be00; } 
.dot i { color: #1a1a18; font-size: 14px; }
