body { font-family: 'Roboto', sans-serif; background-color: #F0FDF4; }
        
          /* Layout & Animations */
          .chart-container { position: relative; width: 100%; height: 350px; margin: 0 auto; }
          .hidden { display: none !important; }
          .fade-in { animation: fadeIn 0.4s ease-in-out; }
          @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
          
          /* Interactivité */
          .card-interactive { cursor: pointer; transition: all 0.3s ease; }
          .card-interactive:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
          
          /* Formulaires */
          .input-field { width: 100%; padding: 12px; border-radius: 0.75rem; border: 1px solid #e2e8f0; background: #fff; outline: none; transition: border-color 0.2s; }
          .input-field:focus { border-color: #10b981; ring: 2px solid #10b981; }
          textarea.input-field { min-height: 120px; resize: vertical; }
          
          /* Mode Édition */
          .editable-highlight { border: 2px dashed #F59E0B; cursor: text; border-radius: 4px; position: relative; background-color: rgba(254, 243, 199, 0.3); }
          .editable-highlight:hover::after { content: '✎ Modifier'; position: absolute; top: -20px; right: 0; background: #F59E0B; color: white; font-size: 10px; padding: 2px 6px; border-radius: 4px; pointer-events: none; z-index: 50; font-weight: bold; }
          .edit-mode-active body { border-top: 4px solid #F59E0B; }
          
          /* Typography & Layout Helpers */
          .section-title { font-size: 1.65rem; line-height: 2rem; font-weight: 700; color: #064E3B; margin-bottom: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
          @media (min-width: 768px) { .section-title { font-size: 1.875rem; line-height: 2.25rem; } }
          .text-justify { text-align: justify; }
          
          /* Collapsible Sections */
          .collapsible-wrapper { max-height: 0; overflow: hidden; transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out; opacity: 0; padding-bottom: 0; }
          .expanded .collapsible-wrapper { max-height: 2000px; opacity: 1; padding-bottom: 20px; }
          .toggle-arrow { transition: transform 0.3s ease; cursor: pointer; }
          .expanded .toggle-arrow { transform: rotate(180deg); }
          
          /* Update Widget */
          #updateContainer { position: fixed; bottom: 20px; right: 20px; display: flex; align-items: center; justify-content: flex-end; z-index: 9999; gap: 10px; font-family: Arial, sans-serif; }
          #refreshBtn { background-color: #166534; color: white; border: none; border-radius: 50%; width: 60px; height: 60px; font-size: 35px; cursor: pointer; box-shadow: 0 4px 8px rgba(0,0,0,0.3); display: flex; justify-content: center; align-items: center; padding: 0; margin: 0; line-height: 1; transition: background-color 0.3s, transform 0.2s; outline: none; -webkit-tap-highlight-color: transparent; user-select: none; }
          #refreshBtn:active { transform: scale(0.95); background-color: #14532d; }
          .update-dot { position: absolute; top: 0; right: 0; width: 15px; height: 15px; background-color: #ef4444; border-radius: 50%; border: 2px solid white; display: none; }
          .rotating { animation: spin 1s linear infinite; }
          @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
          #updateAlert { display: none; flex-direction: row; align-items: center; }
          .update-text { color: #166534; font-weight: bold; font-size: 18px; margin-right: 5px; background: rgba(255,255,255,0.95); padding: 6px 10px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
          .arrow-pointer { font-size: 28px; color: #166534; margin-right: 5px; }
          .bouncing { animation: bounceLeft 0.5s ease-in-out 4; }
          @keyframes bounceLeft { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-10px); } }
          
          /* What's New Overlay */
          #wn-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); z-index: 10000; display: none; justify-content: center; align-items: center; backdrop-filter: blur(5px); opacity: 0; transition: opacity 0.3s ease; }
          #wn-modal { background: white; width: 90%; max-width: 400px; border-radius: 20px; padding: 25px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); text-align: center; position: relative; transform: translateY(20px); transition: transform 0.3s ease; }
          .wn-header { margin-bottom: 20px; }
          .wn-badge { background-color: #dcfce7; color: #166534; font-size: 10px; text-transform: uppercase; font-weight: bold; padding: 4px 8px; border-radius: 12px; display: inline-block; margin-bottom: 10px; }
          .wn-title { font-size: 22px; font-weight: 900; color: #1f2937; margin: 0; }
          .wn-slides-container { height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
          .wn-slide { display: none; width: 100%; animation: slideIn 0.4s ease forwards; }
          @keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
          .wn-icon { font-size: 50px; margin-bottom: 15px; display: block; }
          .wn-slide-title { font-size: 18px; font-weight: bold; color: #166534; margin-bottom: 10px; display: block; }
          .wn-desc { font-size: 14px; color: #6b7280; line-height: 1.5; }
          .wn-dots { display: flex; justify-content: center; gap: 8px; margin: 20px 0; }
          .wn-dot { width: 8px; height: 8px; background-color: #e5e7eb; border-radius: 50%; transition: background-color 0.3s; }
          .wn-dot.active { background-color: #166534; width: 20px; border-radius: 4px; }
          #wn-btn { background-color: #166534; color: white; border: none; width: 100%; padding: 15px; border-radius: 12px; font-size: 16px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; display: flex; justify-content: center; align-items: center; gap: 8px; }
          #wn-btn:hover { background-color: #14532d; }
          .show-modal { display: flex !important; opacity: 1 !important; }
          .show-modal #wn-modal { transform: translateY(0) !important; }
          .wn-loader { border: 4px solid #f3f3f3; border-top: 4px solid #166534; border-radius: 50%; width: 30px; height: 30px; animation: spin 1s linear infinite; margin: 0 auto; }
          
          /* Friends UI */
          .friend-avatar { width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: white; border: 2px solid white; box-shadow: 0 2px 5px rgba(0,0,0,0.1); cursor: pointer; transition: transform 0.2s; font-size: 18px; user-select: none; }
          .friend-avatar:hover { transform: scale(1.1); }
          .friend-avatar.add-btn { background-color: #f1f5f9; color: #cbd5e1; border: 2px dashed #cbd5e1; }
          .friend-avatar.add-btn:hover { border-color: #10b981; color: #10b981; }

        /* CALI TEAM STYLES */
        .bubble-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            border-radius: 1rem;
            border-width: 1px;
            border-style: solid;
            cursor: pointer;
            transition: transform 0.1s ease, background-color 0.2s;
            height: 120px;
        }
        .bubble-card:active {
            transform: scale(0.95);
        }
        .bubble-icon {
            font-size: 2.5rem;
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .bubble-title {
            font-weight: 900;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        /* Scrollbar caché pour les filtres */
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

        /* --- JEUX STYLES --- */
        #cali-games-list > div:active {
            transform: scale(0.95);
            background-color: #f8fafc; /* slate-50 */
        }

/* Application de la police Oswald aux titres */
h1, h2, h3, .section-title, .bubble-title, .wn-title {
    font-family: 'Oswald', sans-serif !important;
    letter-spacing: 0.5px;
    text-transform: uppercase; /* Optionnel : rend les titres plus "pro" */
}
