/* ============================================
   {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过渡动画 */
.cdb638c10 {
    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;
}

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

.c9452fc93 {
    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); }
}

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

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

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

.cd1fc3f29 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

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

.c54cdadbd:hover .c6f650efa {
    transform: scale(1);
}

.cea50a793 {
    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%);
}

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

.c52fb7bbd {
    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);
}

.cee886ef3 {
    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;
}

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

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

/* 按钮样式 */
.cf8713dd4 {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

/* 信任背书模块 */
.ceebe6a70 {
    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;
}

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

.c297b17f9 {
    text-align: center;
}

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

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

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

.c8b547c7c {
    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;
}

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

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

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

.c155e9c13 {
    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;
}

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

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

.c8b547c7c .c2ca1f870 {
    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);
}

.c8b547c7c .c2ca1f870:hover {
    gap: 0.8rem;
}

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

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

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

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

.c2f3cef73 {
    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;
}

.cab069139:hover .c2f3cef73 {
    transform: translateY(0);
}

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

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

.c48c3ef1e {
    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;
}

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

.ca030d445 {
    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;
}

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

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

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

.cdb755e87 .c9b973700 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

.c38023b73 {
    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;
}

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

.c38023b73.c7d672751 { left: 1rem; }
.c38023b73.c7a510557 { right: 1rem; }

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

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

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

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

.c643f03be {
    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;
}

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

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

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

/* 智能需求匹配/报价测算工具 */
.c0a913f5a {
    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;
}

.cc7199162 {
    margin-bottom: 1.5rem;
}

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

.cc7199162 select,
.cc7199162 input,
.cc7199162 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);
}

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

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

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

/* 转化引导模块 */
.cf2f42f6c {
    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;
}

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

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

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

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

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

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

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

.cbc4220b5 ul {
    list-style: none;
}

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

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

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

.cba9e2eb4 {
    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;
}

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

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

.c1860aa5b.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 */
.cddb7cb40 {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.cddb7cb40 .cddaae2cc {
    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));
}

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

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

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

.cd7c10896 .caa5a3709 a {
    color: var(--primary);
    text-decoration: none;
}

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

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

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

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

.c3e6364a7 {
    padding: 1.5rem;
}

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

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

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

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

.ce1b6b75d {
    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);
}

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

.c54160018 a, .c54160018 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);
}

.c54160018 a:hover, .c54160018 .cfe721e32 {
    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);
}

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

.c694983c0.show {
    display: block;
}

.c694983c0 .c500f349b {
    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) {
    .cab14b3eb {
        grid-template-columns: 1fr 1fr;
    }
    
    .c71549366 {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .c27c15cf8::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .c8590e416 {
        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);
    }
    
    .c8590e416.cfe721e32 {
        right: 0;
    }
    
    .cd132afc4 {
        display: flex;
    }
    
    .cee886ef3 {
        font-size: 2.2rem;
    }
    
    .c9f3eacca {
        font-size: 1rem;
    }
    
    .c91bb424a {
        grid-template-columns: 1fr;
    }
    
    .cbbd77f3a {
        grid-template-columns: 1fr;
    }
    
    .cef382e2f {
        grid-template-columns: 1fr;
    }
    
    .c1bc78c52 {
        grid-template-columns: 1fr;
    }
    
    .cab14b3eb {
        grid-template-columns: 1fr;
    }
    
    .cba9e2eb4 {
        flex-direction: column;
        text-align: center;
    }
    
    .c429503db {
        padding: 4rem 1.5rem;
    }
    
    .ccb3e60b4 img {
        height: 300px;
    }
    
    .cd49fa43b {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .c54cdadbd {
        min-height: 600px;
    }
    
    .cbc9fb310 {
        flex-direction: column;
        align-items: center;
    }
    
    .cf8713dd4 {
        width: 100%;
        justify-content: center;
    }
    
    .cddb7cb40 {
        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);
}
