* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: '微软雅黑', 'Arial', sans-serif; 
    line-height: 1.6;
    background-color: #F5F7FA;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overflow-x: hidden;
}

.header-section {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: #fff;
    padding: 50px 0 0;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 100px 100px;
    pointer-events: none;
}

.header-section h1 { 
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.header-section p { 
    font-size: 16px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.announcement-bar {
    background: rgba(255,255,255,0.1);
    padding: 15px 0 20px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.announcement-content {
    display: flex;
    align-items: center;
}

.announcement-content i {
    font-size: 16px;
    color: #FBBF24;
    flex-shrink: 0;
    margin-right: 15px;
}

.announcement-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    visibility: hidden;
}

.announcement-text::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    visibility: visible;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.file-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 50px;
    border: 1px solid #F0F0F0;
}

.file-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F5F5F5;
}

.file-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.file-icon i {
    font-size: 32px;
    color: #fff;
}

.file-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-meta {
    flex: 1;
    min-width: 0;
}

.file-meta h2 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-meta .file-size {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.file-meta .publish-time {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    display: flex;
    align-items: center;
}

.file-meta .publish-time i {
    margin-right: 6px;
    color: #1E90FF;
    font-size: 12px;
}

.file-meta .view-count {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    display: flex;
    align-items: center;
}

.file-meta .view-count i {
    margin-right: 6px;
    color: #1E90FF;
    font-size: 12px;
}

.file-meta .publisher-text {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    display: flex;
    align-items: center;
}

.file-meta .publisher-text i {
    margin-right: 6px;
    color: #1E90FF;
    font-size: 12px;
}

.info-module {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 100%);
    border-radius: 12px;
    border: 1px solid #E8ECF0;
}

.info-module .title {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-module .title .related-label {
    float: right;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: 0 2px 6px rgba(30, 144, 255, 0.3);
}

.info-module .content {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    word-wrap: break-word;
}

.user-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 100%);
    border-radius: 20px;
    border: 1px solid #D6E9FF;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(30, 144, 255, 0.3);
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.user-avatar i {
    font-size: 16px;
    color: #fff;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.status-normal {
    color: #20C997;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #E8F9F3 0%, #D4F1E9 100%);
    border-radius: 20px;
    border: 1px solid #C3E8DB;
}

.status-normal i {
    margin-right: 8px;
    font-size: 16px;
}

.status-error {
    color: #DC3545;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #FDE8E8 0%, #FBD5D5 100%);
    border-radius: 20px;
    border: 1px solid #F5C6C6;
}

.status-error i {
    margin-right: 8px;
    font-size: 16px;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 13px;
    color: #1a1a1a;
    margin-right: 10px;
    margin-bottom: 8px;
    font-weight: 500;
    background: linear-gradient(135deg, #F5F9FF 0%, #E8F2FF 100%);
    border: 1px solid #D0E8FF;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(30, 144, 255, 0.05);
}

.tag-badge:hover {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: #fff;
    border-color: #1E90FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.25);
}

.tag-badge:last-child {
    margin-right: 0;
}

.related-downloads-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(135deg, #F5F9FF 0%, #E8F2FF 100%);
    border: 1px solid #D0E8FF;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(30, 144, 255, 0.05);
}

.related-download-item:hover {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    border-color: #1E90FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.25);
}

.related-download-item:hover .related-download-name,
.related-download-item:hover .related-download-size,
.related-download-item:hover .related-download-date,
.related-download-item:hover .related-download-arrow {
    color: #fff;
}

.related-download-info {
    flex: 1;
}

.related-download-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.related-download-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #666;
    transition: color 0.3s ease;
}

.related-download-size,
.related-download-date {
    display: flex;
    align-items: center;
}

.related-download-arrow {
    color: #1E90FF;
    font-size: 14px;
    transition: all 0.3s ease;
}

.related-download-item:hover .related-download-arrow {
    transform: translateX(4px);
}

.download-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.download-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.download-btn i {
    font-size: 18px;
}

.request-resource-btn {
    width: 100%;
    padding: 14px 24px;
    background: #F0F9FF;
    color: #0284C7;
    border: 2px dashed #7DD3FC;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.request-resource-btn:hover {
    background: #E0F2FE;
    border-color: #0EA5E9;
    color: #0369A1;
    transform: translateY(-2px);
}

.request-resource-btn i {
    font-size: 16px;
    color: #0EA5E9;
}

.announcement-box {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF3CD 100%);
    border-radius: 12px;
    border: 1px solid #FFE082;
}

.announcement-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #FF6B00;
    margin-bottom: 10px;
}

.announcement-header i {
    font-size: 18px;
}

.announcement-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.stats-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #F0F8FF 0%, #E6F3FF 100%);
    border-radius: 12px;
    border: 1px solid #B3D9FF;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.stat-item i {
    color: #1E90FF;
    font-size: 16px;
}

.stat-item span {
    color: #666;
}

.ad-section-small {
    margin: 20px 0;
}

.ad-banner-small {
    width: 100%;
    position: relative;
}

.ad-label {
    position: absolute;
    top: 0;
    left: 0;
    background: #FF6B6B;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 8px 0 8px 0;
    font-weight: 600;
    z-index: 10;
}

