@charset "utf-8";
/**
 * [G5/YC5] 시네마틱 다크 비디오 & 크리에이터 반응형 테마 스타일시트
 */

:root {
    --cine-bg: #0b0f19;
    --cine-card-bg: #131b2e;
    --cine-card-border: #1e2e4a;
    --cine-accent: #e50914;
    --cine-accent-hover: #b81d24;
    --cine-cyan: #38bdf8;
    --cine-gold: #fbbf24;
    --cine-text: #e2e8f0;
    --cine-muted: #94a3b8;
    --cine-darker: #070a12;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body.theme-cine-dark {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--cine-bg);
    color: var(--cine-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cine-cyan); }
ul, ol { list-style: none; }

.cine-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
#cine_hd {
    background: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.cine-hd-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.cine-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-badge {
    background: var(--cine-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}
.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.logo-text span {
    color: var(--cine-cyan);
    font-weight: 400;
    font-size: 16px;
}

.gnb-menu {
    display: flex;
    gap: 28px;
}
.gnb-menu a {
    font-size: 15px;
    font-weight: 600;
    color: var(--cine-muted);
    padding: 8px 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gnb-menu a.active, .gnb-menu a:hover {
    color: #fff;
}
.btn-inquiry-nav {
    color: var(--cine-cyan) !important;
}

.cine-hd-right {
    display: flex;
    gap: 10px;
}
.cine-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}
.cine-btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }
.cine-btn-primary {
    background: var(--cine-accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}
.cine-btn-primary:hover { background: var(--cine-accent-hover); color: #fff; }

/* Hero Section */
.cine-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
}
.cine-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.7) 0%, rgba(11, 15, 25, 0.95) 100%);
}
.cine-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 40px;
    padding-bottom: 60px;
}
.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 9, 20, 0.2);
    color: #ff525d;
    border: 1px solid rgba(229, 9, 20, 0.4);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.hero-title {
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-title .highlight {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-desc {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 35px;
    line-height: 1.7;
}
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-hero-play {
    background: var(--cine-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(229, 9, 20, 0.4);
    transition: transform 0.2s, background 0.2s;
}
.btn-hero-play:hover {
    transform: translateY(-2px);
    background: var(--cine-accent-hover);
    color: #fff;
}
.btn-hero-portfolio {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}
.btn-hero-portfolio:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Sections */
.cine-section {
    padding: 80px 0;
}
.cine-bg-darker {
    background-color: var(--cine-darker);
}
.section-head {
    margin-bottom: 45px;
}
.section-head.text-center {
    text-align: center;
}
.section-sub {
    color: var(--cine-cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}
.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.section-bar {
    width: 50px;
    height: 4px;
    background: var(--cine-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}
.section-head:not(.text-center) {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.btn-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--cine-cyan);
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.feature-card {
    background: var(--cine-card-bg);
    border: 1px solid var(--cine-card-border);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--cine-cyan);
}
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--cine-cyan);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 14px;
    color: var(--cine-muted);
    line-height: 1.6;
}

/* Works Grid */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
}
.work-card {
    background: var(--cine-card-bg);
    border: 1px solid var(--cine-card-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: var(--cine-accent);
}
.work-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    background: #000;
}
.work-thumb img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.work-card:hover .work-thumb img {
    transform: scale(1.06);
}
.work-time {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
}
.play-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px; height: 50px;
    background: rgba(229, 9, 20, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transition: all 0.25s ease;
}
.work-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.work-info {
    padding: 22px;
}
.work-cat {
    font-size: 12px;
    font-weight: 700;
    color: var(--cine-cyan);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}
.work-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.work-meta {
    font-size: 13px;
    color: var(--cine-muted);
}

/* Footer */
#cine_ft {
    background: #050811;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 60px;
}
.cine-ft-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.ft-logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}
.ft-logo span { color: var(--cine-cyan); }
.ft-desc {
    color: var(--cine-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 500px;
}
.ft-sns {
    display: flex;
    gap: 12px;
}
.ft-sns a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.2s;
}
.ft-sns a:hover {
    background: var(--cine-accent);
}
.ft-links {
    display: flex;
    gap: 50px;
}
.ft-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}
.ft-col ul li {
    margin-bottom: 10px;
}
.ft-col ul a {
    color: var(--cine-muted);
    font-size: 14px;
}
.ft-col ul a:hover { color: #fff; }
.ft-bottom {
    background: #020408;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #64748b;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* Lightbox Modal */
.cine-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-backdrop {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}
.modal-window {
    position: relative;
    width: 100%;
    max-width: 850px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}
.modal-close {
    position: absolute;
    top: -40px; right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .cine-hd-inner { height: auto; padding: 15px 0; flex-wrap: wrap; gap: 15px; }
    .gnb-menu { gap: 15px; flex-wrap: wrap; }
    .cine-ft-inner { grid-template-columns: 1fr; }
    .hero-title { font-size: 32px; }
}
