/* ============================================
   {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 */
.cc05046d8 {
    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;
}

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

.c2eb85e6e {
    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 */
.caf78a858 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.c638f959b a:hover,
.c638f959b a.c985fa987 {
    color: var(--text-primary);
}

.c638f959b a:hover::after,
.c638f959b a.c985fa987::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Buttons */
.c87236d30 {
    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;
}

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

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

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

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

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

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

/* Trust Section */
.c574ed875 {
    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);
}

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

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

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

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

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

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

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

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

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

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

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

.c0fc7a9df:hover .c1df28364 {
    transform: scale(1.05);
}

.c4d5e0db2 {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.c466f58f8:hover .c741bfd65 {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cf6bb4082.ce721cd04 {
    grid-column: 1 / -1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cd1cbbf89 ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c789492e8 {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Mobile Navigation */
.c96ba9063 {
    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;
}

.c96ba9063.c985fa987 {
    display: flex;
}

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

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

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

@media (max-width: 768px) {
    .c638f959b {
        display: none;
    }
    
    .cfa4bc5e7 {
        display: flex;
    }
    
    .cf4f4bf0a h1 {
        font-size: 2rem;
    }
    
    .cf4f4bf0a p {
        font-size: 1rem;
    }
    
    .c48fe1eeb {
        padding: 60px 0;
    }
    
    .ccea4e658 {
        grid-template-columns: 1fr;
    }
    
    .c90b6ac4a {
        grid-template-columns: 1fr 1fr;
    }
    
    .ce3b4171e {
        grid-template-columns: 1fr;
    }
    
    .cb081fb0a {
        grid-template-columns: 1fr;
    }
    
    .c9f14db75 {
        grid-template-columns: 1fr 1fr;
    }
    
    .caf14f025 img {
        height: 300px;
    }
    
    .cf00bfc3f {
        height: 300px;
    }
    
    .c969c7f3d {
        grid-template-columns: 1fr;
    }
    
    .c29ef39ba {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .caf78a858 {
        padding: 0 1rem;
    }
    
    .c90b6ac4a {
        grid-template-columns: 1fr;
    }
    
    .c9f14db75 {
        grid-template-columns: 1fr;
    }
    
    .ce069ca98 {
        grid-template-columns: 1fr;
    }
}
