@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
    body {
        background-color: #000000;
        color: #FFFFFF;
        font-family: 'Montserrat', sans-serif;
    }
    
    .jeux-container {
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .search-filters-section {
        background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
        border: 2px solid #7C1414;
        border-radius: 20px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.1);
    }
    
    .search-bar {
        position: relative;
        margin-bottom: 1.5rem;
    }
    
    .search-input {
        width: 100%;
        padding: 15px 50px 15px 20px;
        border: 2px solid #7C1414;
        border-radius: 25px;
        background: rgba(45, 45, 45, 0.8);
        color: #FFFFFF;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .search-input:focus {
        outline: none;
        border-color: #FF0000;
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
        background: rgba(45, 45, 45, 1);
    }
    
    .search-input::placeholder {
        color: #CCCCCC;
    }
    
    .search-btn {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, #FF0000, #7C1414);
        border: none;
        border-radius: 20px;
        padding: 10px 15px;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .search-btn:hover {
        background: linear-gradient(135deg, #7C1414, #FF0000);
        transform: translateY(-50%) scale(1.05);
    }
    
    .filters-row {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .filter-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-label {
        color: #FF0000;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .filter-select {
        padding: 8px 15px;
        border: 2px solid #7C1414;
        border-radius: 15px;
        background: rgba(45, 45, 45, 0.8);
        color: #FFFFFF;
        font-size: 0.9rem;
        min-width: 150px;
        transition: all 0.3s ease;
    }
    
    .filter-select:focus {
        outline: none;
        border-color: #FF0000;
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    }
    
    .filter-select option {
        background: #2d2d2d;
        color: #FFFFFF;
    }
    
    .results-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .results-count {
        color: #CCCCCC;
        font-size: 1rem;
    }
    
    .results-count .count-number {
        color: #FF0000;
        font-weight: 700;
    }
    
    .back-btn {
        background: linear-gradient(135deg, #666666, #444444);
        border: none;
        color: #FFFFFF;
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 20px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .back-btn:hover {
        background: linear-gradient(135deg, #777777, #555555);
        transform: translateY(-2px);
        color: #FFFFFF;
        text-decoration: none;
    }
    
    .games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .game-card {
        background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
        border: 2px solid #7C1414;
        border-radius: 15px;
        transition: all 0.3s ease;
        cursor: pointer;
        overflow: hidden;
        position: relative;
    }
    
    .game-card:hover {
        border-color: #FF0000;
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
        transform: translateY(-5px);
    }
    
    .game-image-container {
        position: relative;
        height: 200px;
        overflow: hidden;
    }
    
    .game-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .game-card:hover .game-image {
        transform: scale(1.05);
    }
    
    .game-rating {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.8);
        color: #FFD700;
        padding: 5px 10px;
        border-radius: 15px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    .game-genre {
        position: absolute;
        top: 10px;
        left: 10px;
        background: rgba(255, 0, 0, 0.8);
        color: white;
        padding: 4px 8px;
        border-radius: 10px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .game-info {
        padding: 1.5rem;
    }
    
    .game-title {
        color: #FF0000;
        font-weight: 700;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .game-original-title {
        color: #CCCCCC;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        font-style: italic;
    }
    
    .game-description {
        color: #E0E0E0;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .game-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #CCCCCC;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .game-owner {
        font-weight: 600;
        color: #FF0000;
    }
    
    .game-date {
        color: #999;
        font-size: 0.8rem;
    }
    
    .game-stars {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .stars {
        display: flex;
        gap: 2px;
    }
    
    .star {
        color: #FFD700;
        font-size: 1rem;
    }
    
    .star.empty {
        color: #666;
    }
    
    .rating-text {
        color: #CCCCCC;
        font-size: 0.9rem;
    }
    
    .game-actions {
        display: flex;
        gap: 0.5rem;
        justify-content: space-between;
        align-items: center;
    }
    
    .btn-contact {
        background: linear-gradient(135deg, #FF0000, #7C1414);
        border: none;
        color: #FFFFFF;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 15px;
        transition: all 0.3s ease;
        text-decoration: none;
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
    }
    
    .btn-contact:hover {
        background: linear-gradient(135deg, #7C1414, #FF0000);
        transform: translateY(-2px);
        color: #FFFFFF;
        text-decoration: none;
    }
    
    .availability-badge {
        background: #28a745;
        color: white;
        padding: 4px 8px;
        border-radius: 10px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 3rem;
        flex-wrap: wrap;
    }
    
    .page-btn {
        padding: 10px 15px;
        border: 2px solid #7C1414;
        border-radius: 10px;
        background: rgba(45, 45, 45, 0.8);
        color: #FFFFFF;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .page-btn:hover, .page-btn.active {
        background: linear-gradient(135deg, #FF0000, #7C1414);
        border-color: #FF0000;
        color: #FFFFFF;
        text-decoration: none;
        transform: translateY(-2px);
    }
    
    .page-btn.disabled {
        opacity: 0.5;
        cursor: not-allowed;
        pointer-events: none;
    }
    
    .no-results {
        text-align: center;
        padding: 3rem;
        color: #CCCCCC;
        grid-column: 1 / -1;
    }
    
    .no-results i {
        font-size: 4rem;
        color: #7C1414;
        margin-bottom: 1rem;
    }
    
    @media (max-width: 768px) {
        .games-grid {
            grid-template-columns: 1fr;
        }
        
        .search-filters-section {
            padding: 1.5rem;
        }
        
        .filters-row {
            flex-direction: column;
            align-items: stretch;
        }
        
        .filter-select {
            min-width: auto;
        }
        
        .game-actions {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .btn-contact {
            flex: none;
        }
    }
