/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff8c00;
    --secondary-color: #ffa500;
    --dark-bg: #003366;
    --light-bg: #004080;
    --text-primary: #003366;
    --text-secondary: #004080;
    --accent: #ff8c00;
    --gradient: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    --orange-bg: #ff8c00;
    --blue-dark: #003366;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--orange-bg);
    color: var(--blue-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 0; /* Sera modifié sur mobile */
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 51, 102, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-bg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange-bg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--blue-dark);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--blue-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--blue-dark);
    margin-bottom: 3rem;
}

/* Hero + About Section fusionnée */
.hero-about {
    background: var(--gradient);
    padding: 8rem 0 6rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-about-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--blue-dark);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-about-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.hero-about-content p {
    color: var(--blue-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-align: justify;
}

.hero-about-content .btn-primary {
    margin-top: 2rem;
}

/* Music Section */
.music {
    background: var(--orange-bg);
}

/* Bouton Play All */
.play-all-container {
    text-align: center;
    margin: 2rem 0;
}

.btn-play-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--blue-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-play-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Liste simple des chansons */
.songs-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.song-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.song-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.song-item-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--blue-dark);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.2s ease;
}

.song-item-play:hover {
    background: #004080;
    transform: scale(1.05);
}

.song-item-play.playing {
    background: var(--orange-bg);
}

.song-item-info {
    flex: 1;
    min-width: 0;
}

.song-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 0.25rem;
}

.song-item-duration {
    font-size: 0.9rem;
    color: #666;
}

.song-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-lyrics, .btn-download-small {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-lyrics {
    background: #e0e0e0;
    color: var(--blue-dark);
}

.btn-lyrics:hover {
    background: #d0d0d0;
}

.btn-download-small {
    background: var(--blue-dark);
    color: white;
}

.btn-download-small:hover {
    background: #004080;
}

/* Popup Paroles */
.lyrics-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lyrics-modal.active {
    display: flex;
}

.lyrics-content {
    background: #ffcfa0;
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lyrics-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
}

.lyrics-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-dark);
}

