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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c7062eabf:hover .c95ccdab2 {
    transform: scale(1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c0108727f {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.cf5795a76 .c47e58649:hover {
    gap: 0.8rem;
}

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

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

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

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

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

.cf85b5558:hover .cf0f3eb69 {
    transform: translateY(0);
}

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

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

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

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

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

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

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

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

.c46b217af .c14b88e8e {
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.c743357d5.c73629c3b { left: 1rem; }
.c743357d5.cc87d1010 { right: 1rem; }

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

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

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

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

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

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

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

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

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

.caa112ee4 {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.c1618c37e ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.c1db71812 .c55421b65 a {
    color: var(--primary);
    text-decoration: none;
}

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

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

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

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

.cc2d9e5fd {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.c7f98f8f6.show {
    display: block;
}

.c7f98f8f6 .c20e281b5 {
    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) {
    .c89763555 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c9182461d {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .c46cdd17b::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .c770528cf {
        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);
    }
    
    .c770528cf.c505aa4bf {
        right: 0;
    }
    
    .c9df961a1 {
        display: flex;
    }
    
    .c162d5c83 {
        font-size: 2.2rem;
    }
    
    .c42395b56 {
        font-size: 1rem;
    }
    
    .c4b6c6228 {
        grid-template-columns: 1fr;
    }
    
    .cb57a9c14 {
        grid-template-columns: 1fr;
    }
    
    .c3da46826 {
        grid-template-columns: 1fr;
    }
    
    .c8e330f59 {
        grid-template-columns: 1fr;
    }
    
    .c89763555 {
        grid-template-columns: 1fr;
    }
    
    .c96bcbe8f {
        flex-direction: column;
        text-align: center;
    }
    
    .c7883cc26 {
        padding: 4rem 1.5rem;
    }
    
    .ce9f85c68 img {
        height: 300px;
    }
    
    .cae7968f2 {
        font-size: 2rem;
    }
}

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