/* ============================================
   {SITE_TITLE} - 全局样式表
   虚拟现实(VR)电竞馆与沉浸式体验中心
   色彩体系：赛博霓虹蓝 + 全息紫
   ============================================ */

/* CSS变量定义 */
:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --primary-glow: rgba(0, 212, 255, 0.3);
    --secondary: #a855f7;
    --secondary-dark: #7c3aed;
    --secondary-glow: rgba(168, 85, 247, 0.3);
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-section: #0f1428;
    --bg-section-alt: #121832;
    --card-bg: rgba(15, 20, 40, 0.8);
    --card-border: rgba(0, 212, 255, 0.15);
    --card-hover: rgba(0, 212, 255, 0.08);
    --text-primary: #e8edf5;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gradient-primary: linear-gradient(135deg, #00d4ff, #a855f7);
    --gradient-dark: linear-gradient(180deg, #0a0e1a, #0f1428);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.2);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Orbitron', monospace;
}

/* 全局重置 */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* 品牌Logo过渡动画 */
.c6441befa {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.c6441befa.hidden {
    opacity: 0;
    visibility: hidden;
}

.cd589f648 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 0 20px var(--primary-glow); }
    50% { text-shadow: 0 0 40px var(--primary), 0 0 60px var(--secondary-glow); }
}

/* 导航栏 */
.c76d9bdb8 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

.c76d9bdb8.cf4964eb5 {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: 0.7rem 2rem;
}

.c65ea9346 {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c166d08eb {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    text-shadow: 0 0 10px var(--primary-glow);
}

.cca5cede1 {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.cca5cede1 a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.cca5cede1 a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.cca5cede1 a:hover {
    color: var(--primary);
}

.cca5cede1 a:hover::after {
    width: 100%;
}

.cb863f8f9 {
    background: var(--gradient-primary);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-neon);
}

.cb863f8f9:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.cb863f8f9::after {
    display: none !important;
}

/* 移动端菜单按钮 */
.c76027977 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.c76027977 span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.ccd015c9d {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c8d9ac477 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.ccd015c9d:hover .c8d9ac477 {
    transform: scale(1);
}

.c0e450285 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 8, 16, 0.4) 0%, rgba(10, 14, 26, 0.8) 100%);
}

