.next-match {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 20px auto;
            padding: 60px;
            border-radius: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            animation: gradientAnimation 6s ease infinite;
            text-align: center;
            background: none; /* Removed the background */
        }

        @keyframes gradientAnimation {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .team-logos-horizontal {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        .team-logos-horizontal img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }

        .team-logos-horizontal img:hover {
            transform: scale(1.1);
        }

        .team-names-horizontal {
            font-size: 42px;
            font-weight: bold;
            text-align: center;
            margin-top: 25px;
            color: #fff;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
        }

        .team-names-horizontal .vs {
            color: #ffcc00;
            margin: 0 20px;
        }

        .game-details {
            font-size: 18px;
            color: #fff;
            margin-top: 15px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        }