/* ============================================
   {SITE_TITLE} - 全站样式表
   剧本杀剧本发行与沉浸式实景剧本创作平台
   ============================================ */

/* CSS Variables */
:root {
    --primary: #0a0a0f;
    --primary-dark: #050508;
    --accent: #8b1a1a;
    --accent-light: #b22222;
    --accent-glow: rgba(139, 26, 26, 0.3);
    --gold: #c9a84c;
    --gold-light: #e6c76e;
    --bg-dark: #0d0d12;
    --bg-medium: #141419;
    --bg-light: #1a1a22;
    --card-bg: rgba(26, 26, 34, 0.85);
    --card-border: rgba(139, 26, 26, 0.2);
    --text-primary: #e8e6e3;
    --text-secondary: #a09c97;
    --text-muted: #6b6763;
    --font-main: 'Noto Serif SC', serif;
    --font-body: 'Noto Sans SC', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 16px 48px rgba(139, 26, 26, 0.2);
}

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

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

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

/* Loading Animation */
.cfaa8fe2e {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.cfaa8fe2e.loaded {
    opacity: 0;
    visibility: hidden;
}

.c820815d2 {
    font-family: var(--font-main);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

/* Container */
.c7331f2b7 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section */
.ce3c21cf2 {
    padding: 100px 0;
    position: relative;
}

.caccae96e {
    text-align: center;
    margin-bottom: 60px;
}

.caccae96e h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.caccae96e h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.caccae96e p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.c8c3b73ed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.c8c3b73ed.ce7d49de3 {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.ce9c1a4ed {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.c34657471 {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.c34657471 a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding: 4px 0;
}

.c34657471 a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.c34657471 a:hover,
.c34657471 a.c275a08fe {
    color: var(--text-primary);
}

.c34657471 a:hover::after,
.c34657471 a.c275a08fe::after {
    width: 100%;
}

.c07fa6a56 {
    padding: 10px 24px;
    background: var(--accent);
    color: #fff !important;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.c07fa6a56:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.c326bc142 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.c326bc142 span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

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

.c0f566174 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.c469a5ce7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(5, 5, 8, 0.3) 0%,
        rgba(5, 5, 8, 0.6) 50%,
        rgba(5, 5, 8, 0.9) 100%
    );
}

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

.cf9041e9d h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.cf9041e9d h1 span {
    color: var(--accent-light);
}

.cf9041e9d p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

/* Buttons */
.c227aff2f {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.ce1a7f5d3 {
    background: var(--accent);
    color: #fff;
}

.ce1a7f5d3:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--accent-glow);
    color: #fff;
}

.c248441a2 {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.c248441a2:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.c9418c323 {
    background: var(--gold);
    color: var(--primary);
}

.c9418c323:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
    color: var(--primary);
}

/* Trust Section */
.cef9de6fb {
    padding: 60px 0;
    background: var(--bg-medium);
    border-top: 1px solid rgba(139, 26, 26, 0.1);
    border-bottom: 1px solid rgba(139, 26, 26, 0.1);
}

.ca1ad23f8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    opacity: 0.6;
}

.ce44f008f {
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-align: center;
    transition: var(--transition);
}

.ce44f008f:hover {
    opacity: 1;
    color: var(--gold);
}

/* Stats */
.c719dd7f0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 40px 0;
}

.c2e0762de {
    text-align: center;
    padding: 2rem;
}

