/* ==========================================
   海南农小苗科技有限公司 - 全局样式（快手深色风格）
   ========================================== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background: #1a1a1a; color: #e0e0e0; line-height: 1.6; min-height: 100vh;
}
a { color: #e0e0e0; text-decoration: none; transition: color .2s; }
a:hover { color: #ff6600; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
input, button, textarea, select { font-family: inherit; font-size: inherit; outline: none; border: none; }
button { cursor: pointer; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #444; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #666; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* --- Header / Navigation --- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(26,26,26,.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid #333; height: 60px;
}
.header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 16px;
    display: flex; align-items: center; height: 60px; gap: 20px;
}
.logo { font-size: 20px; font-weight: 700; color: #ff6600; white-space: nowrap; flex-shrink: 0; }
.logo span { color: #fff; }
.nav-menu { display: flex; gap: 4px; flex-shrink: 0; }
.nav-menu a {
    padding: 8px 14px; border-radius: 20px; font-size: 14px;
    color: #ccc; transition: all .2s;
}
.nav-menu a:hover, .nav-menu a.active { background: #2d2d2d; color: #ff6600; }
.search-box {
    flex: 1; max-width: 300px; position: relative;
}
.search-box input {
    width: 100%; padding: 8px 36px 8px 14px; border-radius: 20px;
    background: #2d2d2d; color: #fff; border: 1px solid #444;
    transition: border-color .2s;
}
.search-box input::placeholder { color: #666; }
.search-box input:focus { border-color: #ff6600; }
.search-box .search-icon {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    color: #666; font-size: 14px;
}
.header-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-login, .btn-register {
    padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 500;
    transition: all .2s;
}
.btn-login { background: transparent; color: #ccc; border: 1px solid #555; }
.btn-login:hover { border-color: #ff6600; color: #ff6600; }
.btn-register { background: linear-gradient(135deg, #ff6600, #ff4444); color: #fff; }
.btn-register:hover { opacity: .9; }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; color: #fff; font-size: 24px; cursor: pointer; flex-shrink: 0; }

/* --- Main Content Area --- */
.main-content { padding-top: 76px; min-height: calc(100vh - 200px); padding-bottom: 40px; }

