@charset "utf-8";
/*
    Theme Name: 动漫官网主题
    Theme URI: 
    Author: 阿叶
    Author URI: 
    Description:
    Version: 0.0.1
*/

/* 基础样式 */
:root {
    --primary-purple: #8B5CF6;
    --primary-blue: #06B6D4;
    --accent-pink: #EC4899;
    --accent-yellow: #F59E0B;
    --dark-bg: #1A1A2E;
    --card-bg: #16213E;
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --rating-yellow: #FBBF24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0F172A 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* 通用动画 */
.cp-slide-in {
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 卡片样式 */
.cp-manga-card {
    transition: all 0.3s ease;
    background: linear-gradient(145deg, var(--card-bg), #1E293B);
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
}

.cp-manga-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
}

/* 按钮样式 */
.cp-download-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.cp-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cp-download-btn:hover::before {
    left: 100%;
}

.cp-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* 导航栏 */
.cp-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.cp-navbar-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.cp-navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.cp-navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cp-navbar-logo {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 0.5rem;
}

.cp-navbar-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #A78BFA, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cp-navbar-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.cp-navbar-link {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cp-navbar-link:hover {
    color: #A78BFA;
}

.cp-navbar-toggle {
    display: block;
    color: #D1D5DB;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}

/* 主要内容区域 */
.cp-main-content {
    padding-top: 4rem;
}

/* Hero区域 */
.cp-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cp-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://mangacopy.com.cn/wp-content/themes/an/static/images/logo.png') center center / cover no-repeat;
    background-attachment: fixed;
}

.cp-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.95) 0%, 
        rgba(22, 33, 62, 0.9) 50%, 
        rgba(15, 23, 42, 0.92) 100%);
    z-index: 1;
}

.cp-hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 0 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.cp-hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #F1F5F9, #E2E8F0, #CBD5E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(241, 245, 249, 0.3);
}

.cp-hero-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    margin-bottom: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.cp-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cp-manga-bubble {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    padding: 10px 20px;
    position: relative;
    display: inline-block;
}

.cp-manga-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-purple);
}
.cp-hero-content .cp-download-btn {
    padding: 1rem 3rem;
}
/* 特色功能区域 */
.cp-features-section {
    padding: 5rem 1rem;
}

.cp-features-container {
    max-width: 80rem;
    margin: 0 auto;
}

.cp-features-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cp-features-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cp-features-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #A78BFA, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cp-features-subtitle {
    font-size: 1.25rem;
    color: #D1D5DB;
    max-width: 42rem;
    margin: 0 auto;
}

.cp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.cp-feature-card {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.cp-feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.cp-bg-gradient {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
}

.cp-bg-gradient-pink {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-yellow));
}

.cp-bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue), #10B981);
}

.cp-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cp-text-purple-400 { color: #A78BFA; }
.cp-text-pink-400 { color: #EC4899; }
.cp-text-blue-400 { color: #22D3EE; }

.cp-feature-description {
    color: #D1D5DB;
}

/* 下载中心区域 */
.cp-download-center-section {
    padding: 5rem 1rem;
    background: linear-gradient(to right, rgba(88, 28, 135, 0.2), rgba(30, 58, 138, 0.2));
}

.cp-download-center-container {
    max-width: 80rem;
    margin: 0 auto;
}

.cp-download-center-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cp-download-center-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #A78BFA, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cp-download-center-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cp-download-center-item {
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.cp-download-center-item h3 a {
    color: #fff;
}
.cp-download-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-download-desc {
    color: #94A3B8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* 用户评价区域 - 一行3列的评论式布局 */
.cp-user-reviews-section {
    padding: 5rem 1rem;
}

.cp-user-reviews-container {
    max-width: 80rem;
    margin: 0 auto;
}

.cp-user-reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cp-user-reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #A78BFA, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cp-user-reviews-subtitle {
    font-size: 1.25rem;
    color: #94A3B8;
}

.cp-user-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cp-user-review-item {
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    height: 100%;
}

.cp-review-avatar-wrapper {
    flex-shrink: 0;
}

.cp-user-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-review-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cp-review-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.cp-user-name {
    font-size: 1rem;
    font-weight: 700;
    color: #F1F5F9;
}

.cp-rating {
    display: flex;
    gap: 0.2rem;
    color: var(--rating-yellow);
}

.cp-review-time {
    color: #94A3B8;
    font-size: 0.8rem;
}

.cp-review-content {
    color: #D1D5DB;
    line-height: 1.5;
    font-size: 0.9rem;
    flex: 1;
}

/* 页脚 - 居中样式 */
.cp-footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 4rem 1rem 2rem;
}

.cp-footer-container {
    max-width: 80rem;
    margin: 0 auto;
}

.cp-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
}

.cp-footer-brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 40rem;
}

.cp-footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cp-footer-logo {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 0.5rem;
}

.cp-footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #A78BFA, #22D3EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cp-footer-description {
    color: #D1D5DB;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
}

.cp-footer-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.cp-footer-info {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    width: 100%;
        justify-content: space-between;
    max-width: 40rem;
}

.cp-footer-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.cp-footer-info-item span:first-child {
    color: #A78BFA;
    font-size: 1.2rem;
}

.cp-footer-info-item span:nth-child(2) {
    color: #D1D5DB;
}

.cp-footer-info-item a {
    color: #A78BFA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cp-footer-info-item a:hover {
    color: #C4B5FD;
}

.cp-footer-copyright-wrapper {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    width: 100%;
    max-width: 40rem;
}

.cp-footer-copyright {
    color: #9CA3AF;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-yellow));
}

/* 工具类 */
.cp-text-lg { font-size: 1.125rem; }
.cp-font-medium { font-weight: 500; }
.cp-icon-white { color: white; }
.cp-icon-lg { font-size: 1.25rem; }
.cp-icon-yellow { color: var(--rating-yellow); }




/*移动端样式*/
@media (max-width: 760px) {
    .cp-hero-title {
        font-size: 1.8rem;
    }
    .cp-hero-subtitle {
        font-size: .8rem;
    }
    .cp-download-center-title,
    .cp-features-title {
        font-size: 2rem;
    }
    .cp-features-subtitle {
        font-size: .8rem;
    }
    .cp-features-grid,
    .cp-download-center-grid,
    .cp-user-reviews-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}