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

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    opacity: 1;
    transition: opacity 0.2s ease;
}

a {
    text-decoration: none;
    transition: color 0.25s ease;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-section {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 1px 0 15px;
}

.header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    margin-bottom: 20px;
    border-radius: 0 0 8px 8px;
}

.logo {
    text-align: center;
    margin-bottom: 8px;
}

.logo h1 {
    font-size: 2.2rem;
    margin-bottom: 2px;
}

.logo a {
    color: #2563eb;
    position: relative;
}

.logo a:hover {
    color: #1d4ed8;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.logo-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
    margin: 0;
    font-weight: normal;
    opacity: 0.9;
}

.site-description {
    text-align: center;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 1.1rem;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.search-input::placeholder {
    color: #94a3b8;
    font-size: 1rem;
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    border-color: #93c5fd;
}

.search-button {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 0 24px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    white-space: nowrap;
}

.search-button:hover {
    background-color: #1d4ed8;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

.main-navigation {
    background: #00afec;
    border-radius: 6px;
    margin: 0 auto 20px;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
    padding: 0 15px;
}

.nav-wrapper {
    overflow-x: hidden;
}

.nav-items {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: 9px 16px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.nav-link.active {
    color: white;
    font-weight: 600;
    background-color: #87d156;
    border-radius: 4px;
}

.nav-link.active::after {
    content: '';
    display: none;
}

.nav-link:hover {
    color: white;
    background-color: #87d156;
    border-radius: 4px;
}

.content {
    min-height: 400px;
    margin-bottom: 30px;
}

.main-content {
    padding: 20px 15px;
}

.page-header {
    text-align: center;
    margin-bottom: 10px;
    padding: 7.5px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-bottom: none;
}

.page-title {
    font-size: 0.9rem;
    color: #2c3e50;
    margin: 0 0 3px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background-color: #2563eb;
    border-radius: 2px;
    margin: 3px auto 0;
}

.page-header p {
    font-size: 0.8rem;
    margin-bottom: 4px;
    line-height: 1.4;
}

.no-resources {
    text-align: center;
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.no-resources p {
    margin-bottom: 10px;
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.4;
}

.no-resources a {
    display: inline-block;
    color: #2563eb;
    font-weight: 500;
    padding: 6px 16px;
    border: 1px solid #2563eb;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 0.8rem;
}

.no-resources a:hover {
    background-color: #2563eb;
    color: white;
}

.resource-list {
    list-style: none;
    padding: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.resource-item {
    padding: 11px 18px;
    margin-bottom: 0;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resource-item:last-child {
    border-bottom: none;
}

.resource-item:hover {
    background-color: #f8fafc;
}

.resource-category {
    flex: 0 0 auto;
    font-size: 0.85rem;
    color: #64748b;
    min-width: 80px;
}

.resource-category a {
    color: #64748b;
    transition: color 0.2s;
}

.resource-category a:hover {
    color: #2563eb;
}

.resource-category::before {
    content: "📁";
    margin-right: 4px;
}

.resource-title {
    flex: 1;
    font-size: 0.95rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.resource-title a {
    color: #1e293b;
    transition: color 0.2s, background-color 0.2s;
    padding: 1px 4px;
    border-radius: 0;
}

.resource-title a:hover {
    color: #2563eb;
    background-color: #fff9e6;
    border-radius: 16px;
}

.resource-date {
    flex: 0 0 auto;
    font-size: 0.85rem;
    color: #64748b;
    min-width: 90px;
    text-align: right;
}

.resource-date::before {
    content: "⏰";
    margin-right: 4px;
}

.pagination {
    margin: 30px 0;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    background-color: white;
    color: #2c3e50;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    z-index: 1;
}

.pagination a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3498db;
    opacity: 0;
    border-radius: 4px;
    z-index: -1;
    transition: opacity 0.2s;
}

.pagination a:hover, .pagination a.active {
    color: white;
}

.pagination a:hover::before, .pagination a.active::before {
    opacity: 1;
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    margin-top: 30px;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #64748b;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2563eb;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.resource-detail {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.detail-description {
    margin-bottom: 20px;
    line-height: 1.8;
}

.detail-description img {
    display: block;
    margin: 15px auto;
    max-width: 100%;
    height: auto;
    cursor: pointer;
    will-change: transform;
    transition: transform 0.2s ease;
}

.detail-description img:hover {
    transform: scale(1.02);
}

.detail-download {
    text-align: center;
    margin: 30px 0;
}

.password-hint {
    position: relative;
    margin: 20px auto;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    max-width: 400px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    white-space: nowrap;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.password-hint strong {
    color: #2c3e50;
    font-size: 0.9rem;
    margin-right: 8px;
}

.password-hint .password-code {
    display: inline-block;
    padding: 3px 12px;
    background-color: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 4px;
    color: #2563eb;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin: 0 8px;
}

.password-hint .hint-text {
    color: #64748b;
    font-size: 0.85rem;
}

.password-hint:hover {
    border-color: #94a3b8;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.download-item {
    flex: 1;
    min-width: 180px;
    max-width: 260px;
}

.download-button {
    display: block;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    color: white;
    text-align: center;
    cursor: pointer;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.baidu-pan .download-button {
    background: linear-gradient(to right, #2563EB, #1E40AF);
}

.baidu-pan .download-button::before {
    content: "☁️";
    margin-right: 6px;
    font-size: 1.1rem;
}

.baidu-pan .download-button:hover {
    background: linear-gradient(to right, #1D4ED8, #1E3A8A);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.25);
}

.quark-pan .download-button {
    background: linear-gradient(to right, #22C55E, #15803D);
}

.quark-pan .download-button::before {
    content: "☁️";
    margin-right: 6px;
    font-size: 1.1rem;
}

.quark-pan .download-button:hover {
    background: linear-gradient(to right, #16A34A, #14532D);
    box-shadow: 0 6px 12px rgba(34, 197, 94, 0.25);
}

.admin-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.admin-nav {
    background-color: #2c3e50;
    border-radius: 6px;
    margin-bottom: 20px;
}

.admin-nav ul {
    display: flex;
    list-style: none;
}

.admin-nav li {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-nav a {
    display: block;
    color: white;
    padding: 12px 20px;
    transition: background-color 0.3s;
}

.admin-nav a:hover {
    background-color: #34495e;
}

.admin-nav a.active {
    background-color: #3498db;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
    outline: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}

.btn-success {
    background-color: #2ecc71;
}

.btn-success:hover {
    background-color: #27ae60;
}

.btn-danger {
    background-color: #e74c3c;
}

.btn-danger:hover {
    background-color: #c0392b;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th, .table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 500;
}

.table tr:hover {
    background-color: #f8f9fa;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.alert-danger {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.login-container {
    max-width: 400px;
    margin: 50px auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.login-title {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #3498db;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    will-change: opacity, visibility, transform;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateY(10px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #2980b9;
}

.loading-indicator {
    text-align: center;
    padding: 20px;
    color: #64748b;
    display: none;
}

.loading-indicator::after {
    content: "正在加载更多资源...";
}

.resource-notification {
    margin: 15px auto;
    padding: 12px 15px;
    text-align: center;
    border-radius: 6px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    max-width: 800px;
    display: none;
    font-size: 14px;
}

.resource-notification.show {
    display: block;
}

.resource-notification.error {
    background-color: #fef2f2;
    border-color: #fee2e2;
    color: #dc2626;
}

.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.image-viewer.show {
    display: flex;
}

.image-viewer-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.image-viewer-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.image-viewer-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s;
}

.image-viewer-close:hover {
    color: #ccc;
}

.notice-box {
    background-color: #fff8e6;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
    padding: 15px 20px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.notice-box p {
    margin: 0;
    color: #8d6e63;
    font-size: 15px;
    line-height: 1.6;
}

.notice-box .highlight {
    color: #e65100;
    font-weight: bold;
    padding: 0 3px;
    border-bottom: 1px dashed #e65100;
}

@media (max-width: 800px) {
    .container {
        padding: 0 12px;
    }
    
    .logo a {
        font-size: 28px;
    }
    
    .nav-link {
        padding: 7px 12px;
        font-size: 13px;
    }
    
    .search-input, .search-button {
        padding: 11px 14px;
        font-size: 14px;
    }

    .page-title {
        font-size: 0.8rem;
    }

    .main-navigation {
        max-width: 100%;
        padding: 0 12px;
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .site-description {
        font-size: 0.9rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-input {
        border-radius: 8px 8px 0 0;
        border-right: 1px solid #e2e8f0;
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .search-button {
        border-radius: 0 0 8px 8px;
        padding: 14px;
        font-size: 1rem;
    }
    
    .resource-item {
        flex-wrap: wrap;
        padding: 11px 18px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .resource-item:last-child {
        border-bottom: none;
    }
    
    .resource-category, .resource-date {
        display: none;
    }
    
    .resource-title {
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.95rem;
    }
    
    .admin-nav ul {
        flex-wrap: wrap;
    }
    
    .admin-nav li {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-basis: 50%;
        text-align: center;
    }
    
    .table-responsive {
        overflow-x: auto;
    }

    .page-header {
        padding: 6px 15px;
    }

    .no-resources {
        padding: 7.5px 15px;
    }

    .password-hint {
        max-width: 90%;
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .password-hint .password-code {
        font-size: 1rem;
        padding: 2px 10px;
    }

    .image-viewer {
        padding: 10px;
    }
    
    .image-viewer-close {
        top: -30px;
        font-size: 24px;
    }
    
    .image-viewer-img {
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 0.75rem;
    }
    
    .detail-title {
        font-size: 1.3rem;
    }
    
    .admin-nav li {
        flex-basis: 100%;
    }

    .logo-subtitle {
        font-size: 0.8rem;
        margin-top: 1px;
    }

    .page-header {
        padding: 5px 10px;
    }

    .page-title::after {
        width: 30px;
        height: 1.5px;
    }

    .no-resources p {
        font-size: 0.7rem;
    }
}

#downloadNotice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#downloadNotice.show {
    opacity: 1;
    visibility: visible;
}

.notice-content {
    background: #ffffff;
    width: 90%;
    max-width: 550px;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#downloadNotice.show .notice-content {
    transform: translateY(0);
}

.notice-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.notice-title::before {
    content: "⚠️";
    font-size: 1.8rem;
}

.notice-text {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
    padding: 0 5px;
}

.notice-text .highlight {
    color: #2563eb;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.notice-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.notice-btn {
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    outline: none;
}

#downloadConfirmBtn {
    background: #2563eb;
    color: #ffffff;
}

#downloadConfirmBtn:hover {
    background: #1d4ed8;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.25);
}

#downloadCloseBtn {
    background: #f3f4f6;
    color: #374151;
}

#downloadCloseBtn:hover {
    background: #e5e7eb;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
    .notice-content {
        padding: 25px 20px;
    }
    
    .notice-title {
        font-size: 1.4rem;
    }
    
    .notice-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .notice-btn {
        padding: 12px 28px;
        font-size: 1rem;
        width: 100%;
    }
    
    .notice-buttons {
        gap: 12px;
    }
}

.download-item {
    margin-bottom: 20px;
}

.download-button {
    display: inline-block;
    padding: 14px 30px;
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.download-button:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.2);
}

.baidu-pan .download-button {
    background: #2d81f7;
}

.baidu-pan .download-button:hover {
    background: #1e68d1;
}

.quark-pan .download-button {
    background: #00b42a;
}

.quark-pan .download-button:hover {
    background: #009122;
}

.report-btn {
    background: #ff4d4f;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}
.report-btn:hover {
    background: #ff7875;
    box-shadow: 0 2px 6px rgba(255, 77, 79, 0.2);
}
.report-btn::before {
    content: "⚠️";
    font-size: 1rem;
}

.report-form-container {
    margin: 20px 0;
    padding: 22px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.report-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}
.report-form-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}
.report-form-header h3::before {
    content: "⚠️";
    font-size: 1.2rem;
}
.report-form-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.2s;
    padding: 2px 8px;
}
.report-form-close:hover {
    color: #ff4d4f;
}

.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #475569;
    font-size: 0.95rem;
}
.report-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    resize: vertical;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    min-height: 120px;
}
.report-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-hint {
    margin-bottom: 18px;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}
.form-submit {
    text-align: right;
}
.submit-report-btn {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
}
.submit-report-btn:hover {
    background-color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.report-result {
    margin: 20px 0;
    padding: 25px 20px;
    border-radius: 8px;
    background-color: #f0fff4;
    border: 1px solid #c3e6c3;
    text-align: center;
    animation: slideIn 0.4s ease;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.success-icon {
    font-size: 2.5rem;
    color: #52c41a;
    margin-bottom: 15px;
}
.result-text h4 {
    margin: 0 0 10px 0;
    color: #238636;
    font-size: 1.2rem;
}
.result-text p {
    margin: 0;
    color: #389e4d;
    font-size: 0.95rem;
    line-height: 1.6;
}
.result-close {
    margin-top: 20px;
    background-color: #52c41a;
    color: white;
    border: none;
    padding: 9px 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}
.result-close:hover {
    background-color: #43a047;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .report-form-container {
        padding: 18px;
    }
    .report-btn {
        padding: 5px 12px;
        font-size: 0.85rem;
    }
    .submit-report-btn {
        padding: 9px 20px;
        font-size: 0.9rem;
    }
    .result-text h4 {
        font-size: 1.1rem;
    }
}