html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }

        body {
            background: linear-gradient(135deg, #1a1a1a 0%, #1f2a1f 50%, #1a1a1a 100%);
            .container {
                padding-top: 120px;
                padding-left: 0;
                padding-right: 0;
                min-height: 100vh;
                width: 100%;
                max-width: 100vw;
                box-sizing: border-box;

                .title {
                    font-size: 4em;
                    font-weight: bold;
                    color: #4ade80;
                    text-align: center;
                    letter-spacing: 5px;
                    margin-bottom: 10px;
                    text-shadow: 0 0 8px rgba(74, 222, 128, 0.6), 0 0 16px rgba(74, 222, 128, 0.4);
                    animation: titleGlow 3s ease-in-out infinite alternate;
                }

                .subtitle {
                    font-size: 2em;
                    font-weight: bold;
                    color: #4ade80;
                    text-align: center;
                    margin-bottom: 60px;
                    letter-spacing: 5px;
                    text-shadow: 0 0 6px rgba(74, 222, 128, 0.5), 0 0 12px rgba(74, 222, 128, 0.3);
                    opacity: 0;
                    animation: fadeInUp 1s ease-out 0.5s forwards;
                }

                .filter-tabs {
                    display: flex;
                    justify-content: center;
                    flex-wrap: wrap;
                    gap: 20px;
                    margin: 0 auto 50px auto;
                    padding: 0 20px;
                    opacity: 0;
                    animation: fadeInUp 1s ease-out 1s forwards;
                    max-width: 100%;
                    box-sizing: border-box;

                    .filter-btn {
                        background: rgba(74, 222, 128, 0.1);
                        border: 2px solid #4ade80;
                        color: #4ade80;
                        padding: 12px 25px;
                        border-radius: 25px;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        font-weight: bold;
                        letter-spacing: 1px;
                        white-space: nowrap;

                        &:hover,
                        &.active {
                            background: #4ade80;
                            color: #0f172a;
                            box-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
                            transform: translateY(-2px);
                        }
                    }
                }

                .design-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                    gap: 40px;
                    max-width: 1200px;
                    margin: 0 auto;
                    padding: 0 20px 100px 20px;
                    width: 100%;
                    box-sizing: border-box;

                    .design-card {
                        position: relative;
                        background: rgba(255, 255, 255, 0.05);
                        border-radius: 20px;
                        overflow: hidden;
                        border: 2px solid rgba(74, 222, 128, 0.3);
                        cursor: pointer;
                        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                        opacity: 0;
                        transform: translateY(50px);
                        animation: fadeInUp 0.8s ease-out forwards;
                        backdrop-filter: blur(10px);
                        width: 100%;
                        box-sizing: border-box;
                        height: 400px;

                        &:nth-child(1) { animation-delay: 0.2s; }
                        &:nth-child(2) { animation-delay: 0.4s; }
                        &:nth-child(3) { animation-delay: 0.6s; }
                        &:nth-child(4) { animation-delay: 0.8s; }
                        &:nth-child(5) { animation-delay: 1s; }
                        &:nth-child(6) { animation-delay: 1.2s; }

                        &:hover {
                            transform: translateY(-10px) scale(1.02);
                            border-color: #4ade80;
                            box-shadow: 0 20px 40px rgba(74, 222, 128, 0.3);

                            .design-image {
                                img {
                                    transform: scale(1.1);
                                }
                            }

                            .design-overlay {
                                opacity: 1;
                            }
                        }

                        .design-image {
                            width: 100%;
                            height: 70%;
                            background: linear-gradient(45deg, #1e293b, #334155);
                            position: relative;
                            overflow: hidden;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                transition: transform 0.5s ease;
                            }

                            .design-overlay {
                                position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                background: linear-gradient(135deg, rgba(74, 222, 128, 0.8), rgba(74, 222, 128, 0.4));
                                opacity: 0;
                                transition: opacity 0.3s ease;
                                display: flex;
                                align-items: center;
                                justify-content: center;

                                .view-icon {
                                    font-size: 3em;
                                    color: white;
                                    animation: pulse 2s infinite;
                                }
                            }
                        }

                        .design-content {
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            right: 0;
                            background: linear-gradient(transparent, rgba(15, 23, 42, 0.95));
                            padding: 30px 20px 20px;
                            text-align: center;
                            height: 30%;
                            display: flex;
                            flex-direction: column;
                            justify-content: center;

                            .design-title {
                                font-size: 1.4em;
                                font-weight: bold;
                                color: #4ade80;
                                letter-spacing: 2px;
                                text-shadow: 0 0 10px rgba(74, 222, 128, 0.6);
                                margin: 0 0 8px 0;
                            }

                            .design-category {
                                font-size: 0.9em;
                                color: rgba(255, 255, 255, 0.7);
                                text-transform: uppercase;
                                letter-spacing: 1px;
                            }
                        }
                    }
                }
            }

            /* Modales */
            .modal {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(15px);
                z-index: 1000;
                justify-content: center;
                align-items: center;
                animation: fadeIn 0.3s ease-out;

                &.active {
                    display: flex;
                }

                .modal-content {
                    background: #1e293b;
                    border-radius: 20px;
                    padding: 40px;
                    max-width: 800px;
                    width: 90%;
                    max-height: 90vh;
                    overflow-y: auto;
                    text-align: center;
                    position: relative;
                    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
                    border: 2px solid rgba(74, 222, 128, 0.3);
                    animation: slideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                    box-sizing: border-box;

                    .close-btn {
                        position: absolute;
                        top: 20px;
                        right: 30px;
                        font-size: 2em;
                        color: #999;
                        cursor: pointer;
                        transition: color 0.3s;

                        &:hover {
                            color: #4ade80;
                        }
                    }

                    .modal-image {
                        width: 100%;
                        max-width: 600px;
                        height: 350px;
                        margin: 0 auto 30px;
                        background: linear-gradient(45deg, #1e293b, #334155);
                        border: 4px solid #4ade80;
                        border-radius: 15px;
                        overflow: hidden;
                        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }

                    .modal-title {
                        font-size: 2em;
                        font-weight: bold;
                        margin-bottom: 20px;
                        color: #4ade80;
                        letter-spacing: 3px;
                    }

                    .modal-details {
                        text-align: left;
                        margin-bottom: 30px;

                        .detail-item {
                            display: flex;
                            justify-content: space-between;
                            margin: 15px 0;
                            padding: 10px 0;
                            border-bottom: 1px solid rgba(74, 222, 128, 0.2);
                            flex-wrap: wrap;
                            gap: 10px;

                            .detail-label {
                                color: #4ade80;
                                font-weight: bold;
                                min-width: 120px;
                            }

                            .detail-value {
                                color: rgba(255, 255, 255, 0.8);
                                flex: 1;
                                text-align: right;
                            }
                        }
                    }

                    .view-btn {
                        background: linear-gradient(45deg, #4ade80, #22c55e);
                        border: none;
                        padding: 15px 30px;
                        border-radius: 25px;
                        color: #0f172a !important;
                        font-weight: bold;
                        font-size: 1.1em;
                        cursor: pointer;
                        transition: all 0.3s;
                        text-transform: uppercase;
                        letter-spacing: 1px;
                        text-decoration: none !important; /* Enlever le soulignement du lien */
                        display: inline-block; /* Pour que le padding fonctionne correctement */
                        text-align: center; /* Centrer le texte */
                        border-bottom: none !important; /* Forcer la suppression de toute bordure */

                        &:hover {
                            transform: translateY(-2px);
                            box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
                            text-decoration: none !important; /* Éviter le soulignement au survol */
                            border-bottom: none !important;
                            color: #0f172a !important;
                        }

                        &:focus {
                            outline: none; /* Enlever l'outline par défaut */
                            box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3);
                            text-decoration: none !important;
                            border-bottom: none !important;
                        }

                        &:active {
                            transform: translateY(0);
                            text-decoration: none !important;
                            border-bottom: none !important;
                        }

                        &:visited {
                            color: #0f172a !important; /* Garder la même couleur pour les liens visités */
                            text-decoration: none !important;
                            border-bottom: none !important;
                        }

                        &:link {
                            color: #0f172a !important;
                            text-decoration: none !important;
                            border-bottom: none !important;
                        }
                    }
                }
            }
        }

        /* Animations */
        @keyframes titleGlow {
            0% { 
                text-shadow: 0 0 8px rgba(74, 222, 128, 0.6), 0 0 16px rgba(74, 222, 128, 0.4); 
            }
            100% { 
                text-shadow: 0 0 12px rgba(74, 222, 128, 0.8), 0 0 24px rgba(74, 222, 128, 0.6); 
            }
        }

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

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1); 
            }
            50% { 
                transform: scale(1.1); 
            }
        }

        @keyframes fadeIn {
            from { 
                opacity: 0; 
            }
            to { 
                opacity: 1; 
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Classes utilitaires */
        .hidden {
            display: none !important;
        }

        /* Responsive - Tablettes */
        @media (max-width: 1024px) {
            body .container {
                .design-grid {
                    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 30px;
                }
            }
        }

        /* Responsive - Mobiles */
        @media (max-width: 768px) {
            body .container {
                padding-top: 80px;

                .title {
                    font-size: 2.5em;
                    letter-spacing: 2px;
                }

                .subtitle {
                    font-size: 1.3em;
                    letter-spacing: 2px;
                    margin-bottom: 30px;
                }

                .design-grid {
                    grid-template-columns: 1fr;
                    gap: 25px;
                    padding: 0 15px 100px 15px;

                    .design-card {
                        height: 300px;
                    }
                }
            }
        }

        /* Responsive - Petits mobiles */
        @media (max-width: 480px) {
            body .container {
                padding-top: 60px;

                .title {
                    font-size: 2em;
                    letter-spacing: 1px;
                }

                .subtitle {
                    font-size: 1.1em;
                    letter-spacing: 1px;
                }

                .design-grid {
                    .design-card {
                        height: 250px;
                    }
                }
            }
        }