/* --- Banner / Carousel --- */
.banner-section { position: relative; border-radius: 12px; overflow: hidden; margin-bottom: 30px; }
.banner-track { display: flex; transition: transform .5s ease; }
.banner-slide {
    min-width: 100%; height: 320px; display: flex; align-items: center;
    justify-content: center; position: relative; padding: 40px;
}
.banner-slide h2 { font-size: 28px; color: #fff; margin-bottom: 10px; }
.banner-slide p { font-size: 16px; color: rgba(255,255,255,.8); }
.banner-btn {
    display: inline-block; margin-top: 16px; padding: 10px 28px;
    background: linear-gradient(135deg, #ff6600, #ff4444); color: #fff;
    border-radius: 25px; font-weight: 600; transition: transform .2s;
}
.banner-btn:hover { transform: scale(1.05); color: #fff; }
.banner-dots {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
}
.banner-dots span {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4);
    cursor: pointer; transition: all .3s;
}
.banner-dots span.active { background: #ff6600; width: 24px; border-radius: 4px; }
.banner-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,.5);
    color: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 18px; transition: background .2s; border: none;
}
.banner-arrow:hover { background: rgba(255,102,0,.7); }
.banner-arrow.prev { left: 12px; }
.banner-arrow.next { right: 12px; }

/* --- Section Title --- */
.section-title {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid #333;
}
.section-title h3 { font-size: 18px; font-weight: 600; color: #fff; }
.section-title h3::before {
    content: ''; display: inline-block; width: 4px; height: 18px;
    background: linear-gradient(180deg, #ff6600, #ff4444); border-radius: 2px;
    margin-right: 10px; vertical-align: middle;
}
.section-title .more-link { font-size: 13px; color: #999; }
.section-title .more-link:hover { color: #ff6600; }

/* --- Category Tabs --- */
.category-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.category-tabs a {
    padding: 6px 18px; border-radius: 20px; font-size: 13px;
    background: #2d2d2d; color: #ccc; transition: all .2s;
}
.category-tabs a:hover, .category-tabs a.active {
    background: linear-gradient(135deg, #ff6600, #ff4444); color: #fff;
}

/* --- Anime Card Grid --- */
.anime-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px; margin-bottom: 30px;
}
.anime-card {
    background: #2d2d2d; border-radius: 10px; overflow: hidden;
    transition: transform .2s, box-shadow .2s; cursor: pointer;
}
.anime-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.anime-card .card-cover {
    width: 100%; aspect-ratio: 3/4; display: flex; align-items: center;
    justify-content: center; font-size: 16px; font-weight: 700; color: #fff;
    text-align: center; padding: 16px; position: relative;
}
.anime-card .card-cover .tag {
    position: absolute; top: 8px; left: 8px; padding: 2px 8px;
    background: rgba(255,102,0,.9); border-radius: 4px; font-size: 11px; color: #fff;
}
.anime-card .card-cover .score {
    position: absolute; top: 8px; right: 8px; padding: 2px 6px;
    background: rgba(0,0,0,.6); border-radius: 4px; font-size: 12px; color: #ff6600;
}
.anime-card .card-info { padding: 10px; }
.anime-card .card-info h4 {
    font-size: 14px; color: #e0e0e0; margin-bottom: 4px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.anime-card .card-info p { font-size: 12px; color: #999; }

/* --- Ranking List --- */
.ranking-list { margin-bottom: 30px; }
.ranking-item {
    display: flex; align-items: center; padding: 12px; gap: 12px;
    border-bottom: 1px solid #2a2a2a; transition: background .2s; cursor: pointer;
}
.ranking-item:hover { background: #2d2d2d; }
.ranking-item .rank-num {
    width: 28px; height: 28px; border-radius: 6px; display: flex;
    align-items: center; justify-content: center; font-size: 14px;
    font-weight: 700; flex-shrink: 0;
}
.ranking-item:nth-child(1) .rank-num { background: linear-gradient(135deg,#ff6600,#ff4444); color: #fff; }
.ranking-item:nth-child(2) .rank-num { background: #ff8844; color: #fff; }
.ranking-item:nth-child(3) .rank-num { background: #ffaa44; color: #fff; }
.ranking-item:nth-child(n+4) .rank-num { background: #444; color: #999; }
.ranking-item .rank-cover {
    width: 48px; height: 64px; border-radius: 6px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: #fff; text-align: center; padding: 4px;
}
.ranking-item .rank-info { flex: 1; }
.ranking-item .rank-info h4 { font-size: 14px; color: #e0e0e0; margin-bottom: 2px; }
.ranking-item .rank-info p { font-size: 12px; color: #999; }
.ranking-item .rank-score { color: #ff6600; font-weight: 600; font-size: 14px; flex-shrink: 0; }

/* --- Two-Column Layout --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* --- Detail Page --- */
.detail-hero {
    display: flex; gap: 24px; margin-bottom: 30px; padding: 24px;
    background: #2d2d2d; border-radius: 12px;
}
.detail-cover {
    width: 200px; min-width: 200px; aspect-ratio: 3/4; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; color: #fff; text-align: center;
}
.detail-info { flex: 1; }
.detail-info h1 { font-size: 24px; color: #fff; margin-bottom: 12px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px; }
.detail-meta span { font-size: 13px; color: #999; }
.detail-meta span em { color: #ff6600; font-style: normal; }
.detail-desc { font-size: 14px; color: #bbb; line-height: 1.8; }
.detail-actions { display: flex; gap: 12px; margin-top: 16px; }
.btn-primary {
    padding: 10px 28px; border-radius: 25px;
    background: linear-gradient(135deg, #ff6600, #ff4444); color: #fff;
    font-weight: 600; transition: opacity .2s; border: none;
}
.btn-primary:hover { opacity: .9; color: #fff; }
.btn-secondary {
    padding: 10px 28px; border-radius: 25px;
    background: #444; color: #ccc; font-weight: 500; transition: all .2s; border: none;
}
.btn-secondary:hover { background: #555; }

/* --- Episode List --- */
.episode-grid {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px;
}
.episode-grid a {
    padding: 8px 16px; background: #2d2d2d; border-radius: 8px;
    font-size: 13px; color: #ccc; transition: all .2s; min-width: 50px; text-align: center;
}
.episode-grid a:hover { background: #ff6600; color: #fff; }

/* --- Forms --- */
.form-page {
    max-width: 420px; margin: 40px auto; padding: 32px;
    background: #2d2d2d; border-radius: 12px;
}
.form-page h2 { text-align: center; color: #fff; margin-bottom: 24px; font-size: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; color: #999; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 14px; border-radius: 8px;
    background: #1a1a1a; color: #fff; border: 1px solid #444;
    transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: #ff6600; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
    width: 100%; padding: 12px; border-radius: 25px;
    background: linear-gradient(135deg, #ff6600, #ff4444); color: #fff;
    font-size: 16px; font-weight: 600; border: none; margin-top: 8px;
    transition: opacity .2s;
}
.form-submit:hover { opacity: .9; }
.form-footer { text-align: center; margin-top: 16px; font-size: 13px; color: #999; }
.form-footer a { color: #ff6600; }
.form-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #999; margin-bottom: 8px; }
.form-check input[type="checkbox"] { accent-color: #ff6600; }
.form-check a { color: #ff6600; }

/* --- Profile Page --- */
.profile-header {
    display: flex; align-items: center; gap: 20px; padding: 24px;
    background: #2d2d2d; border-radius: 12px; margin-bottom: 24px;
}
.profile-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, #ff6600, #ff4444);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #fff; flex-shrink: 0;
}
.profile-info h2 { font-size: 20px; color: #fff; }
.profile-info p { font-size: 13px; color: #999; }
.profile-tabs { display: flex; gap: 4px; margin-bottom: 20px; background: #2d2d2d; border-radius: 10px; padding: 4px; }
.profile-tabs a {
    flex: 1; text-align: center; padding: 10px; border-radius: 8px;
    font-size: 14px; color: #999; transition: all .2s;
}
.profile-tabs a:hover, .profile-tabs a.active { background: #444; color: #fff; }

/* --- VIP Cards --- */
.vip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.vip-card {
    background: #2d2d2d; border-radius: 12px; padding: 24px; text-align: center;
    border: 2px solid transparent; transition: all .2s; cursor: pointer;
}
.vip-card:hover, .vip-card.popular { border-color: #ff6600; }
.vip-card.popular { position: relative; }
.vip-card.popular::after {
    content: '推荐'; position: absolute; top: -1px; right: 16px;
    background: linear-gradient(135deg, #ff6600, #ff4444); color: #fff;
    padding: 2px 12px; border-radius: 0 0 8px 8px; font-size: 12px;
}
.vip-card h3 { font-size: 18px; color: #ff6600; margin-bottom: 8px; }
.vip-card .price { font-size: 32px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.vip-card .price small { font-size: 14px; color: #999; }
.vip-card .original { font-size: 13px; color: #666; text-decoration: line-through; margin-bottom: 12px; }
.vip-card ul { text-align: left; }
.vip-card ul li { font-size: 13px; color: #999; padding: 4px 0; }
.vip-card ul li::before { content: '✓'; color: #ff6600; margin-right: 8px; }

/* --- Payment --- */
.pay-section { background: #2d2d2d; border-radius: 12px; padding: 24px; margin-bottom: 24px; }
.pay-methods { display: flex; gap: 16px; justify-content: center; margin-bottom: 20px; }
.pay-method {
    padding: 12px 24px; border-radius: 10px; border: 2px solid #444;
    cursor: pointer; transition: all .2s; text-align: center;
}
.pay-method:hover, .pay-method.active { border-color: #ff6600; }
.pay-method .icon { font-size: 28px; margin-bottom: 4px; }
.pay-method .name { font-size: 13px; color: #ccc; }
.qr-placeholder {
    width: 200px; height: 200px; margin: 0 auto;
    background: #fff; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #333; text-align: center;
}

/* --- Content Pages --- */
.content-page { max-width: 800px; margin: 0 auto; }
.content-page h1 { font-size: 24px; color: #fff; margin-bottom: 8px; }
.content-page .update-time { font-size: 13px; color: #666; margin-bottom: 24px; }
.content-page h2 { font-size: 18px; color: #ff6600; margin: 24px 0 12px; }
.content-page h3 { font-size: 16px; color: #ddd; margin: 16px 0 8px; }
.content-page p, .content-page li {
    font-size: 14px; color: #bbb; line-height: 1.8; margin-bottom: 8px;
}
.content-page ul, .content-page ol { padding-left: 20px; }
.content-page ul li { list-style: disc; }
.content-page ol li { list-style: decimal; }

/* --- FAQ --- */
.faq-list { margin-bottom: 20px; }
.faq-item {
    background: #2d2d2d; border-radius: 10px; margin-bottom: 8px; overflow: hidden;
}
.faq-question {
    padding: 14px 16px; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    font-size: 14px; color: #e0e0e0; transition: background .2s;
}
.faq-question:hover { background: #353535; }
.faq-question .arrow { transition: transform .3s; color: #666; }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
    padding: 0 16px; max-height: 0; overflow: hidden;
    transition: all .3s ease; font-size: 13px; color: #999; line-height: 1.8;
}
.faq-item.open .faq-answer { padding: 0 16px 14px; max-height: 500px; }

/* --- Contact Info --- */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.contact-card {
    background: #2d2d2d; border-radius: 10px; padding: 20px; text-align: center;
}
.contact-card .icon { font-size: 32px; margin-bottom: 8px; }
.contact-card h4 { font-size: 15px; color: #fff; margin-bottom: 6px; }
.contact-card p { font-size: 13px; color: #999; }

/* --- About Page --- */
.about-section { margin-bottom: 30px; }
.about-section h2 { font-size: 20px; color: #fff; margin-bottom: 16px; text-align: center; }
.about-section p { font-size: 14px; color: #bbb; line-height: 1.8; text-align: center; max-width: 700px; margin: 0 auto 8px; }
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.value-card {
    background: #2d2d2d; border-radius: 10px; padding: 24px; text-align: center;
}
.value-card .icon { font-size: 36px; margin-bottom: 8px; }
.value-card h4 { font-size: 15px; color: #ff6600; margin-bottom: 6px; }
.value-card p { font-size: 13px; color: #999; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.team-card { background: #2d2d2d; border-radius: 10px; padding: 20px; text-align: center; }
.team-card .avatar {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff;
}
.team-card h4 { font-size: 15px; color: #e0e0e0; margin-bottom: 2px; }
.team-card p { font-size: 12px; color: #999; }

/* --- Footer --- */
.site-footer {
    background: #111; border-top: 1px solid #333; padding: 30px 0 20px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: #999; }
.footer-links a:hover { color: #ff6600; }
.footer-info { text-align: center; }
.footer-info p { font-size: 12px; color: #666; margin-bottom: 4px; }
.footer-disclaimer {
    text-align: center; padding: 12px; margin: 16px 0 0;
    background: #1a1a1a; border-radius: 8px; font-size: 12px; color: #666;
    line-height: 1.8;
}

/* --- Compliance Floating Bar --- */
.compliance-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: linear-gradient(90deg, #ff4444, #ff6600, #ff4444);
    color: #fff; text-align: center; padding: 10px;
    font-size: 14px; font-weight: 600;
    animation: barScroll 12s linear infinite;
    box-shadow: 0 -2px 12px rgba(255,68,68,.4);
}
@keyframes barScroll {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.compliance-bar-inner {
    background: linear-gradient(90deg, #ff4444, #ff6600, #ff4444, #ff6600, #ff4444);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* --- Modal / Popup --- */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.7);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all .3s;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-box {
    background: #2d2d2d; border-radius: 12px; padding: 32px;
    max-width: 480px; width: 90%; text-align: center;
    transform: scale(.9); transition: transform .3s;
}
.modal-overlay.show .modal-box { transform: scale(1); }
.modal-box h3 { font-size: 18px; color: #ff6600; margin-bottom: 12px; }
.modal-box p { font-size: 14px; color: #bbb; margin-bottom: 20px; line-height: 1.6; }
.modal-close {
    padding: 10px 32px; border-radius: 25px;
    background: linear-gradient(135deg, #ff6600, #ff4444); color: #fff;
    font-weight: 600; border: none; transition: opacity .2s;
}
.modal-close:hover { opacity: .9; }

/* --- Admin Styles --- */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 220px; background: #111; border-right: 1px solid #333;
    padding: 20px 0; flex-shrink: 0; position: fixed; top: 0; bottom: 0;
    overflow-y: auto;
}
.admin-sidebar .logo { padding: 0 20px; margin-bottom: 24px; }
.admin-sidebar a {
    display: flex; align-items: center; gap: 10px; padding: 10px 20px;
    color: #999; font-size: 14px; transition: all .2s;
}
.admin-sidebar a:hover, .admin-sidebar a.active { background: #2d2d2d; color: #ff6600; }
.admin-main { flex: 1; margin-left: 220px; padding: 20px; }
.admin-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #333;
}
.admin-header h1 { font-size: 20px; color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card {
    background: #2d2d2d; border-radius: 10px; padding: 20px;
}
.stat-card h4 { font-size: 13px; color: #999; margin-bottom: 8px; }
.stat-card .value { font-size: 28px; font-weight: 700; color: #fff; }
.stat-card .value.pending { color: #666; }
.admin-table {
    width: 100%; border-collapse: collapse; background: #2d2d2d; border-radius: 10px; overflow: hidden;
}
.admin-table th { background: #353535; padding: 12px; text-align: left; font-size: 13px; color: #999; font-weight: 500; }
.admin-table td { padding: 12px; font-size: 13px; color: #ccc; border-top: 1px solid #333; }
.admin-table tr:hover td { background: #353535; }

/* --- Pagination --- */
.pagination { display: flex; justify-content: center; gap: 6px; margin: 20px 0; }
.pagination a {
    padding: 8px 14px; border-radius: 8px; background: #2d2d2d;
    font-size: 13px; color: #999; transition: all .2s;
}
.pagination a:hover, .pagination a.active { background: #ff6600; color: #fff; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-menu, .search-box { display: none; }
    .menu-toggle { display: block; }
    .nav-menu.mobile-open {
        display: flex; flex-direction: column; position: absolute;
        top: 60px; left: 0; right: 0; background: #2d2d2d;
        padding: 12px; gap: 4px; border-bottom: 1px solid #444;
    }
    .banner-slide { height: 200px; padding: 20px; }
    .banner-slide h2 { font-size: 20px; }
    .two-col { grid-template-columns: 1fr; }
    .anime-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
    .detail-hero { flex-direction: column; }
    .detail-cover { width: 100%; min-width: unset; }
    .vip-grid { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .form-page { margin: 20px 16px; padding: 20px; }
    .profile-header { flex-direction: column; text-align: center; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.empty-state { text-align: center; padding: 60px 20px; color: #666; }
.empty-state .icon { font-size: 48px; margin-bottom: 12px; }
.empty-state p { font-size: 14px; }

/* --- Gradient Covers for Anime --- */
.cover-g1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.cover-g2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.cover-g3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.cover-g4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.cover-g5 { background: linear-gradient(135deg, #fa709a, #fee140); }
.cover-g6 { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.cover-g7 { background: linear-gradient(135deg, #fccb90, #d57eeb); }
.cover-g8 { background: linear-gradient(135deg, #e0c3fc, #8ec5fc); }
.cover-g9 { background: linear-gradient(135deg, #f5576c, #ff6b6b); }
.cover-g10 { background: linear-gradient(135deg, #0ba360, #3cba92); }
.cover-g11 { background: linear-gradient(135deg, #ff9a9e, #fad0c4); }
.cover-g12 { background: linear-gradient(135deg, #a1c4fd, #c2e9fb); }
.cover-g13 { background: linear-gradient(135deg, #d4fc79, #96e6a1); }
.cover-g14 { background: linear-gradient(135deg, #84fab0, #8fd3f4); }
.cover-g15 { background: linear-gradient(135deg, #fbc2eb, #a6c1ee); }
