.danmaku-container {
    max-width: 100%;
    width: 100%;
    margin: 30px 0;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
}

.danmaku-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.danmaku-header h3 {
    color: #333;
    font-size: 22px;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.danmaku-icon { font-size: 24px; }

.danmaku-buttons {
    display: flex;
    gap: 12px;
}

.danmaku-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.normal-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.normal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.heart-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    box-shadow: 0 2px 10px rgba(245, 87, 108, 0.3);
}

.heart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-icon { font-size: 16px; }

.danmaku-scroll-area {
    min-height: 160px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.danmaku-track {
    position: absolute;
    width: 100%;
    height: 26px;
    line-height: 26px;
    overflow: visible;
}

.track-1 { top: 6px; }
.track-2 { top: 36px; }
.track-3 { top: 66px; }
.track-4 { top: 96px; }
.track-5 { top: 126px; }

.danmaku-item {
    position: absolute;
    white-space: nowrap;
    padding: 1px 5px;
    border-radius: 14px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes danmaku-scroll-1 {
    from { right: 0; }
    to { right: calc(100% + 100px); }
}

@keyframes danmaku-scroll-2 {
    from { right: 0; }
    to { right: calc(100% + 100px); }
}

@keyframes danmaku-scroll-3 {
    from { right: 0; }
    to { right: calc(100% + 100px); }
}

@keyframes danmaku-scroll-4 {
    from { right: 0; }
    to { right: calc(100% + 100px); }
}

@keyframes danmaku-scroll-5 {
    from { right: 0; }
    to { right: calc(100% + 100px); }
}

.danmaku-item.guest {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.danmaku-item.user {
    background: linear-gradient(135deg, #4ecdcc 0%, #3dbdbb 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
}

.danmaku-item.heart {
    background: linear-gradient(135deg, #ffb6c1 0%, #ff91a4 100%);
    color: #333;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.4);
}

.danmaku-item:hover {
    transform: scale(1.05);
    z-index: 100;
}

.danmaku-vote-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.3);
}

.danmaku-vote-badge.likes { color: #fff; }
.danmaku-vote-badge.dislikes { color: #fff; }

.danmaku-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e0e0, transparent);
    margin: 20px 0;
}

.danmaku-static {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    max-height: none;
    overflow-y: visible;
}

.danmaku-loading {
    text-align: center;
    padding: 30px;
    color: #999;
    font-size: 14px;
    width: 100%;
}

.static-item {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 14px;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    max-width: calc(100% - 10px);
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.static-content {
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 120px;
}

.static-username,
.static-count,
.static-reply-count,
.static-votes {
    flex-shrink: 0;
    white-space: nowrap;
}

.static-item:hover {
    transform: scale(1.05);
}

.static-item.guest {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
}

.static-item.user {
    background: linear-gradient(135deg, #4ecdcc 0%, #3dbdbb 100%);
    color: #fff;
}

.static-item.heart {
    background: linear-gradient(135deg, #ffb6c1 0%, #ff91a4 100%);
    color: #333;
    font-weight: 600;
}

.static-item.reply {
    background: rgba(108, 117, 125, 0.1);
    color: #666;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.static-content {
    font-size: 12px;
    color: inherit;
}

.static-username {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 8px;
    font-weight: 500;
}

.static-item.reply .static-username {
    color: #666;
}

.static-count {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.3);
    padding: 1px 8px;
    border-radius: 12px;
    color: inherit;
    font-weight: 500;
    margin-left: 8px;
}

.static-reply-count {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.3);
    padding: 1px 8px;
    border-radius: 12px;
    color: inherit;
    font-weight: 500;
    margin-left: 8px;
}

.static-votes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    font-size: 11px;
}

.static-vote-item {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.3);
    padding: 1px 6px;
    border-radius: 10px;
}

.static-item.reply .static-vote-item {
    background: rgba(108, 117, 125, 0.15);
}

.danmaku-modal,
.danmaku-detail-modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.danmaku-modal-content,
.danmaku-detail-content {
    background: #fff;
    margin: 8% auto;
    padding: 30px;
    border: 1px solid #e0e0e0;
    width: 90%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.danmaku-modal-close,
.danmaku-detail-close {
    color: #999;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 20px;
}

.danmaku-modal-close:hover,
.danmaku-detail-close:hover { color: #333; }

.danmaku-modal-content h3,
.danmaku-detail-content h3 {
    color: #333;
    margin: 0 0 20px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-icon { font-size: 22px; }

.quick-comments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.quick-comment {
    padding: 6px 16px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    color: #555;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-comment:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #fff;
}

#danmaku-content,
#reply-content {
    width: 100%;
    height: 100px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fafafa;
    color: #333;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}

#reply-content {
    height: 80px;
    margin-top: 10px;
}

#danmaku-content::placeholder,
#reply-content::placeholder { color: #aaa; }

#danmaku-content:focus,
#reply-content:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    background: #fff;
}

.danmaku-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.danmaku-form-row input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fafafa;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
}

.danmaku-form-row input::placeholder { color: #aaa; }
.danmaku-form-row input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    background: #fff;
}

.danmaku-logged-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f0f7ff;
    border: 1px solid #d0e0ff;
    border-radius: 10px;
    color: #333;
    font-size: 14px;
    margin-bottom: 15px;
}

.danmaku-logged-user .logged-icon {
    font-size: 18px;
}

.danmaku-modal-buttons {
    display: flex;
    gap: 12px;
}

.danmaku-submit-btn {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.danmaku-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.danmaku-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.danmaku-cancel-btn {
    padding: 12px 24px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 10px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.danmaku-cancel-btn:hover {
    background: #eee;
    color: #333;
}

.detail-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.detail-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
}

.detail-info {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-username {
    font-size: 17px;
    font-weight: 600;
    color: #333;
}

.detail-type {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 12px;
    width: fit-content;
}

.detail-type.normal { background: rgba(102, 126, 234, 0.15); color: #667eea; }
.detail-type.heart { background: rgba(245, 87, 108, 0.15); color: #f5576c; }
.detail-type.reply { background: rgba(78, 205, 196, 0.15); color: #3dbdbb; }

.detail-time {
    font-size: 12px;
    color: #999;
}

.detail-content {
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: pre-wrap;
    opacity: 0.8;
}

.detail-vote {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.vote-btn:hover {
    transform: scale(1.05);
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.vote-icon { font-size: 20px; line-height: 1; }
.vote-count { font-size: 14px; font-weight: 600; color: #333; }

.detail-reply-section {
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    margin-bottom: 12px;
    opacity: 0.8;
}

.detail-reply-section h4 {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-weight: 600;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

.detail-reply-section h4:hover {
    background: #e9ecef;
}

.detail-reply-section h4::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s;
}

.detail-reply-section h4.expanded::after {
    transform: rotate(180deg);
}

.detail-reply-form {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}

.detail-reply-form.expanded {
    max-height: 500px;
    opacity: 1;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
}

.detail-reply-form .danmaku-form-row {
    width: 100%;
    box-sizing: border-box;
}

.detail-reply-form .danmaku-form-row input {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.detail-reply-form textarea {
    height: 60px;
    margin-bottom: 10px;
}

.detail-replies {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.reply-item {
    display: flex;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 3px solid #3dbdbb;
    opacity: 0.8;
}

.reply-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
}

.reply-content {
    flex: 1;
}

.reply-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.reply-username {
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

.reply-time {
    font-size: 11px;
    color: #999;
}

.reply-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.reply-to {
    font-size: 12px;
    color: #667eea;
    font-weight: 500;
}

.reply-btn {
    font-size: 12px;
    color: #667eea;
    cursor: pointer;
    margin-left: 8px;
    font-weight: 500;
    transition: color 0.3s;
}

.reply-btn:hover {
    color: #764ba2;
    text-decoration: underline;
}

.sub-replies {
    margin-top: 8px;
    padding-left: 20px;
    border-left: 2px solid #e0e0e0;
    display: block;
}

.sub-replies .reply-item {
    margin-bottom: 8px;
}

.sub-replies .reply-item:last-child {
    margin-bottom: 0;
}

.dynamic-reply-form {
    margin-top: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dynamic-reply-textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
    margin-bottom: 10px;
    transition: border-color 0.3s;
}

.dynamic-reply-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.dynamic-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

.dynamic-form-row input {
    flex: 1;
    min-width: 0;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.dynamic-form-row input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    background: #fff;
}

.dynamic-reply-buttons {
    display: flex;
    gap: 10px;
}

.dynamic-reply-buttons .danmaku-submit-btn,
.dynamic-reply-buttons .danmaku-cancel-btn {
    padding: 8px 16px;
    font-size: 13px;
}

.detail-same-users {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-top: 1px solid #e9ecef;
    opacity: 0.8;
}

.detail-same-users h4 {
    color: #666;
    margin: 0 0 10px 0;
    font-size: 13px;
    font-weight: 600;
}

.same-users-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.same-user {
    padding: 4px 12px;
    background: rgba(78, 205, 196, 0.15);
    border-radius: 15px;
    color: #3dbdbb;
    font-size: 12px;
    font-weight: 500;
}

.danmaku-content-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    width: auto;
    border-radius: 8px;
    margin: 10px 0;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
}

.danmaku-content-image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.danmaku-image-lightbox {
    display: block;
    margin: 10px 0;
}

.danmaku-image-lightbox img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    width: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.danmaku-image-lightbox img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    overflow: auto;
}

.image-lightbox-overlay.active {
    display: flex;
}

.image-lightbox-overlay img {
    max-width: 95%;
    max-height: 95%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.image-lightbox-overlay .close-lightbox {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 1000001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: background 0.3s;
}

.image-lightbox-overlay .close-lightbox:hover {
    background: rgba(255, 255, 255, 0.3);
}

.image-upload-hint {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

@media (max-width: 600px) {
    .danmaku-container {
        padding: 15px;
        margin: 20px 0;
    }
    
    /* 移动端隐藏弹幕区 */
    .danmaku-scroll-area {
        display: none !important;
    }
    
    .danmaku-divider {
        display: none !important;
    }
    
    .danmaku-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .danmaku-header h3 {
        font-size: 16px;
    }
    
    .danmaku-buttons {
        width: 100%;
    }
    
    .danmaku-btn {
        padding: 8px 12px;
        font-size: 12px;
        flex: 1;
    }
    
    .danmaku-scroll-area {
        min-height: 120px;
    }
    
    .danmaku-track {
        height: 20px;
        line-height: 20px;
    }
    
    .track-1 { top: 4px; }
    .track-2 { top: 26px; }
    .track-3 { top: 48px; }
    .track-4 { top: 70px; }
    .track-5 { top: 92px; }
    
    .danmaku-item {
        font-size: 11px;
        padding: 3px 7px;
        border-radius: 12px;
        max-width: 180px;
    }
    
    .static-item {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .danmaku-modal-content,
    .danmaku-detail-content {
        width: 95%;
        padding: 15px;
        margin: 5% auto;
    }
    
    #modal-title {
        font-size: 15px;
    }
    
    .quick-comment {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    #danmaku-content,
    #reply-content {
        font-size: 13px;
        padding: 10px;
    }
    
    .danmaku-form-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .danmaku-form-row input {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .danmaku-modal-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .danmaku-submit-btn,
    .danmaku-cancel-btn {
        padding: 10px;
        font-size: 13px;
    }
    
    .detail-header {
        margin-bottom: 15px;
    }
    
    .detail-avatar img {
        width: 40px;
        height: 40px;
    }
    
    .detail-username {
        font-size: 14px;
    }
    
    .detail-type {
        font-size: 11px;
        padding: 2px 8px;
    }
    
    .detail-time {
        font-size: 11px;
    }
    
    .detail-content {
        padding: 12px;
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .detail-vote {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .vote-btn {
        padding: 6px 12px;
    }
    
    .vote-icon {
        font-size: 16px;
    }
    
    .vote-count {
        font-size: 12px;
    }
    
    .detail-reply-section h4 {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .detail-reply-form.expanded {
        padding: 12px;
    }
    
    .detail-replies {
        max-height: 150px;
    }
    
    .reply-item {
        padding: 8px;
    }
    
    .reply-avatar img {
        width: 28px;
        height: 28px;
    }
    
    .reply-username {
        font-size: 12px;
    }
    
    .reply-time {
        font-size: 10px;
    }
    
    .reply-text {
        font-size: 12px;
    }
    
    .detail-same-users {
        padding: 10px;
    }
    
    .detail-same-users h4 {
        font-size: 12px;
    }
    
    .same-user {
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .danmaku-logged-user {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .danmaku-logged-user .logged-icon {
        font-size: 14px;
    }
    
    .danmaku-content-image,
    .danmaku-image-lightbox img {
        max-height: 200px;
    }
}
