/* 新组件样式 */

/* 顶部导航栏 */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .navbar {
    background: rgba(31, 41, 55, 0.98);
    border-bottom-color: var(--border-dark);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) 0;
    gap: 12px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.navbar-brand {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
    white-space: nowrap;
}

.navbar-brand:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-xs) 8px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
    font-size: var(--text-sm);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: var(--primary-light);
    text-decoration: none;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* 搜索框 */
.search-container {
    position: relative;
    flex: 1;
    max-width: 300px;
    min-width: 200px;
    margin: 0 8px;
}

.search-input {
    width: 100%;
    padding: var(--space-xs) var(--space-lg);
    padding-right: 2.5rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    background: var(--bg-primary);
    transition: all var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-xs);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-50%) scale(1.05);
}

/* 用户菜单 */
.user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: var(--text-lg);
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-xs);
    flex-shrink: 0;
}

/* 按钮基础样式 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.75rem 1.5rem;
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.btn:hover {
    text-decoration: none;
}

.btn-sm {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-sm);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-secondary);
    border-color: var(--border-light);
}

.btn-secondary:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
}

/* 下拉菜单修复 */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background: none;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--text-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    z-index: 1000;
    display: none;
    min-width: 160px;
    padding: 0.5rem 0;
    margin: 0.25rem 0 0;
    font-size: var(--text-sm);
    color: var(--text-primary);
    text-align: left;
    list-style: none;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    clear: both;
    font-weight: 400;
    color: var(--text-primary);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    border: 0;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    color: var(--primary-color);
    background: var(--primary-light);
    text-decoration: none;
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
}

/* 分类导航 */
.category-nav {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-sm) 0;
    position: sticky;
    top: 73px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .category-nav {
    background: var(--bg-secondary);
    border-bottom-color: var(--border-dark);
}

.category-nav-container {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    overflow-x: auto;
    padding-bottom: var(--space-xs);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-nav-container::-webkit-scrollbar {
    display: none;
}

.category-nav-item {
    flex-shrink: 0;
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.category-nav-item:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.category-nav-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* 主要内容区域 */
.main-content {
    flex: 1;
    padding: var(--space-xl) 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* 卡片基础样式 */
.card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.novel-cover {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: var(--text-lg);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

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

.novel-info {
    padding: var(--space-md);
}

.novel-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.novel-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.novel-description {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.novel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.novel-tag {
    padding: 2px var(--space-xs);
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 500;
}

/* 排行榜样式 */
.ranking-list {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.ranking-header {
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: var(--text-lg);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.ranking-item:hover {
    background: var(--bg-light);
}

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

.ranking-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.ranking-number.top-1 {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.ranking-number.top-2 {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #333;
}

.ranking-number.top-3 {
    background: linear-gradient(135deg, #cd7f32, #e8a55d);
    color: white;
}

.ranking-number.other {
    background: var(--bg-light);
    color: var(--text-muted);
    border: 2px solid var(--border-light);
}

.ranking-content {
    flex: 1;
}

.ranking-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ranking-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xs);
    margin: var(--space-xl) 0;
}

.page-link {
    padding: var(--space-xs) var(--space-sm);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    min-width: 36px;
    text-align: center;
}

.page-link:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

.page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* 阅读页面样式 */
.reader-container {
    max-width: 1160px;  /* 增加最大宽度以适应更多内容 */
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
}

.reader-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--border-light);
}

.reader-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.reader-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.reader-content {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.reader-content p {
    margin-bottom: var(--space-md);
    text-indent: 2em;
}

.reader-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding: var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.reader-settings {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.font-size-control {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.font-size-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-light);
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.font-size-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.theme-toggle {
    width: 44px;
    height: 24px;
    background: var(--border-light);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.theme-toggle.active {
    background: var(--primary-color);
}

.theme-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.theme-toggle.active::after {
    left: 22px;
}

.chapter-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.chapter-btn {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.chapter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

.chapter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* 底部导航 */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: var(--space-xl) 0 var(--space-lg);
    margin-top: var(--space-2xl);
}

[data-theme="dark"] .footer {
    background: var(--bg-dark);
    border-top-color: var(--border-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0 var(--space-lg);
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* 移动端菜单 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: var(--text-xl);
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-xs);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 2000;
    padding: var(--space-xl);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: var(--text-2xl);
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: var(--space-md);
}

.mobile-nav-links a {
    display: block;
    padding: var(--space-md);
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--text-lg);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-links a:hover {
    background: var(--bg-light);
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .navbar-container {
        gap: var(--space-sm);
        max-width: 960px;
    }
    
    .navbar-nav {
        gap: var(--space-sm);
        flex-direction: row;
    }
    
    .nav-link {
        font-size: var(--text-sm);
        padding: var(--space-xs) var(--space-sm);
    }
    
    .search-container {
        max-width: 250px;
    }
    
    .footer-content {
        max-width: 720px;
        padding: 0 var(--space-md);
        gap: var(--space-lg);
    }
    
    .footer-section h4 {
        font-size: var(--text-base);
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        gap: var(--space-sm);
        padding: var(--space-sm) 0;
        max-width: 540px;
    }
    
    .navbar-brand {
        font-size: var(--text-base);
    }
    
    .navbar-nav {
        display: none;
        flex-direction: row;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .search-container {
        max-width: 200px;
        order: 3;
    }
    
    .user-menu {
        order: 2;
    }
    
    .footer-content {
        max-width: 540px;
        padding: 0 var(--space-md);
        gap: var(--space-md);
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-section h4 {
        font-size: var(--text-base);
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .reader-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .reader-settings {
        justify-content: center;
    }
    
    .chapter-nav {
        flex-direction: column;
    }
    
    .chapter-btn {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .navbar-container {
        flex-wrap: wrap;
        gap: var(--space-xs);
        max-width: 100%;
        padding: 0 var(--space-sm);
    }
    
    .navbar-brand {
        font-size: var(--text-sm);
        order: 1;
    }
    
    .mobile-menu-toggle {
        order: 2;
    }
    
    .search-container {
        max-width: none;
        order: 4;
        flex: 1 1 100%;
        margin-top: var(--space-xs);
    }
    
    .user-menu {
        order: 3;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .footer-content {
        max-width: 100%;
        padding: 0 var(--space-sm);
        gap: var(--space-md);
        grid-template-columns: 1fr;
    }
    
    .footer-section h4 {
        font-size: var(--text-base);
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        display: inline-block;
        margin: 0 var(--space-xs);
    }
    
    .reader-container {
        padding: var(--space-lg) var(--space-sm);
    }
    
    .reader-title {
        font-size: var(--text-2xl);
    }
    
    .reader-content {
        padding: var(--space-md);
        font-size: var(--text-base);
    }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
    .navbar-container {
        padding: var(--space-xs) 0;
    }
    
    .navbar-brand span {
        display: none;
    }
    
    .navbar-brand i {
        font-size: var(--text-lg);
    }
    
    .user-menu .btn {
        padding: var(--space-xs);
        font-size: var(--text-xs);
    }
    
    .search-input {
        padding: var(--space-xs) var(--space-md);
        font-size: var(--text-xs);
    }
}