

        .fullscreen-carousel {
            position: relative;
            width: 100vw;
            height: auto;
            overflow: hidden;
            background: #000;
        }

        .slides-container {
            display: flex;
            height: auto;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide {
            position: relative;
            min-width: 100vw;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .media-content {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* 控制按钮 */
        .carousel-control {
            position: fixed;
			    position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-control:hover {
            background: rgba(255,255,255,0.5);
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        /* 指示点 */
        .dots-container {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #fff;
            transform: scale(1.3);
        }

        /* 视频控制 */
        video {
            object-position: center;
        }

        video::-webkit-media-controls {
            display: none !important;
        }