.ad-placeholder-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border: 2px dashed #CED4DA;
    border-radius: 8px;
    color: #6C757D;
}

.ad-placeholder-small i {
    font-size: 24px;
    margin-bottom: 8px;
}

.ad-placeholder-small p {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.ad-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ad-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 0 20px;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ad-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
}

.ad-image {
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ad-image:hover img {
    transform: scale(1.05);
}

.safety-section {
    text-align: center;
    padding: 30px 0;
    background-color: #F0F8FF;
    border-top: 1px solid #E6F3FF;
}

.safety-section .safety-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-section {
    text-align: center;
    padding: 40px 0;
    background-color: #fff;
    border-top: 1px solid #E8ECF0;
    margin-top: 50px;
}

.footer-section .copyright {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-section .safety-tags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.safety-tag {
    background-color: #fff;
    color: #1E90FF;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    border: 1px solid #E6F3FF;
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.08);
    transition: all 0.3s ease;
}

.safety-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.15);
}

.safety-tag i {
    margin-right: 6px;
    font-size: 14px;
}

.copyright-section {
    text-align: center;
    padding: 30px 0;
    background-color: #fff;
    border-top: 1px solid #E8ECF0;
}

.copyright-section .copyright-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.copyright-section .copyright-main {
    min-width: 300px;
}

.copyright-section .copyright {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

.copyright-section .copyright i {
    margin-right: 5px;
    color: #1E90FF;
}

.copyright-section .copyright-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.copyright-section .copyright-link {
    color: #1E90FF;
    text-decoration: none;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 15px;
    background: linear-gradient(135deg, #F5F9FF 0%, #E8F2FF 100%);
    border: 1px solid #D0E8FF;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copyright-section .copyright-link:hover {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: #fff;
    border-color: #1E90FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.25);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 16px;
    max-width: 700px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 28px 32px;
    border-bottom: 1px solid #E8ECF0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #333;
    background: #F5F5F5;
}

.modal-body {
    padding: 20px 24px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #E8ECF0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.password-form {
    max-width: 400px;
    margin: 60px auto;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border: 1px solid #F0F0F0;
}

.password-form h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.password-form .input-group {
    position: relative;
    margin-bottom: 16px;
}

.password-form .form-control {
    width: 100%;
    padding: 14px 16px;
    padding-left: 44px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-size: 14px;
}

.password-form .form-control:focus {
    outline: none;
    border-color: #1E90FF;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.password-form .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 14px;
}

.password-form .btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.password-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 144, 255, 0.4);
}

.download-tip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #EFF6FF;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #1E90FF;
    border: 1px solid #BFDBFE;
}

.download-tip i {
    font-size: 14px;
}

.cloud-option {
    display: flex;
    align-items: center;
    padding: 14px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.cloud-option:hover {
    border-color: #1E90FF;
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.1);
}

.cloud-option:last-child {
    margin-bottom: 0;
}

.cloud-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 14px;
    background: #fff;
    border: 1px solid #E2E8F0;
}

.cloud-icon i {
    font-size: 20px;
    color: #94A3B8;
}

.cloud-info {
    flex: 1;
}

.cloud-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

.cloud-info p {
    font-size: 13px;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-btn {
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: #fff;
    border: none;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    font-weight: 500;
}

.copy-btn:hover {
    opacity: 0.9;
}

.cloud-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.cloud-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.4);
}

.copy-success-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1E90FF 0%, #00BFFF 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    z-index: 10000;
    box-shadow: 0 4px 16px rgba(30, 144, 255, 0.4);
}

.copy-success-toast i {
    color: #4ADE80;
}

.alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-danger {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    color: #DC2626;
    border: 1px solid #FECACA;
}

.alert-success {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    color: #16A34A;
    border: 1px solid #BBF7D0;
}

@media (max-width: 768px) {
    .header-section {
        padding: 40px 0 0;
    }
    
    .header-section h1 { 
        font-size: 24px;
    }
    
    .header-section p { 
        font-size: 14px;
    }
    
    .file-card {
        padding: 20px;
        margin: 0 12px 30px;
        border-radius: 14px;
    }
    
    .file-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .file-icon {
        margin-right: 0;
        margin-bottom: 16px;
        width: 60px;
        height: 60px;
    }
    
    .file-meta {
        text-align: center;
    }
    
    .file-meta h2 {
        font-size: 18px;
    }
    
    .file-meta .publish-time,
    .file-meta .view-count,
    .file-meta .publisher-text {
        justify-content: flex-start;
    }
    
    .info-module {
        padding: 16px;
    }
    
    .download-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .request-resource-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .safety-section {
        padding: 20px 0;
    }
    
    .safety-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .copyright-section {
        padding: 20px 0;
    }
    
    .copyright-section .copyright {
        font-size: 12px;
    }
    
    .copyright-section .copyright-link {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .password-form {
        margin: 40px 12px;
        padding: 24px;
    }
    
    .password-form h3 {
        font-size: 18px;
    }
    
    .cloud-option {
        flex-wrap: wrap;
    }
    
    .cloud-btn {
        width: 100%;
        margin-top: 12px;
    }
    
    .related-downloads-list {
        gap: 10px;
    }
    
    .related-download-item {
        padding: 12px;
    }
    
    .related-download-name {
        font-size: 14px;
    }
    
    .related-download-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}
