/* ============================================================
   BotLocal 本地化二创智能体 - 样式文件
   主色调：深紫色/金色（文化创意感）
   ============================================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                 "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    flex: 1;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
    background: linear-gradient(135deg, #4A1942 0%, #2D1B69 50%, #1A1A4E 100%);
    color: white;
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #FFD700, #F0C420, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 12px;
    opacity: 0.85;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 215, 0, 0.3);
    margin-left: 4px;
    color: #E8D5B7;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: #E8D5B7;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.2s;
    position: relative;
}

.nav-links a:hover {
    opacity: 1;
    color: #FFD700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Flash Messages */
.flash-messages {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.flash-message {
    padding: 12px 0;
    font-size: 14px;
}

.flash-error {
    color: #c53030;
}

.flash-success {
    color: #38a169;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: #a0aec0;
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.site-footer p {
    color: #8892b0;
}

.footer-sub {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.7;
}

/* ============================================================
   Hero Section (首页)
   ============================================================ */
.hero-section {
    background: linear-gradient(135deg, #4A1942 0%, #2D1B69 50%, #1A1A4E 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.gradient-text {
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #E8D5B7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #E8D5B7;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #4A1942;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

/* ============================================================
   通用 Section
   ============================================================ */
.section-title {
    text-align: center;
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 10px;
}

.title-icon {
    margin-right: 8px;
}

.section-subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

/* ============================================================
   Feature Section (核心能力)
   ============================================================ */
.feature-section {
    padding: 60px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px 24px;
    border-radius: 12px;
    transition: all 0.3s;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card:hover {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 16px;
    color: #1a202c;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: #718096;
    line-height: 1.6;
}

/* ============================================================
   Styles / Directions Section
   ============================================================ */
.styles-section {
    padding: 60px 0;
    background: #f7fafc;
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.style-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.style-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A1942, #FFD700);
    opacity: 0;
    transition: opacity 0.3s;
}

.style-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(74, 25, 66, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

.style-card:hover::before {
    opacity: 1;
}

.style-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.style-icon {
    font-size: 32px;
}

.style-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
}

.style-desc {
    font-size: 13px;
    color: #718096;
    margin-bottom: 16px;
    line-height: 1.5;
    min-height: 40px;
}

.style-examples {
    margin-bottom: 16px;
}

.example-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #f7fafc;
    color: #6B7280;
    border-radius: 12px;
    font-size: 11px;
    margin-right: 6px;
    margin-bottom: 6px;
}

.style-arrow {
    font-size: 13px;
    color: #4A1942;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.style-card:hover .style-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   Tag Section (热门标签)
   ============================================================ */
.tag-section {
    padding: 60px 0;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.region-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.region-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--tag-color, #4A1942);
}

.region-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--tag-color, #4A1942);
}

.tag-icon {
    font-size: 20px;
}

.tag-name {
    font-size: 14px;
    font-weight: 500;
}

/* ============================================================
   Cases Section (案例)
   ============================================================ */
.cases-section {
    padding: 60px 0;
    background: white;
}

.cases-section:nth-of-type(odd) {
    background: #f7fafc;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-grid-large {
    grid-template-columns: repeat(3, 1fr);
}

.case-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border-left: 4px solid #4A1942;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(74, 25, 66, 0.12);
    border-left-color: #FFD700;
}

.case-card-large {
    padding: 24px;
}

.case-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #4A1942, #6B2D5C);
    color: #FFD700;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}

.case-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 6px;
    line-height: 1.4;
}

.case-client {
    font-size: 13px;
    color: #718096;
    margin-bottom: 10px;
}

.case-concept {
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-adapt-info {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.adapt-info-item {
    display: inline-block;
    padding: 3px 8px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
    font-size: 11px;
    margin-right: 6px;
}

.case-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-tag {
    font-size: 12px;
    color: #718096;
}

.case-effect {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.effect-item {
    padding: 4px 10px;
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    color: #065F46;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* ============================================================
   Service Section (服务介绍)
   ============================================================ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(74, 25, 66, 0.12);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    font-size: 13px;
    color: #4a5568;
    padding: 6px 0;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #4A1942 0%, #2D1B69 100%);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: #E8D5B7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content-small {
    text-align: center;
    color: white;
    padding: 20px 0;
}

.cta-content-small h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.cta-content-small p {
    font-size: 14px;
    color: #E8D5B7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.bottom-actions {
    background: linear-gradient(135deg, #4A1942 0%, #2D1B69 100%);
    padding: 50px 0;
    margin-top: 0;
}

/* ============================================================
   Page Header (子页面)
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, #4A1942 0%, #2D1B69 50%, #1A1A4E 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 15px;
    color: #E8D5B7;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.project-id {
    font-size: 13px;
    color: #FFD700;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

/* ============================================================
   Search Section
   ============================================================ */
.search-section {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.search-form {
    max-width: 800px;
    margin: 0 auto 20px;
}

.search-input-wrap {
    display: flex;
    gap: 12px;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: #4A1942;
    box-shadow: 0 0 0 3px rgba(74, 25, 66, 0.1);
}

.hot-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hot-tags-label {
    font-size: 13px;
    color: #718096;
}

.hot-tag {
    padding: 6px 14px;
    background: #f7fafc;
    color: #4A1942;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.hot-tag:hover {
    background: #4A1942;
    color: #FFD700;
}

/* Filter Bar */
.filter-bar {
    max-width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.filter-label {
    font-size: 13px;
    color: #718096;
    min-width: 50px;
    font-weight: 500;
}

.filter-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-option {
    padding: 6px 14px;
    background: #f7fafc;
    color: #4a5568;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.filter-option:hover,
.filter-option.active {
    background: #4A1942;
    color: #FFD700;
}

/* ============================================================
   Culture List Section
   ============================================================ */
.culture-list-section {
    padding: 40px 0;
}

.culture-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

/* 筛选侧边栏 */
.filter-sidebar {
    background: white;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.filter-group-sidebar {
    margin-bottom: 24px;
}

.filter-title {
    font-size: 15px;
    color: #1a202c;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4A1942;
    display: inline-block;
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-item {
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #4a5568;
    font-size: 13px;
    transition: all 0.2s;
}

.filter-item:hover {
    background: #f7fafc;
    color: #4A1942;
}

.filter-item.active {
    background: linear-gradient(135deg, #4A1942, #6B2D5C);
    color: #FFD700;
}

.filter-region-group {
    margin-bottom: 8px;
}

.region-header {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #1a202c;
}

.region-provinces {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 12px 8px;
}

.province-tag {
    padding: 3px 10px;
    background: #f7fafc;
    color: #6B7280;
    border-radius: 12px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.province-tag:hover,
.province-tag.active {
    background: #4A1942;
    color: #FFD700;
}

/* 文化内容区 */
.culture-content {
    min-width: 0;
}

.result-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.result-count {
    font-size: 14px;
    color: #4a5568;
}

.result-count strong {
    color: #4A1942;
    font-size: 16px;
}

.result-filter {
    padding: 4px 12px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 12px;
    font-size: 12px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.culture-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.culture-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(74, 25, 66, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.culture-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.culture-icon {
    font-size: 36px;
}

.culture-type-badge {
    padding: 4px 10px;
    background: linear-gradient(135deg, #4A1942, #6B2D5C);
    color: #FFD700;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
}

.culture-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 6px;
    line-height: 1.4;
}

.culture-region {
    font-size: 12px;
    color: #718096;
    margin-bottom: 8px;
}

.culture-desc {
    font-size: 13px;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.culture-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.culture-tag {
    padding: 3px 8px;
    background: #f7fafc;
    color: #6B7280;
    border-radius: 4px;
    font-size: 11px;
}

.culture-card-footer {
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.explore-more {
    font-size: 13px;
    color: #4A1942;
    font-weight: 500;
    opacity: 0.8;
}

.culture-card:hover .explore-more {
    opacity: 1;
    color: #B8860B;
}

/* ============================================================
   Pagination
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.page-btn {
    padding: 10px 20px;
    background: white;
    color: #4A1942;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.page-btn:hover {
    background: #4A1942;
    color: #FFD700;
    border-color: #4A1942;
}

.page-info {
    font-size: 14px;
    color: #718096;
}

/* ============================================================
   Empty State
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.empty-state p {
    color: #718096;
    margin-bottom: 20px;
    font-size: 14px;
}

/* ============================================================
   Detail Page
   ============================================================ */
.detail-hero {
    background: linear-gradient(135deg, #4A1942 0%, #2D1B69 50%, #1A1A4E 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.detail-hero-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.detail-icon {
    font-size: 64px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.detail-info {
    flex: 1;
}

.detail-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.detail-badge {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #FFD700;
    border-radius: 20px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

.detail-badge-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #4A1942;
    font-weight: 600;
}

.detail-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.detail-desc {
    font-size: 15px;
    color: #E8D5B7;
    line-height: 1.7;
    max-width: 800px;
}

.detail-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.detail-content {
    padding: 40px 0;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.detail-main {
    min-width: 0;
}

.detail-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.detail-section-title {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-icon {
    font-size: 20px;
}

.detail-section-content h4 {
    font-size: 15px;
    color: #1a202c;
    margin: 16px 0 8px;
}

.detail-section-content p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 12px;
}

.detail-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.detail-tag {
    padding: 6px 14px;
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    color: #7c2d12;
    border-radius: 20px;
    font-size: 13px;
}

.scenario-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scenario-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5568;
}

.scenario-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.info-item {
    padding: 12px 16px;
    background: #f7fafc;
    border-radius: 8px;
}

.info-label {
    display: block;
    font-size: 12px;
    color: #718096;
    margin-bottom: 4px;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: #1a202c;
}

/* Adapt Info */
.adapt-info {
    padding: 16px;
    background: #fef3c7;
    border-radius: 8px;
}

.adapt-row {
    padding: 6px 0;
    font-size: 14px;
}

.adapt-label {
    color: #92400e;
    font-weight: 500;
}

.adapt-value {
    color: #1a202c;
}

/* Effect Grid */
.effect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.effect-card {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    border-radius: 12px;
}

.effect-card .effect-value {
    font-size: 22px;
    font-weight: 700;
    color: #065F46;
    margin-bottom: 4px;
}

.effect-card .effect-label {
    font-size: 12px;
    color: #047857;
}

/* Sidebar */
.detail-sidebar {
    min-width: 0;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sidebar-title {
    font-size: 16px;
    color: #1a202c;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4A1942;
    display: inline-block;
}

.sidebar-desc {
    font-size: 13px;
    color: #718096;
    margin-bottom: 16px;
}

.sidebar-directions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.sidebar-direction-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: #f7fafc;
    border-radius: 8px;
    text-decoration: none;
    color: #4a5568;
    font-size: 11px;
    transition: all 0.3s;
}

.sidebar-direction-btn:hover {
    background: #4A1942;
    color: #FFD700;
    transform: translateY(-2px);
}

.direction-icon {
    font-size: 20px;
}

.direction-name {
    font-size: 12px;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.related-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.related-item:hover {
    background: #f7fafc;
}

.related-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.related-info {
    flex: 1;
    min-width: 0;
}

.related-name {
    font-size: 13px;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-type {
    font-size: 12px;
    color: #718096;
}

/* ============================================================
   Recommend Section
   ============================================================ */
.recommend-section {
    padding: 30px 0;
    background: #f7fafc;
}

.recommend-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.recommend-header {
    text-align: center;
    margin-bottom: 24px;
}

.recommend-header h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 6px;
}

.recommend-header p {
    font-size: 14px;
    color: #718096;
}

.recommend-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

.form-control {
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #4A1942;
    box-shadow: 0 0 0 3px rgba(74, 25, 66, 0.1);
}

.form-control-inline {
    width: auto;
    display: inline-block;
}

.form-actions {
    text-align: center;
}

.recommend-result {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
}

.recommend-result-header h4 {
    font-size: 16px;
    color: #1a202c;
    margin-bottom: 16px;
}

.recommend-direction-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    justify-content: center;
}

.recommend-dir-card {
    text-align: center;
    padding: 20px 24px;
    background: #f7fafc;
    border-radius: 12px;
    min-width: 120px;
    position: relative;
    transition: all 0.3s;
}

.recommend-dir-card.primary {
    background: linear-gradient(135deg, #4A1942, #6B2D5C);
    color: white;
    transform: scale(1.05);
}

.recommend-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #4A1942;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.recommend-dir-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.recommend-dir-name {
    font-size: 14px;
    font-weight: 500;
}

.recommend-reason {
    text-align: center;
    padding: 12px 20px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
}

.recommend-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.recommend-detail-item {
    padding: 12px;
    background: #f7fafc;
    border-radius: 8px;
    text-align: center;
}

.recommend-detail-item .detail-label {
    display: block;
    font-size: 12px;
    color: #718096;
    margin-bottom: 4px;
}

.recommend-detail-item .detail-value {
    font-size: 13px;
    color: #1a202c;
    font-weight: 500;
}

/* ============================================================
   Adapt Form Section
   ============================================================ */
.adapt-form-section {
    padding: 40px 0;
}

.adapt-form {
    max-width: 900px;
    margin: 0 auto;
}

.adapt-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4A1942, #6B2D5C);
    color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 16px;
}

.step-subtitle {
    font-size: 13px;
    color: #718096;
    margin-top: -10px;
    margin-bottom: 16px;
}

.search-row {
    margin-bottom: 16px;
}

.search-input-small {
    position: relative;
}

.search-input-small input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.search-input-small input:focus {
    outline: none;
    border-color: #4A1942;
    box-shadow: 0 0 0 3px rgba(74, 25, 66, 0.1);
}

/* IP/Culture Select Grid */
.ip-select-grid,
.culture-select-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.ip-select-card,
.culture-select-card {
    padding: 16px 12px;
    background: #f7fafc;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.ip-select-card:hover,
.culture-select-card:hover {
    background: #fff9e6;
    border-color: #FFD700;
    transform: translateY(-2px);
}

.ip-select-card.selected,
.culture-select-card.selected {
    background: linear-gradient(135deg, #4A1942, #6B2D5C);
    color: #FFD700;
    border-color: #4A1942;
}

.ip-card-icon,
.culture-card-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.ip-card-name,
.culture-card-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
}

.ip-card-type,
.culture-card-type {
    font-size: 11px;
    opacity: 0.7;
}

.custom-label {
    font-size: 13px;
    color: #718096;
    margin-bottom: 8px;
}

.custom-ip-section,
.custom-culture-section {
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
}

/* Region Tags */
.hot-region-select {
    margin-bottom: 16px;
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.region-select-tag {
    padding: 8px 16px;
    background: #f7fafc;
    color: #4a5568;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.region-select-tag:hover {
    background: #fff9e6;
    border-color: #FFD700;
}

.region-select-tag.selected {
    background: linear-gradient(135deg, #4A1942, #6B2D5C);
    color: #FFD700;
    border-color: #4A1942;
}

/* Direction Select Grid */
.direction-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.direction-select-card {
    display: block;
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

.direction-select-card input {
    display: none;
}

.direction-select-card:hover {
    background: #fff9e6;
    border-color: #FFD700;
    transform: translateY(-2px);
}

.direction-select-card.selected {
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border-color: #FFD700;
}

.direction-card-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.direction-card-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 4px;
}

.direction-card-desc {
    font-size: 12px;
    color: #718096;
    line-height: 1.4;
}

/* Festival Select */
.festival-select-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.festival-select-card {
    display: block;
    padding: 14px 8px;
    background: #f7fafc;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

.festival-select-card input {
    display: none;
}

.festival-select-card:hover {
    background: #fff9e6;
    border-color: #FFD700;
}

.festival-select-card input:checked + .festival-card-icon + .festival-card-name,
.festival-select-card:has(input:checked) {
    background: linear-gradient(135deg, #fff9e6, #fff3cd);
    border-color: #FFD700;
}

.festival-card-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.festival-card-name {
    font-size: 12px;
    color: #4a5568;
    font-weight: 500;
}

/* Submit */
.adapt-submit {
    text-align: center;
    padding: 30px 0;
}

.submit-tip {
    font-size: 13px;
    color: #718096;
    margin-top: 12px;
}

/* ============================================================
   Plans Section (结果页)
   ============================================================ */
.plans-section {
    padding: 40px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    border-top: 4px solid #4A1942;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(74, 25, 66, 0.15);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.plan-badge {
    padding: 6px 14px;
    background: linear-gradient(135deg, #4A1942, #6B2D5C);
    color: #FFD700;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.plan-direction {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #718096;
}

.plan-direction .direction-icon {
    font-size: 18px;
}

.plan-title {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.4;
}

.plan-section {
    margin-bottom: 16px;
}

.plan-section-title {
    font-size: 13px;
    color: #1a202c;
    margin-bottom: 8px;
    font-weight: 600;
}

.plan-concept {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.6;
}

.plan-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-points li {
    font-size: 12px;
    color: #718096;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.plan-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.plan-points li.high-priority::before {
    color: #EF4444;
}

.plan-points li strong {
    display: block;
    color: #4a5568;
    font-size: 12px;
}

.plan-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.element-tag {
    padding: 4px 10px;
    background: #f7fafc;
    color: #4a5568;
    border-radius: 4px;
    font-size: 11px;
}

.plan-colors {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.color-item {
    text-align: center;
    flex: 1;
}

.color-swatch {
    width: 100%;
    height: 32px;
    border-radius: 6px;
    margin-bottom: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-hex {
    font-size: 10px;
    color: #718096;
}

.color-note {
    font-size: 11px;
    color: #718096;
    font-style: italic;
}

.effect-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.effect-row .effect-item {
    text-align: center;
    padding: 8px;
    background: #f7fafc;
    border-radius: 8px;
}

.effect-row .effect-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #065F46;
    margin-bottom: 2px;
}

.effect-row .effect-label {
    font-size: 10px;
    color: #718096;
}

.plan-actions {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ============================================================
   Scenarios Section
   ============================================================ */
.scenarios-section {
    padding: 60px 0;
    background: #f7fafc;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.scenario-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.scenario-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.scenario-card h3 {
    font-size: 16px;
    color: #1a202c;
    margin-bottom: 8px;
}

.scenario-card p {
    font-size: 13px;
    color: #718096;
}

/* ============================================================
   Tips Section
   ============================================================ */
.tips-section {
    padding: 60px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tip-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.tip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.tip-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #4A1942;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.tip-card p {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.6;
}

/* ============================================================
   Marketing Section
   ============================================================ */
.marketing-section {
    padding: 60px 0;
    background: #f7fafc;
}

.marketing-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.marketing-item {
    background: white;
    padding: 16px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.marketing-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.marketing-icon {
    font-size: 18px;
}

.marketing-item span:last-child {
    font-size: 14px;
    color: #4a5568;
}

/* ============================================================
   Trending Section
   ============================================================ */
.trending-section {
    padding: 60px 0;
    background: #f7fafc;
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trending-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.trending-card-title {
    font-size: 16px;
    color: #1a202c;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4A1942;
    display: inline-block;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.trending-item:hover {
    background: #f7fafc;
}

.trending-rank {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #4A1942, #6B2D5C);
    color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.trending-item:first-child .trending-rank {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #4A1942;
}

.trending-name {
    flex: 1;
    font-size: 14px;
    color: #1a202c;
    font-weight: 500;
}

.trending-growth {
    font-size: 13px;
    color: #059669;
    font-weight: 600;
}

.trending-directions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trending-dir-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f7fafc;
    border-radius: 8px;
    transition: all 0.2s;
}

.trending-dir-item:hover {
    background: #fff9e6;
}

.trending-dir-icon {
    font-size: 24px;
}

.trending-dir-info {
    flex: 1;
}

.trending-dir-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #1a202c;
}

.trending-insights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-item {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
}

.insight-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1024px) {
    .culture-layout {
        grid-template-columns: 1fr;
    }
    
    .filter-sidebar {
        order: 2;
    }
    
    .culture-grid,
    .case-grid,
    .feature-grid,
    .style-grid,
    .plans-grid,
    .service-grid,
    .trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .direction-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .festival-select-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .culture-grid,
    .case-grid,
    .feature-grid,
    .style-grid,
    .plans-grid,
    .service-grid,
    .trending-grid {
        grid-template-columns: 1fr;
    }
    
    .ip-select-grid,
    .culture-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .direction-select-grid {
        grid-template-columns: 1fr;
    }
    
    .festival-select-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .effect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 12px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .logo-sub {
        display: none;
    }
}
