/* 面包屑导航 */
.breadcrumb {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
}

.breadcrumb a {
    color: #a29bfe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #6c5ce7;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
}

/* 动漫详情页样式 */
.anime-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.anime-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.anime-poster img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.anime-details h1 {
    font-size: 32px;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.anime-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.rating-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.anime-meta {
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.meta-label {
    color: rgba(255, 255, 255, 0.7);
    width: 80px;
    font-size: 14px;
}

.meta-value {
    color: #ffffff;
    font-size: 14px;
}

.genre-tag {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 8px;
    display: inline-block;
}

.anime-description {
    margin-bottom: 25px;
}

.anime-description h3 {
    color: #a29bfe;
    margin-bottom: 15px;
    font-size: 18px;
}

.anime-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(108, 92, 231, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: #6c5ce7;
}

/* 章节目录样式 */
.episodes-section {
    margin-bottom: 40px;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
    margin: 0 10px;
}

.episode-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.episode-card:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: #6c5ce7;
    transform: translateY(-2px);
}

.episode-number {
    color: #a29bfe;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.episode-title {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
}

.episode-duration {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.episode-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.episode-progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* 相关推荐样式 */
.related-anime {
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* 讨论区样式 */
.discussion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.topic-categories {
    margin-bottom: 30px;
}

.category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-tab {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-tab.active,
.category-tab:hover {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    border-color: transparent;
}

.topics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.new-topic-btn {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.new-topic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.topic-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.topic-item:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: #6c5ce7;
    transform: translateY(-2px);
}

.topic-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.topic-content {
    flex: 1;
    min-width: 0;
}

.topic-title {
    margin-bottom: 10px;
}

.topic-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.topic-title a:hover {
    color: #a29bfe;
}

.topic-preview {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.topic-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.topic-author {
    color: #a29bfe;
}

.topic-category {
    background: rgba(108, 92, 231, 0.3);
    padding: 2px 8px;
    border-radius: 10px;
    color: white;
}

.topic-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    min-width: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #a29bfe;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.page-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.3);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-btn:hover:not(:disabled) {
    background: rgba(108, 92, 231, 0.2);
    color: white;
}

.page-btn.active {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    border-color: transparent;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 悬浮按钮 */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(108, 92, 231, 0.6);
}

/* 发布话题表单 */
.new-topic-container {
    padding: 30px;
}

.topic-form .form-group {
    margin-bottom: 20px;
}

.topic-form label {
    display: block;
    color: #a29bfe;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.topic-form input,
.topic-form select,
.topic-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.topic-form input:focus,
.topic-form select:focus,
.topic-form textarea:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
}

.topic-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
}

/* 充值页面样式 */
.recharge-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.membership-plans {
    margin-bottom: 50px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(108, 92, 231, 0.2);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: #6c5ce7;
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
}

.plan-card.recommended {
    border-color: #6c5ce7;
    background: rgba(108, 92, 231, 0.1);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.plan-header {
    margin-bottom: 25px;
}

.plan-header h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price {
    font-size: 36px;
    font-weight: bold;
    color: #6c5ce7;
}

.period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.plan-discount {
    color: #00ff88;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features ul {
    list-style: none;
    text-align: left;
}

.plan-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

.plan-btn {
    width: 100%;
    padding: 15px;
    background: rgba(108, 92, 231, 0.3);
    color: white;
    border: 1px solid #6c5ce7;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    background: rgba(108, 92, 231, 0.5);
    transform: translateY(-2px);
}

.recommended-btn {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe) !important;
    border-color: transparent !important;
}

.recommended-btn:hover {
    background: linear-gradient(45deg, #5a4fcf, #9189fe) !important;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

/* 支付方式样式 */
.payment-section {
    margin-bottom: 50px;
}

.payment-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.selected-plan h3 {
    color: #a29bfe;
    margin-bottom: 10px;
}

.payment-methods {
    display: grid;
    gap: 15px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #6c5ce7;
    background: rgba(108, 92, 231, 0.1);
}

.payment-method.selected {
    border-color: #6c5ce7;
    background: rgba(108, 92, 231, 0.15);
}

.method-icon img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.method-info {
    flex: 1;
}

.method-info h4 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 16px;
}

.method-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.method-radio {
    position: relative;
}

.method-radio input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(108, 92, 231, 0.5);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method-radio input[type="radio"]:checked {
    border-color: #6c5ce7;
    background: #6c5ce7;
}

.method-radio input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.payment-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* 会员特权样式 */
.privileges-section {
    margin-bottom: 50px;
}

.privileges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.privilege-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: all 0.3s ease;
}

.privilege-item:hover {
    transform: translateY(-5px);
    border-color: #6c5ce7;
    background: rgba(108, 92, 231, 0.1);
}

.privilege-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.privilege-item h3 {
    color: #a29bfe;
    margin-bottom: 10px;
    font-size: 18px;
}

.privilege-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

/* FAQ样式 */
.faq-section {
    margin-bottom: 50px;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(108, 92, 231, 0.2);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(108, 92, 231, 0.1);
}

.faq-question h4 {
    color: #ffffff;
    font-size: 16px;
}

.faq-toggle {
    color: #a29bfe;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* 支付确认模态框 */
.payment-confirm {
    padding: 30px;
    text-align: center;
}

.payment-details {
    margin: 25px 0;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
}

.detail-item .label {
    color: rgba(255, 255, 255, 0.7);
}

.detail-item .value {
    color: #ffffff;
    font-weight: 500;
}

.qr-code {
    margin: 30px 0;
}

.qr-code img {
    border-radius: 10px;
    margin-bottom: 15px;
}

.qr-code p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.payment-status {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

/* 动漫列表页面样式 */
.anime-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.filters-section {
    background: rgba(22, 33, 62, 0.8);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    color: #a29bfe;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    display: block;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(108, 92, 231, 0.2);
    color: white;
    border-color: #6c5ce7;
}

.filter-btn.active {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.search-filter {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-input-group {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-input-group input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input-group input:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.3);
}

.search-input-group button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input-group button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.sort-select {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 20px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
}

.view-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.view-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.3);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: rgba(108, 92, 231, 0.2);
    color: white;
}

.view-btn.active {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    border-color: transparent;
}

.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.anime-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.anime-card {
    background: rgba(22, 33, 62, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(108, 92, 231, 0.1);
    cursor: pointer;
    position: relative;
}

.anime-card:hover {
    transform: translateY(-5px);
    border-color: #6c5ce7;
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
}

.anime-card.list-view {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
}

.anime-card.list-view .card-image {
    width: 120px;
    height: 160px;
    flex-shrink: 0;
    margin-right: 20px;
}

.anime-card.list-view .card-content {
    flex: 1;
    padding: 0;
}

.card-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.anime-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.anime-card:hover .card-overlay {
    opacity: 1;
}

.favorite-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: rgba(108, 92, 231, 0.8);
    transform: scale(1.1);
}

.favorite-btn.favorited {
    background: rgba(255, 107, 107, 0.8);
}

.card-content {
    padding: 20px;
}

.anime-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.anime-info {
    margin-bottom: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.stars {
    color: #ffd700;
    font-size: 16px;
}

.score {
    color: #a29bfe;
    font-weight: 500;
    font-size: 14px;
}

.anime-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.anime-meta span {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.anime-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.genre-tag {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.anime-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.load-more-section {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.no-anime {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .anime-info {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .anime-poster {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .topic-item {
        flex-direction: column;
        text-align: center;
    }
    
    .topic-stats {
        flex-direction: row;
        justify-content: center;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .privileges-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .payment-actions {
        flex-direction: column;
    }
    
    .floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .category-tabs {
        justify-content: center;
    }
    
    .category-tab {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .topic-item {
        padding: 15px;
    }
    
    .plan-card {
        padding: 20px;
    }
    
    .privilege-item {
        padding: 20px;
    }
    
    .privilege-icon {
        font-size: 36px;
    }
}