        /* Styles de base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
		/* Mettre en Majuscule */
		h1, h2, h3 {
			text-transform: uppercase;
		}

        body {
            font-family: Arial, sans-serif;
            transition: all 0.3s ease;
            min-height: 100vh;
        }

        /* Sélecteur de thèmes fixe en haut */
        .theme-selector {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            border-bottom: 3px solid #ddd;
        }

        .theme-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .theme-btn {
            padding: 10px 15px;
            border: 2px solid transparent;
			border: 1px solid darkgray;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            color: white;
            text-shadow: 1px 1px 2px black;
            transition: all 0.3s ease;
            font-size: 12px;
            min-width: 120px;
            text-align: center;
        }

        .theme-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .theme-btn.active {
            border-color: #333;
            box-shadow: 0 0 20px rgba(0,0,0,0.4);
            transform: scale(1.1);
        }

        /* Contenu principal avec marge pour le sélecteur fixe */
        .main-content {
            margin-top: 80px;
            padding: 20px;
        }

        /* STYLES POUR LES ONGLETS */
        .tab-container {
            width: 100%;
            margin: 20px 0;
        }

        .tab-buttons {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
			border: 1px solid darkgray;
            border-radius: 10px 10px 0 0;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .tab-btn {
            flex: 1;
            padding: 15px 20px;
            border: 1px solid darkgray;
            background: transparent;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            color: inherit;
        }

        .tab-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .tab-btn.active {
            background: rgba(255, 255, 255, 0.2);
            font-weight: bold;
            box-shadow: inset 0 -3px 0 currentColor;
        }

        .tab-btn::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: currentColor;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .tab-btn.active::before {
            transform: scaleX(1);
        }

        .tab-content {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 0 10px 10px;
            padding: 25px;
            backdrop-filter: blur(5px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            min-height: 300px;
        }
		.tab-content ul, li {
			position: relative;
			margin-left: 50px;
		}

        .tab-panel {
            display: none;
            animation: fadeIn 0.3s ease-in-out;
        }

        .tab-panel.active {
            display: block;
        }

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

        /* Styles responsifs pour les onglets */
        @media (max-width: 768px) {
            .tab-buttons {
                flex-direction: column;
            }
            
            .tab-btn {
                border-radius: 0;
                text-align: left;
            }
        }

        /* Styles existants */
        @media only screen and (min-width: 1280px) {
            .main-content {
                width: 70%;
                margin-left: auto;
                margin-right: auto;
                margin-top: 80px;
            }
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        table th {
            text-align: center;
            color: white;
			background-color:black;
            text-shadow: 1px 2px 3px black;
            font-size: 11px;
            font-family: "Arial";
            padding: 10px;
        }

        table td {
            font-size: 11px;
            font-family: "Arial";
            padding: 8px;
            border: 1px solid #ddd;
        }

        table td.num { text-align: right; }
        table td.cent { text-align: center; }

        h1 {
            text-shadow: 2px 2px 3px black;
            margin: 20px 0;
			font-size: 44px;
        }

        h2.ombre {
            text-shadow: 1px 2px 3px black;
            text-transform: uppercase;
            font-size: 22px;
            font-weight: 300;
            line-height: 1.0909090909;
            margin: 15px 0;
        }

        h3.ombre {
            text-shadow: 2px 3px 4px black;
            text-transform: uppercase;
            font-size: 18px;
            font-weight: 300;
            line-height: 1.0909090909;
            margin: 12px 0;
        }

        h4.ombre {
            text-shadow: 1px 1px 2px black;
            font-size: 14px;
            font-weight: 300;
            line-height: 1.0909090909;
            margin: 10px 0;
        }

        hr.ombre {
            border: none;
            width: 100%;
            height: 5px;
            box-shadow: 1px 10px 10px -10px #333;
            margin: 20px 0;
        }

        p {
            text-align: justify;
            text-indent: 0;
            margin: 15px 0;
            line-height: 1.6;
        }

        .demo-section {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            backdrop-filter: blur(5px);
        }

        .color-info {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 15px;
            border-radius: 10px;
            font-size: 12px;
            max-width: 200px;
            backdrop-filter: blur(10px);
        }

        /* Styles spéciaux pour le contenu des onglets */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }

        .stat-item {
            text-align: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(5px);
            min-width: 120px;
        }

        .stat-number {
            font-size: 2em;
            font-weight: bold;
            display: block;
        }

        .config-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
        }

        .form-group {
            margin: 15px 0;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: inherit;
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: currentColor;
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
        }

        .btn-primary {
            background: currentColor;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

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