.c363797b8 {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.c16b5190f {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.c4fb49da2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c36cb1571 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cb86b90ce {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 按钮样式 */
.c4c82cdf8 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.ca6a13904 {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-neon);
}

.ca6a13904:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px var(--primary-glow);
}

.c85da04d5 {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.c85da04d5:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

/* 通用Section样式 */
.c84eaeb22 {
    padding: 6rem 2rem;
    position: relative;
}

.c162e8f6c {
    background: var(--bg-section-alt);
}

.c7b01a60a {
    max-width: 1200px;
    margin: 0 auto;
}

.c551772af {
    text-align: center;
    margin-bottom: 4rem;
}

.c14342641 {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.cae59e5f4 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.c7acfd6d6 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 信任背书模块 */
.caec0d05c {
    padding: 3rem 2rem;
    background: var(--bg-section);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.trust-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.trust-logos img {
    height: 40px;
    width: auto;
}

.c96d381cf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.c1f9bc060 {
    text-align: center;
}

.c995652d6 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.cfc18674f {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

/* 核心优势/服务模块 */
.cbc714429 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.c49ecd6d2 {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.c49ecd6d2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.c49ecd6d2:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.c49ecd6d2:hover::before {
    opacity: 1;
}

.cb7f9db2b {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.c49ecd6d2 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.c49ecd6d2 p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.c49ecd6d2 .cacf26312 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.c49ecd6d2 .cacf26312:hover {
    gap: 0.8rem;
}

/* 精选案例/作品展示 - 网格布局 */
.c51d1109c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.c5062e9ae {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    group: true;
}

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

.c5062e9ae:hover img {
    transform: scale(1.1);
}

.c8d92a21b {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(5, 8, 16, 0.95));
    transform: translateY(30%);
    transition: transform 0.4s ease;
}

.c5062e9ae:hover .c8d92a21b {
    transform: translateY(0);
}

.c8d92a21b h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.c8d92a21b p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.c2cab116d {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

/* 案例筛选标签 */
.cc5434b25 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cb043fcdc {
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cb043fcdc.c3d846bc6,
.cb043fcdc:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

/* 行业痛点与解决方案 */
.c9cece7f5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.c81890948 {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.c81890948 .c0876d984 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.c81890948 h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #ff6b6b;
}

.c81890948 .c7fb71eb1 {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--card-border);
}

.c81890948 .c7fb71eb1 h5 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.c81890948 .c7fb71eb1 p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* 轮播图组件 */
.c803f4b11 {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.ca9fb046f {
    display: flex;
    transition: transform 0.5s ease;
}

.cd2cde1be {
    min-width: 100%;
    position: relative;
}

.cd2cde1be img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.c7386de61 {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.c746911dd {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.c746911dd.c3d846bc6 {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.c7d291078 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid var(--card-border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.c7d291078:hover {
    background: var(--primary);
    color: #fff;
}

.c7d291078.c4a0f0e19 { left: 1rem; }
.c7d291078.c3b89ff78 { right: 1rem; }

/* 互动式服务流程体验模块 */
.c8774764e {
    position: relative;
    padding: 2rem 0;
}

.c8774764e::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.cccebf41a {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.cccebf41a:nth-child(even) {
    flex-direction: row-reverse;
}

.c005df279 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: var(--shadow-neon);
    position: relative;
    z-index: 2;
}

.cab2c354b {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cab2c354b h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.cab2c354b p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 智能需求匹配/报价测算工具 */
.ca40c7e0c {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
}

.c559eb2cb {
    margin-bottom: 1.5rem;
}

.c559eb2cb label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.c559eb2cb select,
.c559eb2cb input,
.c559eb2cb textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(15, 20, 40, 0.6);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-main);
}

.c559eb2cb select:focus,
.c559eb2cb input:focus,
.c559eb2cb textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.c559eb2cb textarea {
    resize: vertical;
    min-height: 100px;
}

.cd185acdb {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* 转化引导模块 */
.c063f0f1f {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(168, 85, 247, 0.05));
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    text-align: center;
    padding: 5rem 2rem;
}

.c06dc064f {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.c48018565 {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.ca08f7755 {
    background: var(--bg-darker);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--card-border);
}

.ced834760 {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.ccb5514a9 .c757f6544 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ccb5514a9 p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.ca782e18f h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.ca782e18f ul {
    list-style: none;
}

.ca782e18f ul li {
    margin-bottom: 0.6rem;
}

.ca782e18f ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.ca782e18f ul li a:hover {
    color: var(--primary);
}

.c4c9ef286 {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.c4c9ef286 p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* 动画效果 */
.c8065c066 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.c8065c066.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 视差效果 */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 页面内部Banner */
.c783b186b {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c783b186b img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.c783b186b .c2cb33b1d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 8, 16, 0.3), rgba(10, 14, 26, 0.9));
}

.ca4b75962 {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ca4b75962 h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.ca4b75962 .c6ddea222 {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ca4b75962 .c6ddea222 a {
    color: var(--primary);
    text-decoration: none;
}

/* 列表页样式 */
.ce811d4b1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.c34d8dacc {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.c34d8dacc:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.cf8ccf776 {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cf856b7b5 {
    padding: 1.5rem;
}

.cf856b7b5 h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cf856b7b5 h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.cf856b7b5 h3 a:hover {
    color: var(--primary);
}

.cf856b7b5 p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.cd0a703a3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 分页 */
.c14d6ad23 {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.c14d6ad23 a, .c14d6ad23 span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.c14d6ad23 a:hover, .c14d6ad23 .c3d846bc6 {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

/* 详情页 */
.detail-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.detail-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.detail-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.detail-content img {
    width: 100%;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}

.detail-content p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.detail-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* 表单成功提示 */
.ca47dd5c7 {
    display: none;
    text-align: center;
    padding: 3rem;
}

.ca47dd5c7.show {
    display: block;
}

.ca47dd5c7 .c6eac53b9 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .ced834760 {
        grid-template-columns: 1fr 1fr;
    }
    
    .cccebf41a {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .c8774764e::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .cca5cede1 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--card-border);
    }
    
    .cca5cede1.c3d846bc6 {
        right: 0;
    }
    
    .c76027977 {
        display: flex;
    }
    
    .c4fb49da2 {
        font-size: 2.2rem;
    }
    
    .c36cb1571 {
        font-size: 1rem;
    }
    
    .cbc714429 {
        grid-template-columns: 1fr;
    }
    
    .c51d1109c {
        grid-template-columns: 1fr;
    }
    
    .c9cece7f5 {
        grid-template-columns: 1fr;
    }
    
    .cd185acdb {
        grid-template-columns: 1fr;
    }
    
    .ced834760 {
        grid-template-columns: 1fr;
    }
    
    .c4c9ef286 {
        flex-direction: column;
        text-align: center;
    }
    
    .c84eaeb22 {
        padding: 4rem 1.5rem;
    }
    
    .cd2cde1be img {
        height: 300px;
    }
    
    .c995652d6 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ccd015c9d {
        min-height: 600px;
    }
    
    .cb86b90ce {
        flex-direction: column;
        align-items: center;
    }
    
    .c4c82cdf8 {
        width: 100%;
        justify-content: center;
    }
    
    .c783b186b {
        height: 300px;
    }
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
