/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #1abc9c;
    --bg-color: #f8f9fa;
    --text-color: #333333;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 导航栏 */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), #1a2530);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: bold;
}

.logo-icon {
    display: none;
}

.logo-text {
    color: white;
}

.nav-tabs {
    display: flex;
    gap: 5px;
}

.nav-tab {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-tab:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.nav-tab.active {
    background: white;
    color: var(--primary-color);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 主内容区 */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* 标签内容 */
.tab-content {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 搜索区 */
.search-section {
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    gap: 10px;
    background: var(--border-color);
    border-radius: 50px;
    padding: 8px 8px 8px 20px;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: var(--text-color);
}

.search-input::placeholder {
    color: #95a5a6;
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    height: 45px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.search-btn:active {
    transform: scale(0.95);
}

/* 过滤区 */
.filter-section {
    margin-bottom: 20px;
}

.filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tag {
    background: var(--border-color);
    border: 2px solid transparent;
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tag:hover {
    background: #bdc3c7;
    transform: translateY(-2px);
}

.filter-tag.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

/* 区域标题 */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.section-title span:first-child {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-color);
}

.monster-count,
.npc-count {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
}

/* 怪物列表 */
.monster-section,
.npc-section {
    margin-bottom: 30px;
}

.monster-list,
.npc-list,
.item-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

/* 怪物卡片 */
.monster-card,
.npc-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.monster-card::before,
.npc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.monster-card:hover::before,
.npc-card:hover::before {
    transform: scaleX(1);
}

.monster-card:hover,
.npc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.monster-card:active,
.npc-card:active {
    transform: translateY(-2px);
}

.monster-icon {
    display: none;
}

.monster-name,
.npc-name {
    font-size: 15px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 5px;
}

.monster-info,
.npc-info {
    font-size: 12px;
    color: #7f8c8d;
}

/* NPC卡片特色 */
.npc-icon {
    display: none;
}

.npc-tags-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin-top: 8px;
}

.npc-tag-mini {
    background: var(--border-color);
    color: var(--text-color);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-number:hover {
    background: var(--border-color);
    transform: scale(1.1);
}

.page-number.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* 弹窗 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 20px;
    font-weight: bold;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

/* 爆率列表 */
.drops-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drop-item {
    background: var(--border-color);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.drop-item:hover {
    background: #d5dbdb;
    transform: translateX(5px);
}

.drop-name {
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
}

.drop-rate {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rate-high,
.rate-medium,
.rate-low,
.rate-verylow {
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.rate-high {
    background: #27ae60;
}

.rate-medium {
    background: #f39c12;
}

.rate-low {
    background: #e74c3c;
}

.rate-verylow {
    background: #8e44ad;
}

/* 爆率进度条样式 */
.rate-display {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.rate-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
}

.rate-progress-container {
    position: relative;
    height: 20px;
    background-color: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.rate-progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
}

.rate-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 10px;
}

.rate-percentage {
    position: absolute;
    top: 0;
    right: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.drop-item {
    background: var(--border-color);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

/* NPC详情 */
.npc-detail-section {
    margin-bottom: 20px;
}

.detail-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-color);
}

/* 爆率计算器样式 */
.drop-calculator-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.calculator-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calculator-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.calculator-input-group label {
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

.calculator-input {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    width: 120px;
    transition: all 0.3s ease;
}

.calculator-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.calculator-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.calculator-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.calculator-results {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid var(--accent-color);
}

.calculator-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.calculator-result-item:last-child {
    border-bottom: none;
}

.calculator-item-name {
    font-weight: 500;
    color: var(--text-color);
}

.calculator-item-value {
    font-weight: 600;
    color: var(--primary-color);
}

.calculator-item-probability {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 2px;
}

.npc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.npc-tag {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.npc-description {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.8;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.empty-state-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.empty-state-hint {
    font-size: 14px;
    color: #95a5a6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }

    .nav-tabs {
        width: 100%;
        justify-content: center;
    }

    .nav-tab {
        flex: 1;
        padding: 10px;
        font-size: 14px;
        text-align: center;
    }

    .monster-list,
    .npc-list {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    .monster-card,
    .npc-card {
        padding: 12px;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 12px;
    }

    .modal-header {
        padding: 15px;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-body {
        padding: 15px;
    }

    .pagination {
        gap: 5px;
    }

    .page-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .page-number {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }

    .logo-icon {
        font-size: 24px;
    }

    .main-content {
        padding: 15px 10px;
    }

    .monster-list,
    .npc-list {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
    }

    .monster-card,
    .npc-card {
        padding: 10px;
    }

    .monster-icon {
        font-size: 40px;
    }

    .npc-icon {
        font-size: 36px;
    }

    .monster-name,
    .npc-name {
        font-size: 14px;
    }

    .search-box {
        padding: 6px 6px 6px 15px;
    }

    .search-input {
        font-size: 14px;
    }

    .search-btn {
        padding: 0 16px;
        height: 38px;
        font-size: 14px;
        border-radius: 20px;
    }

    .filter-tag {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* 滚动条美化 */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--border-color);
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* 加载动画 */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 15px;
    color: #7f8c8d;
    font-size: 14px;
}

/* 页脚样式 */
.site-footer {
    background: linear-gradient(135deg, var(--primary-color), #1a2530);
    color: #f1c27d;
    padding: 25px 15px;
    margin-top: 40px;
    border-top: 3px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-links {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #f1c27d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 2px 8px;
    border-radius: 3px;
}

.footer-links a:hover {
    color: #ffd700;
    background: rgba(212, 175, 55, 0.1);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.footer-separator {
    color: #8b5a2b;
    font-size: 12px;
    user-select: none;
}

.footer-copyright {
    font-size: 13px;
    color: #b8860b;
    margin: 12px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-notice {
    font-size: 12px;
    color: var(--text-color);
    margin: 10px 0;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--accent-color);
}

.footer-notice p {
    margin: 8px 0;
}

.footer-disclaimer {
    font-size: 11px;
    color: #deb887;
    line-height: 1.7;
    margin-top: 15px;
    padding: 12px 20px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 8px;
    border-left: 3px solid #d4af37;
}

.footer-disclaimer p {
    margin: 8px 0;
}

.footer-tips {
    color: var(--accent-color);
    font-style: italic;
    font-size: 12px;
    margin-top: 10px !important;
}

.footer-legend {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: 12px !important;
    letter-spacing: 0.5px;
}

/* 数据统计面板样式 */
.stats-section {
    margin-bottom: 30px;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stats-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.stats-card-title {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 8px;
    font-weight: 500;
}

.stats-card-value {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stats-card-unit {
    font-size: 12px;
    color: #95a5a6;
}

.stats-card-desc {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 8px;
    line-height: 1.4;
}

.rate-distribution {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.rate-distribution-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.rate-distribution-label {
    width: 100px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.rate-distribution-bar {
    flex: 1;
    height: 20px;
    background-color: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.rate-distribution-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.rate-distribution-count {
    width: 60px;
    text-align: right;
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

.top-items {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.top-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.top-item:last-child {
    border-bottom: none;
}

.top-item-name {
    font-weight: 500;
    color: var(--text-color);
    flex: 1;
}

.top-item-count {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.top-item-rate {
    font-size: 12px;
    color: #7f8c8d;
    margin-left: 10px;
}

/* 响应式页脚 */
@media (max-width: 768px) {
    .site-footer {
        padding: 15px 10px;
        margin-top: 30px;
    }
    
    .footer-links {
        display: none;
    }
    
    .footer-copyright {
        font-size: 11px;
        margin: 5px 0 10px 0;
    }
    
    .footer-notice {
        font-size: 10px;
        padding: 8px 12px;
        margin: 8px 0;
        line-height: 1.6;
    }
    
    .footer-notice p {
        margin: 6px 0;
    }
    
    .footer-disclaimer {
        padding: 8px 12px;
        font-size: 9px;
        margin-top: 10px;
        line-height: 1.6;
    }
    
    .footer-tips {
        font-size: 10px;
        margin-top: 8px !important;
    }
    
    .footer-legend {
        font-size: 11px;
        margin-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 12px 8px;
        margin-top: 20px;
    }
    
    .footer-links {
        display: none;
    }
    
    .footer-copyright {
        font-size: 10px;
        margin: 4px 0 8px 0;
    }
    
    .footer-notice {
        font-size: 9px;
        padding: 6px 10px;
        margin: 6px 0;
        line-height: 1.5;
    }
    
    .footer-notice p {
        margin: 5px 0;
    }
    
    .footer-disclaimer {
        padding: 6px 10px;
        font-size: 8px;
        margin-top: 8px;
    }
    
    .footer-tips {
        font-size: 9px;
        margin-top: 6px !important;
    }
    
    .footer-legend {
        font-size: 10px;
        margin-top: 8px !important;
    }
}
