 /* Styles spécifiques pour les mappings */
        .mapping-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .mapping-card {
            background: linear-gradient(160deg, #2e2e2e 0%, #1c1c1c 100%);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--card-shadow);
            border-left: 4px solid var(--primary-color);
            height: 100%;
        }

        .mapping-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 169, 159, 0.4);
        }

        .mapping-header {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .swiper {
            width: 100%;
            height: 100%;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .mapping-card:hover .swiper-slide img {
            transform: scale(1.05);
        }

        .mapping-content {
            padding: 1.5rem;
        }

        .mapping-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            font-family: 'Orbitron', sans-serif;
        }

        .mapping-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .mapping-meta-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            color: var(--text-secondary);
        }

        .mapping-meta-item i {
            color: var(--primary-color);
            width: 16px;
            text-align: center;
        }

        .mapping-platforms {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .platform-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 0.9rem;
        }

        .description-preview {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.6;
            max-height: 80px;
            overflow: hidden;
            position: relative;
        }

        .description-preview::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30px;
            background: linear-gradient(to bottom, rgba(28, 28, 28, 0), rgba(28, 28, 28, 1));
        }

        .mapping-features {
            margin-bottom: 1.5rem;
        }

        .mapping-features h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .features-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .feature-tag {
            background-color: rgba(0, 169, 159, 0.2);
            color: var(--primary-color);
            padding: 0.3rem 0.7rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .mapping-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .btn-details {
            padding: 0.7rem 1.5rem;
            background-color: var(--primary-color);
            color: white;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-details:hover {
            background-color: var(--primary-hover);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }

        .price-login {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .price-login:hover {
            color: white;
        }

        /* Filtres */
        .filters-section {
            background: linear-gradient(160deg, #2e3b4e, #1a2531);
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: var(--card-shadow);
        }

        .filters-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .filter-group {
            flex: 1;
            min-width: 200px;
        }

        .filter-group h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Orbitron', sans-serif;
            background: none;
            padding: 0;
            box-shadow: none;
        }

        .filter-group h3 i {
            color: var(--primary-color);
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .filter-option {
            padding: 0.5rem 1rem;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            color: var(--text-light);
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .filter-option.active {
            background-color: var(--primary-color);
            color: white;
            box-shadow: 0 0 10px rgba(0, 169, 159, 0.4);
        }

        .filter-option:hover:not(.active) {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .search-container {
            margin: 2rem 0;
            display: flex;
            justify-content: center;
        }

        .search-form {
            display: flex;
            gap: 1rem;
            width: 100%;
            max-width: 600px;
        }

        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
        }

        .search-form input:focus {
            outline: none;
            border-color: var(--primary-color);
            background-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 2px rgba(0, 169, 159, 0.2);
        }

        .search-form button {
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-form button:hover {
            background-color: var(--primary-hover);
            transform: translateY(-3px);
        }

        .no-results {
            text-align: center;
            padding: 3rem;
            background: rgba(15, 15, 15, 0.5);
            border-radius: 12px;
            margin: 2rem 0;
        }

        .no-results i {
            font-size: 3rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        /* Modal de connexion */
        .login-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .login-modal-content {
            background: linear-gradient(160deg, #2e3b4e, #1a2531);
            border-radius: 12px;
            padding: 2rem;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            animation: modalIn 0.3s ease forwards;
            transform: scale(0.8);
            opacity: 0;
        }

        @keyframes modalIn {
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: white;
        }

        .login-modal h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            text-align: center;
            font-family: 'Orbitron', sans-serif;
        }

        .login-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            color: var(--text-light);
            font-weight: bold;
        }

        .form-group input {
            padding: 0.8rem 1rem;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1rem;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            background-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 2px rgba(0, 169, 159, 0.2);
        }

        .login-modal-actions {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .mapping-gallery {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .mapping-gallery {
                grid-template-columns: 1fr;
            }
            
            .filters-container {
                flex-direction: column;
            }
            
            .filters-section {
                padding: 1rem;
            }
            
            .mapping-meta {
                flex-direction: column;
                gap: 0.5rem;
                align-items: flex-start;
            }
        }