        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #0f0f1a 0%, #1a1a33 100%);
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            overflow-x: hidden;
            padding: 2rem 0;
        }

        .container {
            position: relative;
            width: 90%;
            max-width: 900px;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 4rem;
        }

        .player-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .player-card {
            position: relative;
            width: 45%;
            padding: 2rem;
            background: #2a2a47;
            border: 2px solid #5a5ac9;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease-in-out;
            transform: translateY(0);
            overflow: hidden;
        }
        
        /* New clip-path logic to maintain horizontal layout on all screen sizes */
        .player-card.left {
            clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
            transform: translateX(-150%); /* Initial state for animation */
            animation: slideInLeft 1s forwards;
            animation-delay: 0.5s;
        }
        
        .player-card.right {
            clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
            transform: translateX(150%); /* Initial state for animation */
            animation: slideInRight 1s forwards;
            animation-delay: 0.5s;
        }

        /* Set animation delay for the second container to create a cascading effect */
        .container:nth-of-type(2) .player-card.left {
            animation-delay: 1.5s;
        }
        .container:nth-of-type(2) .player-card.right {
            animation-delay: 1.5s;
        }
        .container:nth-of-type(2) .vs-container {
            animation-delay: 1.5s;
        }

        /* Keyframes for animation */
        @keyframes slideInLeft {
            to { transform: translateX(0); }
        }

        @keyframes slideInRight {
            to { transform: translateX(0); }
        }

        /* New Shimmer effect */
        .player-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            transform: skewX(-20deg);
            pointer-events: none;
        }

        .player-card:hover::after {
            animation: shimmer 1s forwards;
        }

        @keyframes shimmer {
            100% {
                left: 100%;
            }
        }
        
        .player-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
        }

        .player-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .player-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 5px solid #7e5bef;
            object-fit: cover;
            margin-bottom: 1rem;
            box-shadow: 0 0 20px rgba(126, 91, 239, 0.8);
            animation: pulse-glow 2s infinite;
        }

        /* Opponent image styles */
        .player-card.opponent .player-image {
            border-color: #f7a23c;
            box-shadow: 0 0 20px rgba(247, 162, 60, 0.8);
            animation-name: pulse-glow-opponent;
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(126, 91, 239, 0.8); }
            50% { box-shadow: 0 0 30px rgba(126, 91, 239, 1); }
        }

        @keyframes pulse-glow-opponent {
            0%, 100% { box-shadow: 0 0 20px rgba(247, 162, 60, 0.8); }
            50% { box-shadow: 0 0 30px rgba(247, 162, 60, 1); }
        }

        .player-name {
            font-size: 1.5rem;
            font-weight: 900;
            background: linear-gradient(to right, #7e5bef, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: #fbfbfb;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        /* Opponent name styles */
        .player-card.opponent .player-name {
            background: linear-gradient(to right, #f7a23c, #f7ce8c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: #fbfbfb;
        }

        .player-id {
            font-size: 1rem;
            font-weight: 400;
            color: #ccc;
            margin-top: -0.1rem;
            margin-bottom: 0.5rem;
        }

        .vs-container {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 1rem;
            animation: bounce 2s infinite;
            animation-delay: 0.5s;
        }

        /* Opponent VS container styles */
        .vs-container.opponent .vs-shape {
            border-color: #f7a23c;
            box-shadow: 0 0 30px #f7a23c;
        }

        .vs-container.opponent .vs-text {
            text-shadow: 0 0 15px #f7a23c, 0 0 25px #f7a23c;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .vs-text {
            font-size: 4.5rem;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 0 15px #7e5bef, 0 0 25px #7e5bef;
            z-index: 1;
        }

        .vs-shape {
            position: absolute;
            width: 180px;
            height: 180px;
            background: rgba(42, 42, 71, 0.8);
            clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #e6ef5b;
            box-shadow: 0 0 30px #7e5bef;
        }

        .datetime-badge {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 0 0 10px #7e5bef;
            color: #fff;
            background: rgba(42, 42, 71, 0.6);
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            border: 1px solid #7e5bef;
            text-align: center;
            width: fit-content;
        }

        .support-votes-badge {
            background: rgba(42, 42, 71, 0.8);
            border: 1px solid #5a5ac9;
            border-radius: 0.5rem;
            padding: 0.5rem 1rem;
            margin-top: 1rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .vote-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .vote-button {
            background-color: #5a5ac9;
            color: #fff;
            border: none;
            border-radius: 0.25rem;
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .vote-button:hover {
            background-color: #7e5bef;
        }

        /* Search input and button styling */
        .search-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
            width: 90%;
            max-width: 500px;
        }

        .search-input {
            width: 100%;
            padding: 0.75rem;
            font-size: 1rem;
            background-color: #2a2a47;
            border: 2px solid #5a5ac9;
            border-radius: 0.5rem;
            color: #fff;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: #a78bfa;
            box-shadow: 0 0 10px #a78bfa;
        }

        .search-button {
            padding: 0.75rem 1.5rem;
            margin-left: 0.5rem;
            background: linear-gradient(to right, #7e5bef, #a78bfa);
            border: none;
            border-radius: 0.5rem;
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 5px 15px rgba(126, 91, 239, 0.4);
        }

        .search-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(126, 91, 239, 0.6);
        }

        /* Mobile adjustments to keep horizontal layout */
        @media (max-width: 768px) {
            body {
                height: auto;
            }
            .container {
                height: auto;
                padding: 2rem 0;
                margin-bottom: 2rem;
            }

            .player-row {
                /* Keep horizontal flex direction */
                flex-direction: row;
                gap: 0.5rem;
            }

            .player-card {
                width: 45%; /* Keep similar width on mobile */
                padding: 0.5rem; /* Reduce padding to fit content */
            }
            
            .player-name {
                font-size: 1.25rem; /* Reduce font size for player names */
            }

            .player-id {
                font-size: 0.75rem; /* Reduce font size for player IDs */
            }

            .vs-container {
                padding: 0 0.5rem; /* Reduce padding for vs container */
            }

            .vs-text {
                font-size: 2rem; /* Reduce font size for VS text */
            }

            .vs-shape {
                width: 80px; /* Reduce size of vs shape */
                height: 80px;
            }
        }
        