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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c35e1427d a:hover,
.c35e1427d a.cfa1dbdcd {
    color: var(--text-primary);
}

.c35e1427d a:hover::after,
.c35e1427d a.cfa1dbdcd::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cec7af254:hover .cfb2f097a {
    transform: scale(1.05);
}

.c10c70e1a {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.c1fb6a10b:hover .c8bfdd1fe {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c14a8af20.ca9821e99 {
    grid-column: 1 / -1;
}

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

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

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

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

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

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

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

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

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

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

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

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

.cad3dfe38 ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c8f63b89a {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cb6761bf5.cfa1dbdcd {
    display: flex;
}

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

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

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

@media (max-width: 768px) {
    .c35e1427d {
        display: none;
    }
    
    .c214910d4 {
        display: flex;
    }
    
    .c090256dd h1 {
        font-size: 2rem;
    }
    
    .c090256dd p {
        font-size: 1rem;
    }
    
    .c38ad0305 {
        padding: 60px 0;
    }
    
    .cb84bdc91 {
        grid-template-columns: 1fr;
    }
    
    .c0154b963 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c88d66b34 {
        grid-template-columns: 1fr;
    }
    
    .c78cd6035 {
        grid-template-columns: 1fr;
    }
    
    .c3224e5d1 {
        grid-template-columns: 1fr 1fr;
    }
    
    .c3b8a7c80 img {
        height: 300px;
    }
    
    .cebee0bde {
        height: 300px;
    }
    
    .c31d64130 {
        grid-template-columns: 1fr;
    }
    
    .cafefe32c {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .cf63776cb {
        padding: 0 1rem;
    }
    
    .c0154b963 {
        grid-template-columns: 1fr;
    }
    
    .c3224e5d1 {
        grid-template-columns: 1fr;
    }
    
    .cd29bec25 {
        grid-template-columns: 1fr;
    }
}