.cbe6a4ace {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.cb660b892 {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* Service Cards */
.ceab5e670 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.c7913ea06 {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.c7913ea06:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.c0114e9ba {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.c7913ea06:hover .c0114e9ba {
    transform: scale(1.05);
}

.cee836726 {
    padding: 1.5rem;
}

.cee836726 h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.cee836726 p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.c5a77ca00 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    color: var(--accent-light);
    font-size: 0.9rem;
}

.c5a77ca00:hover {
    color: var(--gold);
    gap: 10px;
}

/* Case Gallery */
.c2318722f {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.c3cc8d68a {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.c3cc8d68a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.c3cc8d68a:hover img {
    transform: scale(1.08);
}

.c8c1ee6ba {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.c3cc8d68a:hover .c8c1ee6ba {
    transform: translateY(0);
    opacity: 1;
}

.c8c1ee6ba h4 {
    color: #fff;
    margin-bottom: 0.3rem;
}

.c8c1ee6ba span {
    color: var(--accent-light);
    font-size: 0.85rem;
}

/* Filter Tabs */
.c0a08631f {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.c57492b5a {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.c57492b5a:hover,
.c57492b5a.c275a08fe {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Pain Point Section */
.ce81d2977 {
    background: var(--bg-medium);
    position: relative;
}

.cfb43541b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.c36dfa8c5 {
    padding: 1.5rem;
    border-left: 3px solid var(--accent);
    margin-bottom: 1.5rem;
    background: rgba(139, 26, 26, 0.05);
    border-radius: 0 8px 8px 0;
}

.c36dfa8c5 h4 {
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.c7cbec276 {
    padding: 1.5rem;
    border-left: 3px solid var(--gold);
    margin-bottom: 1.5rem;
    background: rgba(201, 168, 76, 0.05);
    border-radius: 0 8px 8px 0;
}

.c7cbec276 h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* Process Module */
.ca463b1fd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}

.c565f5889 {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.c565f5889:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.cfdb96c5e {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.c565f5889 h4 {
    margin-bottom: 0.8rem;
}

/* Carousel */
.c1d8d19fe {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.c06f3976d {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

.c3e1edde7 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.cfe28eac0 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.c8092c8e8 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 26, 26, 0.8);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.c8092c8e8:hover {
    background: var(--accent-light);
    transform: scale(1.1);
}

/* Quote Calculator */
.c9a3593d6 {
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.cf741c224 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cf741c224.c3d11530c {
    grid-column: 1 / -1;
}

.cf741c224 label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cf741c224 input,
.cf741c224 select,
.cf741c224 textarea {
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.cf741c224 input:focus,
.cf741c224 select:focus,
.cf741c224 textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

/* CTA Section */
.c2d7b7022 {
    background: linear-gradient(135deg, var(--bg-medium), var(--bg-dark));
    border-top: 1px solid var(--card-border);
    text-align: center;
    padding: 80px 0;
}

.c2d7b7022 h2 {
    margin-bottom: 1rem;
}

.c2d7b7022 p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.cd37db136 {
    background: var(--primary-dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(139, 26, 26, 0.15);
}

.c4dfa6243 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.c5fed14c2 h3 {
    font-family: var(--font-main);
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.c5fed14c2 p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.cf2400b8e h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cf2400b8e ul {
    list-style: none;
}

.cf2400b8e li {
    margin-bottom: 0.6rem;
}

.cf2400b8e a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cf2400b8e a:hover {
    color: var(--gold);
}

.cdc7eea25 {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Page Header (for inner pages) */
.c480d7c17 {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c5a4cd2f0 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.c59e0f25f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.7);
}

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

.c99257522 h1 {
    margin-bottom: 0.5rem;
}

.c4180e0fe {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.c4180e0fe a {
    color: var(--text-secondary);
}

/* News Cards */
.ca6b5aa42 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

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

.cd1c8c54e:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.c893a40cd {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.cf0037bd0 {
    padding: 1.5rem;
}

.c100f3965 {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cf0037bd0 h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.cf0037bd0 h3 a {
    color: var(--text-primary);
}

.cf0037bd0 h3 a:hover {
    color: var(--gold);
}

/* Scroll Animations */
.c4cddcef2 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.ce27ff667 {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ce27ff667.visible {
    opacity: 1;
    transform: translateX(0);
}

.cd50420f4 {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cd50420f4.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Parallax */
.parallax-bg {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Success Message */
.c2ce67720 {
    display: none;
    text-align: center;
    padding: 3rem;
}

.c2ce67720.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.c95d1e25e {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Mobile Navigation */
.c26b71da2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.c26b71da2.c275a08fe {
    display: flex;
}

.c26b71da2 a {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-family: var(--font-main);
}

.c44023021 {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
    background: none;
    border: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .c4dfa6243 {
        grid-template-columns: 1fr 1fr;
    }
    
    .cfb43541b {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .c34657471 {
        display: none;
    }
    
    .c326bc142 {
        display: flex;
    }
    
    .cf9041e9d h1 {
        font-size: 2rem;
    }
    
    .cf9041e9d p {
        font-size: 1rem;
    }
    
    .ce3c21cf2 {
        padding: 60px 0;
    }
    
    .ceab5e670 {
        grid-template-columns: 1fr;
    }
    
    .c2318722f {
        grid-template-columns: 1fr 1fr;
    }
    
    .c5659ea94 {
        grid-template-columns: 1fr;
    }
    
    .c4dfa6243 {
        grid-template-columns: 1fr;
    }
    
    .c719dd7f0 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c39ff1644 img {
        height: 300px;
    }
    
    .c480d7c17 {
        height: 300px;
    }
    
    .ca6b5aa42 {
        grid-template-columns: 1fr;
    }
    
    .c647a4737 {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .c7331f2b7 {
        padding: 0 1rem;
    }
    
    .c2318722f {
        grid-template-columns: 1fr;
    }
    
    .c719dd7f0 {
        grid-template-columns: 1fr;
    }
    
    .ca463b1fd {
        grid-template-columns: 1fr;
    }
}
