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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c6769fe7d a:hover::after,
.c6769fe7d a.cbb03212e::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cc9b01e64 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 */
.cca5cec2c {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cc1393675:hover .cc61f9c83 img {
    transform: scale(1.05);
}

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

.cc1393675:hover .ce7639fde {
    opacity: 1;
}

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

.c93addc44 {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

.ce6e83e0f.c9cb24be3 {
    border-color: #e74c3c;
}

.ce6e83e0f.c24918a4a {
    border-color: var(--primary);
}

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

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

.ce6e83e0f.c9cb24be3 .c77482e37 {
    background: #e74c3c;
    color: white;
}

.ce6e83e0f.c24918a4a .c77482e37 {
    background: var(--primary);
    color: var(--bg-dark);
}

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

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

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

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

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

.ce6e83e0f.c24918a4a .ca88eb39e ul li::before {
    content: '✓';
    color: var(--primary);
}

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

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

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

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

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

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

.c83af52b2 {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.c515a11d0 .c332f9d61 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.c1d16e0eb.show {
    display: block;
}

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

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

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

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

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

.ccd6b021a ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .c6769fe7d.open {
        right: 0;
    }

    .c836fdede {
        display: flex;
    }

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

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

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

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

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

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

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

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

    .c83ac8b6e {
        padding: 3rem 0;
    }
}

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

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

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

    .c2e3a6f75 {
        padding: 1.5rem 1rem;
    }

    .c94faa1de {
        padding: 1.5rem;
    }
}

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

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

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

.cef8ce353.show {
    display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c765bcd33:hover .ca4451926 img {
    transform: scale(1.05);
}

.c2fa91f39 {
    padding: 1.5rem;
}

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

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

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

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