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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ce8042992 a:hover::after,
.ce8042992 a.c66d324f1::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd26e5758 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 */
.c722cbb96 {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cc0f00fcb:hover .caaa7a574 img {
    transform: scale(1.05);
}

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

.cc0f00fcb:hover .cdafc5828 {
    opacity: 1;
}

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

.c4b7d355e {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

.cc361c3ab.c08387aba {
    border-color: #e74c3c;
}

.cc361c3ab.c7cf1b704 {
    border-color: var(--primary);
}

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

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

.cc361c3ab.c08387aba .ce286a645 {
    background: #e74c3c;
    color: white;
}

.cc361c3ab.c7cf1b704 .ce286a645 {
    background: var(--primary);
    color: var(--bg-dark);
}

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

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

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

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

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

.cc361c3ab.c7cf1b704 .cae710c32 ul li::before {
    content: '✓';
    color: var(--primary);
}

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

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

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

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

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

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

.c80408078 {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.c9987fb8d .cf0044dbb {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.c30db37ab.show {
    display: block;
}

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

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

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

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

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

.caa15e042 ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ce8042992.open {
        right: 0;
    }

    .c18b13192 {
        display: flex;
    }

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

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

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

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

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

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

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

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

    .c8eed781c {
        padding: 3rem 0;
    }
}

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

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

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

    .cc9468ab5 {
        padding: 1.5rem 1rem;
    }

    .c8168749e {
        padding: 1.5rem;
    }
}

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

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

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

.ccc35482a.show {
    display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cd3d865a2:hover .ca1cbf13b img {
    transform: scale(1.05);
}

.c8228e288 {
    padding: 1.5rem;
}

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

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

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

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