        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .game-card {
            background: rgba(41, 41, 41, 0.6);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 99, 71, 0.2);
        }

        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(255, 99, 71, 0.4);
        }

        .game-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .game-card-content {
            padding: 20px;
            text-align: center;
        }

        .game-card-content h3 {
            color: #ff6347;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .game-card-content p {
            color: #dcdcdc;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .game-platforms {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }

        .game-platforms img {
            width: 24px;
            height: 24px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .news-card {
            background: rgba(41, 41, 41, 0.6);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 99, 71, 0.2);
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 25px rgba(255, 99, 71, 0.4);
        }

        .news-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .news-card-content {
            padding: 20px;
        }

        .news-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .news-badge.nlr {
            background: linear-gradient(45deg, #ff6b9d, #ff8fab);
        }

        .news-badge.rfu {
            background: linear-gradient(45deg, #6c5ce7, #a29bfe);
        }

        .news-badge.autres {
            background: linear-gradient(45deg, #636e72, #b2bec3);
        }

        .news-card-content .news-date {
            font-size: 0.85rem;
            color: #999;
            margin-bottom: 10px;
        }

        .news-card-content h3 {
            color: #fffdfa;
            margin-bottom: 12px;
            font-size: 1.1rem;
            line-height: 1.4;
        }

        .news-card-content h3:hover {
            color: #ff6347;
        }

        .news-card-content p {
            color: #dcdcdc;
            font-size: 0.9rem;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .cta-small {
            display: inline-block;
            background-color: #ff6347;
            color: #fffdfa;
            padding: 8px 16px;
            text-decoration: none;
            font-size: 0.9rem;
            border-radius: 5px;
            transition: background-color 0.3s;
            font-weight: bold;
        }

        .cta-small:hover {
            background-color: #e55337;
        }

        .section-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .section-header h2 {
            text-align: center;
        }

        .view-all-container {
            text-align: center;
            margin-top: 30px;
        }

        .view-all {
            display: inline-block;
            color: #ff6347;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            padding: 12px 24px;
            border: 2px solid #ff6347;
            border-radius: 8px;
            background: rgba(255, 99, 71, 0.1);
            text-decoration: none !important;
        }

        .view-all:hover {
            color: #e55337;
            border-color: #e55337;
            background: rgba(255, 99, 71, 0.2);
        }

        .view-all::after,
        .view-all::before {
            display: none !important;
        }

        .news-badge {
            pointer-events: none;
            color: #fff !important;
        }

        .news-card:hover .news-badge {
            color: #fff !important;
        }

        @media only screen and (max-width: 768px) {
            .games-grid, .news-grid {
                grid-template-columns: 1fr;
            }
            
            .games-grid > a:nth-of-type(2),
            .games-grid > a:nth-of-type(3) {
                display: none !important;
            }
            
            .news-grid > a:nth-of-type(2),
            .news-grid > a:nth-of-type(3) {
                display: none !important;
            }
        }