.close-lyrics {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-lyrics:hover {
    color: var(--blue-dark);
}

.lyrics-controls {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.lyrics-mode-toggle {
    display: flex;
    gap: 0.25rem;
    background: #f0f0f0;
    padding: 0.25rem;
    border-radius: 8px;
}

.mode-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
    min-width: 80px;
}

.mode-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.mode-btn.active {
    background: var(--blue-dark);
    color: white;
}

.mode-btn.active:hover {
    background: #004080;
}

/* Mode Split : élargir la fenêtre */
.lyrics-content.lyrics-split-mode {
    max-width: 1000px;
}

.lyrics-body {
    margin-top: 1rem;
}

.lyrics-text {
    color: var(--blue-dark);
    line-height: 1.8;
    white-space: pre-line;
    font-size: 1rem;
}

.lyrics-side-by-side {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.lyrics-side-by-side.active {
    display: grid;
}

.lyrics-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.lyrics-column-text {
    color: var(--blue-dark);
    line-height: 1.8;
    white-space: pre-line;
    font-size: 0.95rem;
}

/* Audio Player */
.audio-player {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-dark);
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: bottom 0.3s ease;
    width: 90%;
    max-width: 600px;
}

.audio-player.active {
    bottom: 0;
}

.audio-player audio {
    width: 100%;
    outline: none;
}

.close-player {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* Contact Section */
.contact {
    background: #ffa726;
    text-align: center;
}

.contact-content p {
    color: var(--blue-dark);
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Bouton mobile (pour appareils tactiles) */
.contact-mobile {
    display: none; /* Caché par défaut sur desktop */
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--blue-dark);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
    min-width: 300px;
}

.contact-mobile:hover {
    transform: translateY(-3px);
    background: #004080;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-mobile svg {
    stroke-width: 2;
}

/* Texte simple desktop */
.contact-desktop {
    display: flex; /* Toujours visible (fallback) */
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--blue-dark);
    font-weight: 500;
    margin-top: 1rem;
}

.contact-desktop svg {
    stroke-width: 2;
}

/* Footer */
.footer {
    background: var(--blue-dark);
    padding: 2rem 0;
    text-align: center;
    color: white;
    border-top: 1px solid var(--orange-bg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero-about-title {
        font-size: 2.2rem;
    }

    .hero-about-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-about-content p {
        font-size: 1.1rem;
    }

    .song-item {
        flex-wrap: wrap;
    }

    .song-item-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .contact-mobile {
        min-width: auto;
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-play-all {
        font-size: 1rem;
        padding: 0.85rem 2rem;
    }

    /* Paroles responsive */
    .lyrics-content {
        max-width: 100%;
        padding: 1.5rem;
        max-height: 90vh;
    }

    .lyrics-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .lyrics-title {
        font-size: 1.2rem;
        width: 100%;
    }

    .lyrics-controls {
        width: 100%;
        justify-content: space-between;
    }

    .close-lyrics {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    /* Masquer le bouton Split sur mobile */
    .mode-btn[data-mode="split"] {
        display: none !important;
    }

    /* En mode split sur mobile (si forcé), afficher en colonne */
    .lyrics-side-by-side {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .song-item {
        padding: 1rem;
    }

    .song-item-play {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .btn-lyrics, .btn-download-small {
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* ====================================
   ANNOUNCEMENTS WINDOW (Communication)
   ==================================== */
.announcements-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-height: 450px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(500px);
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.announcements-widget.visible {
    transform: translateY(0);
}

.announcements-header {
    background: var(--gradient);
    color: white;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.announcements-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcements-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.announcements-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.announcements-body {
    padding: 1rem;
    overflow-y: auto;
    max-height: 350px;
    flex: 1;
}

.announcement-item {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 0.875rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.announcement-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.announcement-item:last-child {
    margin-bottom: 0;
}

.announcement-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.announcement-icon {
    font-size: 1.25rem;
}

.announcement-date {
    font-size: 0.75rem;
    color: #6c757d;
    margin-left: auto;
}

.announcement-message {
    color: var(--blue-dark);
    font-size: 0.9rem;
    line-height: 1.5;
}

.announcement-type-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0.5rem;
}

.announcement-type-badge.info {
    background: #d1ecf1;
    color: #0c5460;
}

.announcement-type-badge.concert {
    background: #d4edda;
    color: #155724;
}

.announcement-type-badge.news {
    background: #fff3cd;
    color: #856404;
}

.announcement-type-badge.contact {
    background: #f8d7da;
    color: #721c24;
}

/* Announcements collapsed state */
.announcements-widget.collapsed .announcements-body {
    display: none;
}

.announcements-widget.collapsed {
    max-height: auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
    body {
        /* Ajouter un padding en bas pour que le footer soit visible même avec la fenêtre des actualités */
        padding-bottom: 350px;
    }

    .announcements-widget {
        width: calc(100% - 40px);
        max-width: 350px;
        bottom: 10px;
        right: 10px;
    }
}

/* ====================================
   OWNER MODE - ADMIN PANEL
   ==================================== */
.owner-mode-indicator {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    animation: slideInRight 0.3s ease-out;
}

.owner-mode-indicator.active {
    display: block;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.admin-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    transition: right 0.3s ease-out;
    overflow-y: auto;
}

.admin-panel.open {
    right: 0;
}

.admin-panel-header {
    background: var(--dark-bg);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-panel-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.admin-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.admin-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.admin-panel-body {
    padding: 1.5rem;
}

.admin-section {
    margin-bottom: 2rem;
}

.admin-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.admin-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    margin-top: 0.5rem;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 0, 0.3);
}

.admin-btn:active {
    transform: translateY(0);
}

.admin-toggle-btn {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    transition: transform 0.2s;
}

.admin-toggle-btn.visible {
    display: block;
}

.admin-toggle-btn:hover {
    transform: translateY(-2px);
}

/* Announcement editor */
.announcement-editor {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.announcement-editor textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    resize: vertical;
    margin-bottom: 0.75rem;
}

.announcement-editor textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.announcement-editor select,
.announcement-editor input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.announcement-editor select:focus,
.announcement-editor input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.editor-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-save {
    background: #28a745;
}

.btn-cancel {
    background: #6c757d;
}

.btn-delete {
    background: #dc3545;
}

/* Stats display */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Song stats inline (sur la même ligne que la durée) */
.song-stats {
    display: inline-flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #6c757d;
    margin-left: 1rem;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-icon {
    font-size: 0.85rem;
}

/* ================================================
   GLOBAL STATS SECTION (Owner Mode)
   ================================================ */
.global-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin-top: 3rem;
}

.global-stats .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Stats summary boxes */
.stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Stats chart */
.stats-chart {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 450px;
    position: relative;
}

.stats-chart canvas {
    width: 100% !important;
    height: 400px !important;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .global-stats {
        padding: 2rem 0;
    }

    .stats-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stats-chart canvas {
        height: 300px;
    }
}
