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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c3bab6d21 a:hover,
.c3bab6d21 a.c406e8d5e {
    color: var(--text-primary);
}

.c3bab6d21 a:hover::after,
.c3bab6d21 a.c406e8d5e::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cc0c9a5c9:hover .cdc812cd5 {
    transform: scale(1.05);
}

.c13473a02 {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.c4f028e0e:hover .c321f8891 {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c74a925a7.cd8f35f6c {
    grid-column: 1 / -1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cd656feaa ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cb1fe97ae {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cdb65c9ec.c406e8d5e {
    display: flex;
}

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

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

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

@media (max-width: 768px) {
    .c3bab6d21 {
        display: none;
    }
    
    .cf7eb692f {
        display: flex;
    }
    
    .c95c2e2d4 h1 {
        font-size: 2rem;
    }
    
    .c95c2e2d4 p {
        font-size: 1rem;
    }
    
    .c3042ead4 {
        padding: 60px 0;
    }
    
    .cb58b0752 {
        grid-template-columns: 1fr;
    }
    
    .cb7466d75 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c7c45b4c6 {
        grid-template-columns: 1fr;
    }
    
    .ca81dbccf {
        grid-template-columns: 1fr;
    }
    
    .c6d36128d {
        grid-template-columns: 1fr 1fr;
    }
    
    .c2dda47bf img {
        height: 300px;
    }
    
    .cdc804fd6 {
        height: 300px;
    }
    
    .c89c7e7c8 {
        grid-template-columns: 1fr;
    }
    
    .c9cd13af8 {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .c4877436e {
        padding: 0 1rem;
    }
    
    .cb7466d75 {
        grid-template-columns: 1fr;
    }
    
    .c6d36128d {
        grid-template-columns: 1fr;
    }
    
    .c27b885d5 {
        grid-template-columns: 1fr;
    }
}
