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

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

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

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

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

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

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

.c76f86b31::before,
.c76f86b31::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
    );
}

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

/* ============================================
   Navigation
   ============================================ */
.c01415254 {
    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);
}

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

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

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

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

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

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

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

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

.c9372bd2e a:hover::after,
.c9372bd2e a.ce7439c88::after {
    width: 100%;
}

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

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

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

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

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

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

.ca3849dac::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%
    );
}

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

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

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

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

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

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

/* Clapperboard Animation */
.c7b1bbaf3 {
    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;
}

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

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

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

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

.ca9860edf 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 */
.ce608e32f {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c6f143cf3 {
    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 - 首映礼
   ============================================ */
.cadc1e5be {
    background: #111;
}

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

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

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

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

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

.c633d31bd:hover .cfb05c64d img {
    transform: scale(1.05);
}

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

.c633d31bd:hover .ccd1eca15 {
    opacity: 1;
}

.ccd1eca15::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;
}

.c6a4608db {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

.c067b0f06.c5b665fb7 {
    border-color: #e74c3c;
}

.c067b0f06.ce36cbe44 {
    border-color: var(--primary);
}

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

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

.c067b0f06.c5b665fb7 .c6de8b4e2 {
    background: #e74c3c;
    color: white;
}

.c067b0f06.ce36cbe44 .c6de8b4e2 {
    background: var(--primary);
    color: var(--bg-dark);
}

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

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

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

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

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

.c067b0f06.ce36cbe44 .cf4656a80 ul li::before {
    content: '✓';
    color: var(--primary);
}

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

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

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

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

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

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

.cf0697085 {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

.c1004f926::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;
}

.c1004f926 .ce2cd21d5 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.c5b59af5b.show {
    display: block;
}

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

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

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

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

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

.cf685339a ul {
    list-style: none;
}

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

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

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

.c2a082152 {
    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
   ============================================ */
.c892e0fd9 {
    background: #111;
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.ce1945ee1.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) {
    .c9c5bac25 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .c9372bd2e {
        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);
    }

    .c9372bd2e.open {
        right: 0;
    }

    .c1d2708fb {
        display: flex;
    }

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

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

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

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

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

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

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

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

    .c76f86b31 {
        padding: 3rem 0;
    }
}

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

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

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

    .c10af06f4 {
        padding: 1.5rem 1rem;
    }

    .ccc1b07c2 {
        padding: 1.5rem;
    }
}

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

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

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

.cd360d333.show {
    display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cff06cc88:hover .c5fd36ad6 img {
    transform: scale(1.05);
}

.c580df734 {
    padding: 1.5rem;
}

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

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

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

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