 .cursor-pointer {
            cursor: pointer;
        }

        .player-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            padding: 20px;
        }

        .player-container {
            position: relative;
            width: 100%;
            margin-bottom: 20px;
        }

        .player-image,
        .player-canvas {
            width: 100%;
            display: block;
            cursor: pointer;
            border-radius: 5px;
        }

        .player-canvas {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 40px;
            color: white;
            opacity: 0.8;
            cursor: pointer;
            transition: all 0.3s ease;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .controls {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            display: none;
            justify-content: space-between;
            padding: 0 15px;
        }

        .controls i {
            font-size: 20px;
            color: white;
            cursor: pointer;
            opacity: 0.8;
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
            background-color: rgba(0, 0, 0, 0.5);
            padding: 5px;
            border-radius: 50%;
        }

        .player-container.playing:hover .controls {
            display: flex;
        }

        .fullscreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            background-color: black;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .fullscreen .player-image,
        .fullscreen .player-canvas {
            max-height: 90vh;
            max-width: 90vw;
        }

        .fullscreen .controls {
            display: flex;
            bottom: 30px;
        }

        .fullscreen .play-button {
            font-size: 60px;
        }