/* 电影/游戏/动漫IP解决方案专用样式 */

/* Hero区样式 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(15, 23, 42, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero-badge {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.badge-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.badge-icon:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff 0%, #93c5fd 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #94a3b8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* 面包屑 */
.breadcrumb {
    background: #1e293b;
    padding: 1rem 0;
    border-bottom: 1px solid #334155;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #fbbf24;
}

.breadcrumb .separator {
    color: #475569;
}

.breadcrumb .current {
    color: #fbbf24;
}

/* 通用Section样式 */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.section-tag.featured {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.1));
    border-color: rgba(251, 191, 36, 0.5);
}

.section-tag.emerging {
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.2), rgba(196, 181, 253, 0.1));
    border-color: rgba(147, 197, 253, 0.5);
    color: #93c5fd;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
}

/* 为什么选择CGN - 优势区 */
.why-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.advantage-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 1px solid #475569;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.advantage-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.why-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 产品图谱区 */
.product-map-section {
    background: #0f172a;
}

.product-map-image {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.product-map-image img {
    width: 100%;
    height: auto;
}

.product-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.product-table th,
.product-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #334155;
}

.product-table th {
    background: #1e293b;
    color: #fbbf24;
    font-weight: 600;
    position: sticky;
    top: 0;
}

.product-table th:first-child,
.product-table td:first-child {
    text-align: left;
    background: #1e293b;
    color: #fff;
    font-weight: 500;
}

.product-table td {
    background: #0f172a;
    color: #94a3b8;
}

.product-table td.core {
    color: #fbbf24;
    font-weight: 600;
}

.table-note {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.product-comparison {
    border-radius: 16px;
    overflow: hidden;
}

/* 筛选导航 */
.filter-section {
    background: #1e293b;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #334155;
}

.filter-nav {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid #475569;
    background: transparent;
    color: #94a3b8;
    border-radius: 50px;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #fbbf24;
    color: #fbbf24;
}

.filter-btn.active {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-color: transparent;
    color: #0f172a;
    font-weight: 600;
}

/* 主力方案区 */
.featured-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.solution-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid #334155;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.solution-card.full-width {
    width: 100%;
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(30, 41, 59, 0.5);
    border-bottom: 1px solid #334155;
}

.solution-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.solution-tags .tag {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.solution-tags .tag.featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
}

.solution-tags .tag.new {
    background: linear-gradient(135deg, #93c5fd, #c4b5fd);
    color: #0f172a;
}

.solution-tags .tag.category {
    background: rgba(147, 197, 253, 0.2);
    color: #93c5fd;
}

.solution-tags .tag.format {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.solution-tags .tag.ip-all {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.solution-id {
    font-family: monospace;
    color: #64748b;
    font-size: 0.85rem;
}

.solution-content {
    padding: 2rem;
}

.solution-main {
    margin-bottom: 2rem;
}

.solution-main h3 {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.solution-positioning {
    font-size: 1.1rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-style: italic;
}

.solution-desc {
    color: #94a3b8;
    line-height: 1.8;
}

.solution-gallery {
    margin-bottom: 2rem;
}

.solution-gallery .main-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.solution-gallery .sub-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.solution-gallery .sub-images img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-gallery .sub-images img:hover {
    transform: scale(1.05);
}

.solution-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-block {
    background: rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
}

.detail-block h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.disc-effects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.effect-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 6px;
    font-size: 0.85rem;
}

.effect-item.highlight {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.effect-name {
    color: #fff;
    font-weight: 500;
}

.effect-desc {
    color: #64748b;
}

.options-table,
.gradient-table {
    width: 100%;
    border-collapse: collapse;
}

.options-table td,
.gradient-table td,
.gradient-table th {
    padding: 0.75rem;
    border-bottom: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.9rem;
}

.gradient-table th {
    color: #fbbf24;
    font-weight: 600;
}

.solution-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.solution-cta {
    text-align: center;
}

/* 新锐方案区 */
.emerging-section {
    background: #0f172a;
}

.emerging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.emerging-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 1px solid #475569;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.emerging-card:hover {
    border-color: #93c5fd;
    transform: translateY(-5px);
}

.emerging-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(30, 41, 59, 0.5);
    border-bottom: 1px solid #475569;
}

.emerging-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.emerging-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.emerging-card:hover .emerging-image img {
    transform: scale(1.05);
}

.emerging-card h3 {
    padding: 1rem 1.25rem 0.5rem;
    color: #fff;
    font-size: 1.1rem;
}

.emerging-card p {
    padding: 0 1.25rem 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.emerging-meta {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid #475569;
    font-size: 0.85rem;
    color: #64748b;
}

/* 工艺库区 */
.craft-library-section {
    background: linear-gradient(180deg, #0f172a, #1e293b);
}

.craft-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.craft-category {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 2rem;
}

.craft-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.craft-desc {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.craft-image {
    border-radius: 12px;
    overflow: hidden;
}

.craft-image img {
    width: 100%;
    height: auto;
}

/* 授权策略区 */
.licensing-section {
    background: #0f172a;
}

.licensing-content {
    display: grid;
    gap: 3rem;
}

.licensing-block {
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 1px solid #475569;
    border-radius: 16px;
    padding: 2rem;
}

.licensing-block h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.process-image,
.strategy-image,
.market-image {
    border-radius: 12px;
    overflow: hidden;
}

.process-image img,
.strategy-image img,
.market-image img {
    width: 100%;
    height: auto;
}

.licensing-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(251, 191, 36, 0.1);
    border-left: 3px solid #fbbf24;
    border-radius: 8px;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* 服务流程区 */
.process-section {
    background: linear-gradient(180deg, #0f172a, #1e293b);
}

.process-timeline {
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
}

.process-timeline img {
    width: 100%;
    height: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 12px;
    border: 1px solid #475569;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #fbbf24;
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.step p {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* 案例区 */
.cases-section {
    background: #0f172a;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.case-card {
    background: linear-gradient(135deg, #1e293b, #334155);
    border: 1px solid #475569;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: #fbbf24;
    transform: translateY(-5px);
}

.case-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 1.5rem;
}

.case-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.case-content h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.case-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 对比区 */
.comparison-section {
    background: linear-gradient(180deg, #0f172a, #1e293b);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: center;
    border: 1px solid #334155;
}

.comparison-table th {
    background: #1e293b;
    color: #fff;
    font-weight: 600;
}

.comparison-table th.highlight {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
}

.comparison-table td {
    background: #0f172a;
    color: #94a3b8;
}

.comparison-table td.highlight {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    font-weight: 500;
}

.comparison-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.compare-link {
    color: #93c5fd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.compare-link:hover {
    color: #fbbf24;
}

/* CTA区 */
.cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content > p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
}

.contact-icon {
    font-size: 1.25rem;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #475569;
}

.btn-secondary:hover {
    border-color: #fbbf24;
    color: #fbbf24;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* 页脚 */
.footer {
    background: #0f172a;
    border-top: 1px solid #334155;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #64748b;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #fbbf24;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fbbf24;
}

/* 响应式 */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .why-images {
        grid-template-columns: 1fr;
    }
    
    .solution-gallery .sub-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }
    
    .solution-gallery .sub-images {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .emerging-grid {
        grid-template-columns: 1fr;
    }
}
