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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c26886aec a:hover::after,
.c26886aec a.c766e1bce::after {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c65c17f92 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 */
.c072abed8 {
    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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ce60b428e:hover .c0ee6abef img {
    transform: scale(1.05);
}

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

.ce60b428e:hover .c0824b42f {
    opacity: 1;
}

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

.ccc9b5af3 {
    padding: 1.5rem;
}

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

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

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

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

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

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

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

.ccc8cb4fc.cd78a19c3 {
    border-color: #e74c3c;
}

.ccc8cb4fc.cf448ee36 {
    border-color: var(--primary);
}

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

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

.ccc8cb4fc.cd78a19c3 .c37d10e66 {
    background: #e74c3c;
    color: white;
}

.ccc8cb4fc.cf448ee36 .c37d10e66 {
    background: var(--primary);
    color: var(--bg-dark);
}

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

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

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

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

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

.ccc8cb4fc.cf448ee36 .c5be8c5df ul li::before {
    content: '✓';
    color: var(--primary);
}

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

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

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

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

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

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

.c4a3f76a5 {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.ceca55409 .c475659d6 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.c0e42715a.show {
    display: block;
}

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

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

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

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

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

.ca60ff22b ul {
    list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .c26886aec.open {
        right: 0;
    }

    .cf9f40fe8 {
        display: flex;
    }

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

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

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

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

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

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

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

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

    .c44c18902 {
        padding: 3rem 0;
    }
}

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

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

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

    .c88bac3d2 {
        padding: 1.5rem 1rem;
    }

    .c35adac94 {
        padding: 1.5rem;
    }
}

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

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

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

.c2cd8e51b.show {
    display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c68b05caa:hover .cb1d34102 img {
    transform: scale(1.05);
}

.c02921cb1 {
    padding: 1.5rem;
}

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

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

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

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