        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            min-height: 100vh;
            padding: 10px;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
        }

        h1 {
            text-align: center;
            color: #0d47a1;
            margin-bottom: 10px;
            font-size: 1.4em;
        }

        .subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 15px;
            font-size: 0.85em;
        }
        
        /* ============================================
           PAGE D'ACCUEIL - SÉLECTION ŒUVRE/MODULE
           ============================================ */
        .oeuvre-selector {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .oeuvre-selector h2 {
            color: #0d47a1;
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.2em;
        }

        .selector-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
        }

        .selector-group label {
            display: block;
            color: #0d47a1;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.9em;
        }

        .selector-group select {
            width: 100%;
            padding: 14px 12px;
            border: 2px solid #64b5f6;
            border-radius: 8px;
            font-size: 16px; /* Évite le zoom sur iOS */
            background: white;
            cursor: pointer;
            -webkit-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230d47a1' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
        }

        .selector-group select:focus {
            outline: none;
            border-color: #0d47a1;
            box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
        }
        
        .load-btn {
            display: block;
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #1976d2, #0d47a1);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
        }

        .load-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(13, 71, 161, 0.4);
        }

        .load-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .loading-indicator {
            display: none;
            text-align: center;
            color: #0d47a1;
            margin-top: 15px;
        }
        
        .loading-indicator.active {
            display: block;
        }
        
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #e3f2fd;
            border-radius: 50%;
            border-top-color: #0d47a1;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Lien vers Tally */
        .tally-link-container {
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #64b5f6;
        }
        
        .tally-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: #e8f5e9;
            color: #1b5e20;
            text-decoration: none;
            border-radius: 10px;
            font-weight: bold;
            font-size: 1em;
            transition: all 0.3s;
            border: 2px solid #81c784;
        }
        
        .tally-link:hover {
            background: #1b5e20;
            color: white;
        }
        
        .tally-link-text {
            font-size: 0.9em;
            color: #0d47a1;
            margin-top: 10px;
        }
        
        /* ============================================
           APPLICATION INTERACTIVE
           ============================================ */
        .app-section {
            display: none;
        }
        
        .app-section.active {
            display: block;
            animation: fadeIn 0.5s ease-out;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Bandeau info œuvre */
        .oeuvre-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: #e3f2fd;
            color: #0d47a1;
            border-radius: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
            border: 2px solid #64b5f6;
        }
        
        .oeuvre-header-info h2 {
            margin: 0;
            font-size: 1.4em;
        }
        
        .oeuvre-header-info p {
            margin: 3px 0 0;
            opacity: 0.9;
            font-size: 0.95em;
        }
        
        .btn-retour {
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 20px auto 0;
            padding: 14px 20px;
            background: #f5f5f5;
            color: #666;
            border: 2px solid #ddd;
            border-radius: 10px;
            cursor: pointer;
            font-size: 0.95em;
            transition: all 0.2s;
        }

        .btn-retour:hover {
            background: #e0e0e0;
            border-color: #bdbdbd;
        }
        
        /* Sélecteur de phrases */
        .phrase-selector {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px;
            margin-bottom: 30px;
            padding: 20px;
            background: #f5f5f5;
            border-radius: 10px;
            border: 1px solid #bdbdbd;
        }
        
        .phrase-btn {
            padding: 10px;
            border: 2px solid #64b5f6;
            background: white;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .phrase-btn:hover {
            background: #e3f2fd;
            border-color: #0d47a1;
        }
        
        .phrase-btn.active {
            background: #0d47a1;
            color: white;
            border-color: #0d47a1;
        }
        
        .phrase-title {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .phrase-level {
            font-size: 0.85em;
            opacity: 0.8;
        }
        
        /* ============================================
           SÉLECTEUR DE VARIATIONS (MULTI-TYPES)
           ============================================ */
        .variation-selector {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 20px;
            padding: 20px;
            border-radius: 10px;
            position: relative;
            animation: slideDown 0.3s ease-out;
            border: 2px solid;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .variation-selector-label {
            position: absolute;
            top: -10px;
            left: 20px;
            color: white;
            padding: 5px 15px;
            border-radius: 10px;
            font-size: 0.9em;
            font-weight: bold;
        }
        
        /* Styles par type de transformation */
        .variation-selector.type-pronom {
            background: #e3f2fd;
            border-color: #64b5f6;
        }
        .variation-selector.type-pronom .variation-selector-label {
            background: #64b5f6;
            color: #0d47a1;
        }
        
        .variation-selector.type-personnage {
            background: #efebe9;
            border-color: #a1887f;
        }
        .variation-selector.type-personnage .variation-selector-label {
            background: #a1887f;
            color: #4e342e;
        }
        
        .variation-selector.type-temps {
            background: #e8f5e9;
            border-color: #81c784;
        }
        .variation-selector.type-temps .variation-selector-label {
            background: #81c784;
            color: #1b5e20;
        }
        
        .variation-selector.type-forme {
            background: #f3e5f5;
            border-color: #ba68c8;
        }
        .variation-selector.type-forme .variation-selector-label {
            background: #ba68c8;
            color: #4a148c;
        }
        
        /* Style pour les types mixtes/combinés */
        .variation-selector.type-mixte {
            background: #fff3e0;
            border-color: #ffb74d;
        }
        .variation-selector.type-mixte .variation-selector-label {
            background: #ffb74d;
            color: #e65100;
        }
        
        .variation-btn {
            padding: 8px 20px;
            border: 2px solid;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
            font-size: 1.1em;
            margin-top: 10px;
        }
        
        .variation-selector.type-pronom .variation-btn {
            background: #e3f2fd;
            border-color: #0d47a1;
            color: #0d47a1;
        }
        .variation-selector.type-pronom .variation-btn:hover {
            background: #0d47a1;
            color: white;
        }
        
        .variation-selector.type-personnage .variation-btn {
            background: #efebe9;
            border-color: #4e342e;
            color: #4e342e;
        }
        .variation-selector.type-personnage .variation-btn:hover {
            background: #4e342e;
            color: white;
        }
        
        .variation-selector.type-temps .variation-btn {
            background: #e8f5e9;
            border-color: #1b5e20;
            color: #1b5e20;
        }
        .variation-selector.type-temps .variation-btn:hover {
            background: #1b5e20;
            color: white;
        }
        
        .variation-selector.type-forme .variation-btn {
            background: #f3e5f5;
            border-color: #4a148c;
            color: #4a148c;
        }
        .variation-selector.type-forme .variation-btn:hover {
            background: #4a148c;
            color: white;
        }
        
        .variation-btn.selected {
            background: #ef5350 !important;
            border-color: #b71c1c !important;
            color: white !important;
        }
        
        /* Zone d'affichage des étiquettes */
        .display-area {
            min-height: 250px;
            margin-bottom: 30px;
            padding: 20px;
            background: #f5f5f5;
            border-radius: 10px;
            border: 2px solid #bdbdbd;
        }
        
        .etiquettes-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            min-height: 100px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            border: 2px dashed #bdbdbd;
        }
        
        .etiquette {
            padding: 12px 20px;
            border-radius: 10px;
            border: 3px solid;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            user-select: none;
            -webkit-user-select: none;
            -webkit-touch-callout: none;
            -webkit-tap-highlight-color: transparent;
            touch-action: none;
            position: relative;
        }
        
        .etiquette:hover {
            transform: scale(1.05);
        }
        
        .etiquette:active {
            transform: scale(0.95);
        }
        
        .etiquette.dragging {
            opacity: 0.5;
            z-index: 1000;
        }
        
        .etiquette.touch-dragging {
            position: fixed;
            z-index: 1001;
            opacity: 0.9;
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            pointer-events: none;
        }
        
        .etiquette.over {
            transform: scale(1.1);
        }
        
        .etiquette.placed {
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        /* ============================================
           CLASSES GRAMMATICALES - CODE COULEUR EXACT
           ============================================ */
        .etiquette[data-type="pronom"] {
            background: #e3f2fd;
            border-color: #64b5f6;
            color: #0d47a1;
        }
        
        .etiquette[data-type="verbe"] {
            background: #ffebee;
            border-color: #ef5350;
            color: #b71c1c;
        }
        
        .etiquette[data-type="nomPropre"] {
            background: #bbdefb;
            border-color: #42a5f5;
            color: #0d47a1;
        }
        
        .etiquette[data-type="nomCommun"] {
            background: #e3f2fd;
            border-color: #1e88e5;
            color: #0d47a1;
        }
        
        .etiquette[data-type="groupeNominal"] {
            background: #e3f2fd;
            border-color: #1e88e5;
            color: #0d47a1;
        }
        
        .etiquette[data-type="determinant"] {
            background: #efebe9;
            border-color: #a1887f;
            color: #4e342e;
        }
        
        .etiquette[data-type="adjectif"] {
            background: #e8f5e9;
            border-color: #81c784;
            color: #1b5e20;
        }
        
        .etiquette[data-type="preposition"] {
            background: #f5f5f5;
            border-color: #bdbdbd;
            color: #424242;
        }
        
        .etiquette[data-type="conjonction"] {
            background: #eeeeee;
            border-color: #9e9e9e;
            color: #424242;
        }
        
        .etiquette[data-type="adverbe"] {
            background: #f3e5f5;
            border-color: #ba68c8;
            color: #4a148c;
        }
        
        .etiquette[data-type="ponctuation"] {
            background: #fafafa;
            border-color: #bdbdbd;
            color: #212121;
        }
        
        .picto {
            display: inline-block;
            margin-right: 5px;
            font-size: 1.3em;
        }
        
        /* ============================================
           CONTRÔLES - 6 BOUTONS EN 3 LIGNES
           ============================================ */
        .controls {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .controls .btn-row-3 {
            margin-top: 20px;
        }
        
        .btn {
            padding: 12px 25px;
            border: 2px solid;
            border-radius: 10px;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn:hover {
            color: white;
        }
        
        .btn-ecouter-melange {
            background: #efebe9;
            border-color: #a1887f;
            color: #4e342e;
        }
        .btn-ecouter-melange:hover {
            background: #4e342e;
        }
        
        .btn-ecouter-correct {
            background: #e8f5e9;
            border-color: #81c784;
            color: #1b5e20;
        }
        .btn-ecouter-correct:hover {
            background: #1b5e20;
        }
        
        .btn-verifier {
            background: #e3f2fd;
            border-color: #64b5f6;
            color: #0d47a1;
        }
        .btn-verifier:hover {
            background: #0d47a1;
        }
        
        .btn-solution {
            background: #ffebee;
            border-color: #ef5350;
            color: #b71c1c;
        }
        .btn-solution:hover {
            background: #b71c1c;
        }
        
        .btn-liste {
            background: #bbdefb;
            border-color: #42a5f5;
            color: #0d47a1;
        }
        .btn-liste:hover {
            background: #0d47a1;
        }
        
        .btn-imprimer {
            background: #f3e5f5;
            border-color: #ba68c8;
            color: #4a148c;
        }
        .btn-imprimer:hover {
            background: #4a148c;
        }
        
        /* Feedback */
        .feedback {
            text-align: center;
            padding: 15px;
            margin-top: 20px;
            border-radius: 10px;
            font-size: 1.2em;
            font-weight: bold;
        }
        
        .feedback.success {
            background: #e8f5e9;
            color: #1b5e20;
            border: 2px solid #81c784;
        }
        
        .feedback.error {
            background: #ffebee;
            color: #b71c1c;
            border: 2px solid #ef5350;
        }
        
        /* ============================================
           PANNEAU LATÉRAL - LISTE DES PHRASES
           ============================================ */
        .phrases-list-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100%;
            background: white;
            box-shadow: -5px 0 20px rgba(0,0,0,0.1);
            transition: right 0.3s ease-out;
            z-index: 1000;
            overflow-y: auto;
            padding: 20px;
            border-left: 2px solid #bdbdbd;
        }
        
        .phrases-list-panel.open {
            right: 0;
        }
        
        .phrases-list-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #bdbdbd;
        }
        
        .phrases-list-title {
            font-size: 1.5em;
            color: #0d47a1;
        }
        
        .close-list-btn {
            background: none;
            border: none;
            font-size: 1.5em;
            cursor: pointer;
            color: #424242;
            transition: color 0.3s;
        }
        
        .close-list-btn:hover {
            color: #b71c1c;
        }
        
        .phrase-list-item {
            padding: 15px;
            margin-bottom: 10px;
            background: #f5f5f5;
            border-radius: 10px;
            border-left: 4px solid #64b5f6;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .phrase-list-item:hover {
            background: #e3f2fd;
        }
        
        .phrase-list-item.active {
            background: #0d47a1;
            color: white;
        }
        
        .phrase-list-number {
            font-weight: bold;
            color: #0d47a1;
            margin-bottom: 5px;
        }
        
        .phrase-list-item.active .phrase-list-number {
            color: white;
        }
        
        .phrase-list-text {
            font-size: 0.9em;
            line-height: 1.4;
        }
        
        .phrase-list-level {
            font-size: 0.8em;
            opacity: 0.7;
            margin-top: 5px;
        }
        
        /* Légende */
        .legende {
            margin-top: 40px;
            padding: 20px;
            background: #f5f5f5;
            border-radius: 10px;
            border: 1px solid #bdbdbd;
        }
        
        .legende h3 {
            color: #0d47a1;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .legende-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
        }
        
        .legende-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px;
            background: white;
            border-radius: 10px;
        }
        
        .legende-couleur {
            width: 30px;
            height: 30px;
            border-radius: 10px;
            border: 2px solid;
        }
        
        .status-message {
            text-align: center;
            padding: 30px;
            color: #7f8c8d;
            font-size: 1.1em;
        }
        
        .hidden {
            display: none !important;
        }
        
        /* ============================================
           BOUTON COPIER LE LIEN
           ============================================ */
        .btn-copier-lien {
            padding: 10px 20px;
            background: #e8f5e9;
            color: #1b5e20;
            border: 2px solid #81c784;
            border-radius: 10px;
            cursor: pointer;
            font-weight: bold;
            font-size: 0.95em;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-copier-lien:hover {
            background: #1b5e20;
            color: white;
        }
        
        .btn-copier-lien.copied {
            background: #1b5e20;
            color: white;
        }
        
        .oeuvre-header-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        /* Bouton Partager */
        .btn-partager {
            padding: 10px 20px;
            background: linear-gradient(135deg, #1976d2, #0d47a1);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 0.95em;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-partager:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
        }

        /* Popup partage */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-partage-content {
            background: white;
            padding: 25px 20px;
            border-radius: 16px;
            width: 90%;
            max-width: 400px;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s;
        }

        .popup-overlay.active .popup-partage-content {
            transform: scale(1);
        }

        .popup-close {
            position: absolute;
            top: 12px;
            right: 12px;
            background: none;
            border: none;
            font-size: 1.5em;
            cursor: pointer;
            color: #666;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .popup-close:hover {
            background: #f5f5f5;
        }

        .popup-partage-content h2 {
            color: #0d47a1;
            font-size: 1.3em;
            margin-bottom: 8px;
            text-align: center;
        }

        .popup-description {
            color: #666;
            font-size: 0.9em;
            text-align: center;
            margin-bottom: 20px;
        }

        .lien-partage-box {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }

        .lien-partage-box input {
            flex: 1;
            padding: 12px;
            border: 2px solid #64b5f6;
            border-radius: 8px;
            font-size: 0.85em;
            color: #333;
            background: #f5f5f5;
        }

        .btn-copier {
            padding: 12px 16px;
            background: #0d47a1;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
        }

        .partage-options {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .partage-btn {
            flex: 1;
            padding: 14px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9em;
            text-align: center;
        }

        .partage-whatsapp {
            background: #25d366;
            color: white;
        }

        .partage-email {
            background: #1976d2;
            color: white;
        }

        /* Toast notification */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #0d47a1;
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            z-index: 10000;
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            border: 2px solid #64b5f6;
        }
        
        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }
        
        .toast.success {
            background: #1b5e20;
            border-color: #81c784;
        }
        
        .toast-icon {
            font-size: 1.3em;
        }
        
        /* Zone lien direct sur la page d'accueil */
        .direct-link-info {
            margin-top: 20px;
            padding: 15px;
            background: #e3f2fd;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #64b5f6;
        }
        
        .direct-link-info p {
            color: #0d47a1;
            font-size: 0.9em;
            margin-bottom: 10px;
        }
        
        .direct-link-box {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .direct-link-input {
            padding: 10px 15px;
            border: 2px solid #64b5f6;
            border-radius: 10px;
            font-size: 0.9em;
            width: 300px;
            max-width: 100%;
            background: white;
            color: #0d47a1;
        }
        
        .btn-copy-small:hover {
            background: #0d47a1;
            color: white;
        }
        
        /* Footer */
        .site-footer {
            max-width: 1200px;
            margin: 20px auto 0;
            padding: 15px;
            text-align: center;
            background: #e3f2fd;
            border: 2px solid #64b5f6;
            font-size: 0.9em;
        }
        
        .site-footer a {
            color: #0d47a1;
            text-decoration: none;
            font-weight: bold;
        }
        
        .site-footer a:hover {
            text-decoration: underline;
        }
        
        .site-footer .copyright {
            color: #666;
            margin-top: 5px;
            font-size: 0.85em;
        }

        /* ============================================
           RESPONSIVE - Tablette (600px+)
           ============================================ */
        @media (min-width: 600px) {
            body {
                padding: 20px;
            }

            h1 {
                font-size: 1.8em;
            }

            .subtitle {
                font-size: 1em;
            }

            .selector-grid {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .selector-group {
                flex: 1;
                min-width: 180px;
            }

            .etiquette {
                font-size: 1.1em;
                padding: 10px 14px;
            }

            .controls {
                gap: 15px;
            }

            .btn {
                padding: 16px;
                font-size: 1em;
            }

            .oeuvre-header-info h2 {
                font-size: 1.3em;
            }
        }

        /* ============================================
           RESPONSIVE - Desktop (900px+)
           ============================================ */
        @media (min-width: 900px) {
            body {
                padding: 30px;
            }

            .container {
                max-width: 1000px;
            }

            h1 {
                font-size: 2.2em;
            }

            .oeuvre-selector {
                padding: 30px;
                border-radius: 16px;
            }

            .oeuvre-selector h2 {
                font-size: 1.5em;
                margin-bottom: 25px;
            }

            .selector-grid {
                gap: 20px;
            }

            .selector-group select {
                padding: 16px 14px;
            }

            .load-btn {
                padding: 18px;
                font-size: 1.2em;
                max-width: 400px;
                margin: 25px auto 0;
            }

            .oeuvre-header {
                padding: 20px;
                margin-bottom: 25px;
            }

            .oeuvre-header-info h2 {
                font-size: 1.5em;
            }

            .display-area {
                padding: 25px;
                margin-bottom: 25px;
            }

            .etiquettes-container {
                gap: 15px;
            }

            .etiquette {
                font-size: 1.2em;
                padding: 12px 18px;
            }

            .controls {
                gap: 20px;
                max-width: 800px;
                margin: 30px auto;
            }

            .btn {
                padding: 18px;
                font-size: 1.1em;
            }

            .btn-retour {
                max-width: 300px;
                margin: 20px auto 0;
                display: block;
            }

            .legende {
                padding: 25px;
            }

            .legende-items {
                gap: 15px;
            }
        }
