/* ============================================
   {SITE_TITLE} - 全站样式表
   色彩体系：胶片复古金 / 导演监视器蓝 / 摄影棚深灰
   ============================================ */

/* CSS Variables */
:root {
    --primary: #D4A574;
    --secondary: #1E3A5F;
    --bg-dark: #1A1A1A;
    --card-bg: rgba(212, 165, 116, 0.1);
    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.7);
    --film-border: rgba(212, 165, 116, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-cn: 'Noto Serif SC', 'SimSun', serif;
    --font-sans: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: #E8C49A;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }

.c978db038 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.c978db038 h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

.c978db038::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 1rem auto 0;
}

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

/* Film Strip Border Effect */
.c9abaf90b {
    position: relative;
    padding: 5rem 0;
    border-top: 4px solid var(--film-border);
}

.c9abaf90b::before,
.c9abaf90b::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary) 0px,
        var(--primary) 12px,
        transparent 12px,
        transparent 20px
    );
}

.c9abaf90b::after {
    top: auto;
    bottom: 0;
}

/* ============================================
   Navigation
   ============================================ */
.cbfd6649e {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--film-border);
    transition: var(--transition);
}

.cbfd6649e.scrolled {
    padding: 0.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.cc1038348 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cc1038348 img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.cc1038348 span {
    font-family: var(--font-cn);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

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

.cb58b6325 a {
    color: var(--text-white);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.cb58b6325 a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.cb58b6325 a:hover::after,
.cb58b6325 a.cda13ed0e::after {
    width: 100%;
}

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

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

.c1967bc6e span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

/* ============================================
   Hero Section - 开机！
   ============================================ */
.ca3bbe12d {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ca5af665f {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ca5af665f img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ca5af665f::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
}

.c74b3d799 {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.c74b3d799 video,
.c74b3d799 iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c1aa36f8c {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out 0.5s both;
}

.c1aa36f8c h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.c1aa36f8c h1 span {
    color: var(--primary);
    display: block;
    font-size: 0.6em;
    margin-top: 0.5rem;
    font-style: italic;
}

.c1aa36f8c p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Clapperboard Animation */
.c74cdff01 {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: clapFadeOut 0.5s ease-out 2.5s forwards;
}

.c17ef8388 {
    width: 300px;
    height: 200px;
    position: relative;
}

.c2ddfd3d1 {
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(
        -45deg,
        var(--primary),
        var(--primary) 20px,
        var(--bg-dark) 20px,
        var(--bg-dark) 40px
    );
    border-radius: 5px 5px 0 0;
    transform-origin: bottom left;
    animation: clapDown 0.3s ease-in 1.5s forwards;
}

.c07abddf8 {
    width: 100%;
    height: 160px;
    background: var(--bg-dark);
    border: 3px solid var(--primary);
    border-radius: 0 0 5px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.c07abddf8 span {
    color: var(--primary);
    font-family: var(--font-cn);
    font-size: 1.5rem;
    font-weight: 700;
}

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

@keyframes clapDown {
    from { transform: rotate(-30deg); }
    to { transform: rotate(0deg); }
}

@keyframes clapFadeOut {
    to { opacity: 0; pointer-events: none; }
}

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

/* Buttons */
.cd17dc417 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.ce3412379 {
    background: var(--primary);
    color: var(--bg-dark);
}

.ce3412379:hover {
    background: #E8C49A;
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

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

.cdfcbae94:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.c30a2509b {
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-muted);
}

.c30a2509b:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   Stats Section - 票房公告
   ============================================ */
.c146e1fb8 {
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
    position: relative;
    overflow: hidden;
}

.c146e1fb8::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/red-carpet.webp') center/cover no-repeat;
    opacity: 0.1;
}

.c2c8db9ae {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.cc17e6900 {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--film-border);
    border-radius: 8px;
    transition: var(--transition);
}

.cc17e6900:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.15);
}

.c198975f1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    font-family: 'Georgia', serif;
    margin-bottom: 0.5rem;
}

.c06d3a648 {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* LED Ticker */
.c638d9480 {
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: #000;
    border: 2px solid var(--primary);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.c817be61c {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    gap: 3rem;
}

.c817be61c span {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   Services Section - 片场菜单
   ============================================ */
.c5791f571 {
    background: var(--bg-dark);
}

.cd8ea733e {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.c93404f33 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 2/3;
}

.c93404f33:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

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

.c45aba0a4 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.c45aba0a4 h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.c45aba0a4 p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.ce609182d {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--secondary);
    color: var(--text-white);
    font-size: 0.75rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

/* ============================================
   Works Section - 首映礼
   ============================================ */
.cc173074f {
    background: #111;
}

.cf653a627 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

.c63ecd991:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.1);
}

.cf878aff5 {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.c63ecd991:hover .cf878aff5 img {
    transform: scale(1.05);
}

.cc99b55d9 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 165, 116, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.c63ecd991:hover .cc99b55d9 {
    opacity: 1;
}

.cc99b55d9::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 18px solid var(--bg-dark);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.c3676578d {
    padding: 1.5rem;
}

.c3676578d h3 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.c3676578d p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.ca497a070 {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ca497a070 span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ============================================
   Comparison Section - 痛点对比
   ============================================ */
.c98018dd0 {
    background: var(--bg-dark);
}

.c4867e98f {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.cef8ba277 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid;
}

.cef8ba277.cac07add5 {
    border-color: #e74c3c;
}

.cef8ba277.caa4d0ce4 {
    border-color: var(--primary);
}

.cef8ba277 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.c750a8874 {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
}

.cef8ba277.cac07add5 .c750a8874 {
    background: #e74c3c;
    color: white;
}

.cef8ba277.caa4d0ce4 .c750a8874 {
    background: var(--primary);
    color: var(--bg-dark);
}

.c39697b30 {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
}

.c39697b30 h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.c39697b30 ul {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.c39697b30 ul li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.c39697b30 ul li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #e74c3c;
}

.cef8ba277.caa4d0ce4 .c39697b30 ul li::before {
    content: '✓';
    color: var(--primary);
}

/* ============================================
   CTA Section - 购票入场
   ============================================ */
.c16a2ca57 {
    background: linear-gradient(135deg, var(--secondary) 0%, #0D1B2A 100%);
    position: relative;
}

.c16a2ca57::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
}

.cfde188b1 {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cfde188b1 h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.cfde188b1 p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Ticket Form */
.ccd8d8ab4 {
    background: var(--card-bg);
    border: 1px solid var(--film-border);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: left;
}

.c35c3273e {
    margin-bottom: 1.5rem;
}

.c35c3273e label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
}

.c35c3273e input,
.c35c3273e select,
.c35c3273e textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--film-border);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: var(--transition);
}

.c35c3273e input:focus,
.c35c3273e select:focus,
.c35c3273e textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.c35c3273e select option {
    background: var(--bg-dark);
    color: var(--text-white);
}

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

/* ============================================
   Storyboard Component
   ============================================ */
.c4acf2ad2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.cba6b0af2:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.cba6b0af2::before {
    content: attr(data-step);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.cba6b0af2 .ce00d1bd8 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

/* ============================================
   Style Selector Component
   ============================================ */
.c32004ec9 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.c764ec6b7 {
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--film-border);
    border-radius: 4px;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.c764ec6b7:hover,
.c764ec6b7.cda13ed0e {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

/* ============================================
   Quote Calculator
   ============================================ */
.cfde3a293 {
    background: var(--card-bg);
    border: 1px solid var(--film-border);
    border-radius: 8px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.c847f8085 {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid var(--primary);
    border-radius: 4px;
    text-align: center;
    display: none;
}

.c847f8085.show {
    display: block;
}

.c7900296b {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* ============================================
   Footer
   ============================================ */
.cd0928359 {
    background: #0D0D0D;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--film-border);
}

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

.c72c87963 p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.8;
}

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

.c99b923f4 ul {
    list-style: none;
}

.c99b923f4 ul li {
    margin-bottom: 0.5rem;
}

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

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

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

/* ============================================
   Behind the Scenes Theater
   ============================================ */
.ccdc5320c {
    background: #111;
    position: relative;
}

.caea007f0 {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border: 2px solid var(--film-border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.caea007f0 video,
.caea007f0 iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cd1bb1208 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

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

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

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

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

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

/* Flash Effect */
.cc031542f {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s;
}

.cc031542f.flash {
    opacity: 0.8;
}

/* ============================================
   Video Player
   ============================================ */
.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper video,
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Responsive Design (Mobile First)
   ============================================ */
@media (max-width: 1024px) {
    .c2c8db9ae {
        grid-template-columns: repeat(2, 1fr);
    }

    .cb43e1b05 {
        grid-template-columns: 1fr 1fr;
    }

    .c4acf2ad2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cb58b6325 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        border-left: 1px solid var(--film-border);
    }

    .cb58b6325.open {
        right: 0;
    }

    .c1967bc6e {
        display: flex;
    }

    .c1aa36f8c h1 {
        font-size: 2rem;
    }

    .c2c8db9ae {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cd8ea733e {
        grid-template-columns: repeat(2, 1fr);
    }

    .cf653a627 {
        grid-template-columns: 1fr;
    }

    .c4867e98f {
        grid-template-columns: 1fr;
    }

    .c97382ead {
        grid-template-columns: 1fr;
    }

    .cb43e1b05 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .c4acf2ad2 {
        grid-template-columns: 1fr 1fr;
    }

    .c9abaf90b {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .cf6c78dc6 {
        padding: 0 1rem;
    }

    .cd8ea733e {
        grid-template-columns: 1fr;
    }

    .c4acf2ad2 {
        grid-template-columns: 1fr;
    }

    .cc17e6900 {
        padding: 1.5rem 1rem;
    }

    .ccd8d8ab4 {
        padding: 1.5rem;
    }
}

/* ============================================
   Lazy Loading
   ============================================ */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ============================================
   Success Modal
   ============================================ */
.c979df65e {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.c979df65e.show {
    display: flex;
}

.c40e639c0 {
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.c40e639c0 .c3b9d2a01 {
    width: 80px;
    height: 80px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--primary);
}

.c40e639c0 h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

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

/* ============================================
   Page Header (Sub pages)
   ============================================ */
.c2ace6109 {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #111 100%);
    text-align: center;
    border-bottom: 1px solid var(--film-border);
}

.c2ace6109 h1 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.c2ace6109 p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.cae45940c {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cae45940c a {
    color: var(--text-muted);
}

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

/* ============================================
   Blog Cards
   ============================================ */
.cb2bd1da9 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

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

.cafc1ba56:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.cd1a9efee {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.cafc1ba56:hover .cd1a9efee img {
    transform: scale(1.05);
}

.ca978af19 {
    padding: 1.5rem;
}

.ca978af19 .c386073f5 {
    color: var(--primary);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.ca978af19 h3 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.ca978af19 p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Utility Classes */
.c65c8a893 { text-align: center; }
.mt-2 { margin-top: 2rem; }
.ca7225078 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
