        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000;
            overflow: hidden;
            height: 100vh;
        }

        .container {
            /* make the container truly fullscreen and centered */
            width: 100vw;
            max-width: none;
            height: 100vh;
            margin: 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        /* Video Background */
        .live-video {
            /* full-bleed video area centered */
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.1);
            font-size: 120px;
            z-index: 1;
        }

        /* Make Video.js fill the live-video area and crop to cover */
        .live-video .video-js {
            width: 100% !important;
            height: 100% !important;
        }

        /* ensure the underlying video uses object-fit: cover for center-crop */
        .video-js .vjs-tech {
            object-fit: cover;
            object-position: center center;
        }

        /* Top Bar */
        .top-bar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px 16px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            z-index: 10;
            background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
        }

        .close-btn {
            width: 32px;
            height: 32px;
            color: #fff;
            cursor: pointer;
        }

        .top-right {
            display: flex;
            gap: 8px;
        }

        .icon-btn {
            width: 32px;
            height: 32px;
            color: #fff;
            cursor: pointer;
            opacity: 0.9;
        }

        /* Host Info */
        .host-info {
            position: absolute;
            top: 70px;
            left: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 10;
        }

        .host-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            border: 2px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
        }

        .host-details {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .host-name {
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .follow-btn {
            padding: 4px 16px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 4px;
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .follow-btn:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Live Badge & Stats */
        .live-stats {
            position: absolute;
            top: 70px;
            right: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: flex-end;
            z-index: 10;
        }

        .live-badge {
            background: linear-gradient(135deg, #ff0844, #ff4569);
            padding: 6px 12px;
            border-radius: 4px;
            color: #fff;
            font-weight: 600;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
            box-shadow: 0 2px 8px rgba(255,8,68,0.4);
        }

        .live-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #fff;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.2); }
        }

        .viewers-count {
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(10px);
            padding: 6px 12px;
            border-radius: 20px;
            color: #fff;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .viewers-count i {
            width: 14px;
            height: 14px;
        }

        /* Comments Section */
        .comments-section {
            position: absolute;
            bottom: 70px;
            left: 16px;
            right: 16px;
            max-height: 300px;
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .comment {
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(10px);
            padding: 8px 12px;
            border-radius: 20px;
            color: #fff;
            font-size: 13px;
            max-width: 80%;
            align-self: flex-start;
            animation: slideIn 0.3s ease;
            line-height: 1.4;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .comment-author {
            font-weight: 600;
            color: #ffd700;
            margin-right: 4px;
        }

        /* Gift Animation */
        .gift-animation {
            position: absolute;
            bottom: 200px;
            right: 20px;
            z-index: 15;
            animation: giftFloat 2s ease-out;
            pointer-events: none;
        }

        .gift-icon {
            font-size: 48px;
            filter: drop-shadow(0 0 10px rgba(255,215,0,0.6));
        }

        @keyframes giftFloat {
            0% {
                opacity: 1;
                transform: translateY(0) scale(0.5);
            }
            50% {
                opacity: 1;
                transform: translateY(-100px) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateY(-200px) scale(0.8);
            }
        }

        /* Side Actions */
        .side-actions {
            position: absolute;
            right: 12px;
            bottom: 120px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 10;
        }

        .action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #fff;
            cursor: pointer;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .action-btn i {
            width: 36px;
            height: 36px;
            stroke-width: 2;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        .action-btn span {
            font-size: 11px;
            margin-top: 4px;
            font-weight: 500;
        }

        /* Bottom Controls */
        .bottom-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 16px;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
            z-index: 10;
        }

        .input-container {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .comment-input {
            flex: 1;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 24px;
            padding: 10px 16px;
            color: #fff;
            font-size: 14px;
            outline: none;
        }

        .comment-input::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .gift-btn {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(255,107,107,0.4);
            transition: transform 0.2s;
        }

        .gift-btn:active {
            transform: scale(0.95);
        }

        .gift-btn i {
            width: 24px;
            height: 24px;
            color: #fff;
        }

        .share-btn {
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .share-btn:active {
            transform: scale(0.95);
        }

        .share-btn i {
            width: 20px;
            height: 20px;
            color: #fff;
        }

        /* Viewers List */
        .viewers-list {
            position: absolute;
            top: 140px;
            left: 16px;
            display: flex;
            gap: -8px;
            z-index: 10;
        }

        .viewer-avatar {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid #fff;
            background: linear-gradient(135deg, #667eea, #764ba2);
            font-size: 10px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: -8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .viewer-avatar:first-child {
            margin-left: 0;
        }
