
        @font-face {
            font-family: 'GmarketSans';
            src: url('fonts/GmarketSansLight.otf') format('opentype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'GmarketSans';
            src: url('fonts/GmarketSansMedium.otf') format('opentype');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'GmarketSans';
            src: url('fonts/GmarketSansBold.otf') format('opentype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        body {
            font-family: 'GmarketSans', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #ffffff;
            color: #333333;
            font-weight: 500;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 60px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 16px 0 12px;
            z-index: 100;
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(0px);
            transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
        }
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 10px 0 8px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }
        body {
            overflow-x: hidden;
        }
        html {
            scroll-behavior: smooth;
        }
        section[id] {
            scroll-margin-top: 80px;
        }
        nav {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .nav-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .nav-spacer {
            width: 80px;
            flex-shrink: 0;
        }
        .logo {
            max-width: 180px;
            height: auto;
            transition: max-width 0.3s ease;
        }
        header.scrolled .logo {
            max-width: 140px;
        }
        .nav-links {
            display: flex;
            gap: 36px;
        }
        .nav-links a {
            color: #333333;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.02em;
            position: relative;
            padding: 6px 2px;
            transition: color 0.2s ease;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: #e8720c;
            transition: width 0.3s ease, left 0.3s ease;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: #e8720c;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
            left: 0;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .menu-toggle {
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            display: none;
        }
        @media (max-width: 767px) {
            nav {
                flex-direction: row;
                justify-content: space-between;
            }
            .nav-top {
                width: auto;
            }
            .nav-spacer {
                display: none;
            }
            .logo {
                max-width: 130px;
            }
            header.scrolled .logo {
                max-width: 110px;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 0;
                background: rgba(255, 255, 255, 0.97);
                backdrop-filter: blur(10px);
                padding: 10px 0;
                border-top: 1px solid rgba(0, 0, 0, 0.1);
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                padding: 14px 20px;
                text-align: center;
            }
            .nav-links a::after {
                display: none;
            }
            .menu-toggle {
                display: block;
            }
        }
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            max-height: 900px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0;
            color: #fff;
        }
        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                rgba(0,0,0,0.55) 0%,
                rgba(0,0,0,0.45) 50%,
                rgba(0,0,0,0.75) 100%
            );
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 0 20px;
        }
        .hero-logo {
            max-width: 260px;
            width: 60%;
            height: auto;
            margin: 0 auto 40px;
            display: block;
            filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
        }
        .hero-download-label {
            font-size: 14px;
            font-weight: 500;
            color: #fff;
            margin-top: 40px;
            margin-bottom: 16px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.85;
        }
        .hero-cta-group {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .hero-cta-primary,
        .hero-cta-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 140px;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .hero-cta-primary {
            background-color: #e8720c;
            color: #000;
        }
        .hero-cta-primary:hover {
            background-color: #d99a16;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(240, 180, 41, 0.35);
        }
        .hero-cta-secondary {
            background-color: #fff;
            color: #000;
        }
        .hero-cta-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
        }
        h1 {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.6);
        }
        @media (max-width: 767px) {
            .hero {
                height: 90vh;
                min-height: 500px;
            }
            .hero-logo {
                max-width: 200px;
                margin-bottom: 30px;
            }
            h1 {
                font-size: 28px;
            }
        }
        h1 span {
            color: #e8720c;
        }
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        .cta-button {
            display: inline-block;
            background-color: #e8720c;
            color: #000;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
        }
        .cta-button:hover {
            background-color: #d99a16;
        }
        .manifesto {
            padding: 100px 0 80px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }
        .manifesto-headline {
            font-size: 52px;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }
        .manifesto-subhead {
            font-size: 22px;
            font-weight: 300;
            color: #aaa;
            margin-bottom: 80px;
            letter-spacing: 0.02em;
        }
        .manifesto-lead {
            font-size: 24px;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 28px;
            letter-spacing: -0.01em;
        }
        .manifesto-lead strong {
            color: #e8720c;
            font-weight: 700;
        }
        .manifesto-body {
            font-size: 15px;
            font-weight: 300;
            color: #666;
            line-height: 1.9;
            max-width: 720px;
            margin: 0 auto 36px;
            letter-spacing: 0.01em;
        }
        .manifesto-highlight {
            font-size: 22px;
            color: #e8720c;
            line-height: 1.6;
            font-weight: 700;
            margin-bottom: 100px;
            letter-spacing: -0.01em;
        }
        .manifesto-label {
            font-size: 30px;
            font-weight: 500;
            margin-bottom: 20px;
            letter-spacing: -0.01em;
        }
        .manifesto-keyword {
            font-size: 140px;
            color: #e8720c;
            font-weight: 700;
            letter-spacing: -0.04em;
            line-height: 1;
        }
        @media (max-width: 767px) {
            .manifesto-headline {
                font-size: 34px;
            }
            .manifesto-subhead {
                font-size: 18px;
                margin-bottom: 50px;
            }
            .manifesto-lead {
                font-size: 19px;
            }
            .manifesto-body {
                font-size: 14px;
            }
            .manifesto-highlight {
                font-size: 18px;
                margin-bottom: 60px;
            }
            .manifesto-label {
                font-size: 22px;
            }
            .manifesto-keyword {
                font-size: 84px;
            }
        }
        .games {
            background-color: #111;
            padding: 80px 0;
        }

        /* Fade-in 애니메이션 */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .fade-in-delay-1 { transition-delay: 0.1s; }
        .fade-in-delay-2 { transition-delay: 0.25s; }
        .fade-in-delay-3 { transition-delay: 0.4s; }
        .fade-in-delay-4 { transition-delay: 0.55s; }
        .fade-in-delay-5 { transition-delay: 0.7s; }
        .fade-in-delay-6 { transition-delay: 0.85s; }
        .fade-in-delay-7 { transition-delay: 1s; }

        /* 모션 최소화를 선호하는 사용자 배려 */
        @media (prefers-reduced-motion: reduce) {
            .fade-in {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }
        h2 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-align: center;
            margin-bottom: 40px;
            color: #333333;
        }
        .games {
            padding: 100px 0;
            background-color: #f5f5f5;
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }
        @media (min-width: 768px) {
            .game-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .game-card {
            background-color: #ffffff;
            border-radius: 14px;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 16px;
            padding: 14px;
            border: 1px solid rgba(0,0,0,0.1);
        }
        .game-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 28px rgba(0,0,0,0.35);
            border-color: rgba(0,0,0,0.2);
        }
        .game-image {
            width: 88px;
            height: 88px;
            flex-shrink: 0;
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .game-info {
            flex: 1;
            background-color: transparent;
            padding: 4px 0;
            border-radius: 0;
            min-width: 0;
        }
        .game-title {
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 6px;
            color: #333333;
            letter-spacing: -0.01em;
        }
        .game-tags {
            display: none;
        }
        .game-description {
            color: #555;
            font-weight: 300;
            margin: 0;
            font-size: 12px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .coming-soon-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #f59e0b;
            color: #000;
            padding: 3px 9px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 11px;
            z-index: 2;
            letter-spacing: 0.02em;
        }

        /* 게임 상세 모달 */
        .game-modal {
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(0px);
            -webkit-backdrop-filter: blur(0px);
            z-index: 1000;
            display: none;
            align-items: flex-start;
            justify-content: center;
            padding: 40px 20px;
            overflow-y: auto;
            transition: background 0.35s ease, backdrop-filter 0.35s ease;
        }
        .game-modal.open {
            display: flex;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .game-modal-content {
            background-color: #ffffff;
            border-radius: 16px;
            max-width: 860px;
            width: 100%;
            overflow: hidden;
            position: relative;
            transform-origin: top left;
            will-change: transform, opacity;
            font-family: 'GmarketSans', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
        }
        .game-modal-slot {
            display: contents;
        }
        .game-modal-content.animating-in {
            transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                        opacity 0.25s ease-out;
        }
        .game-modal-content.animating-out {
            transition: transform 0.35s cubic-bezier(0.55, 0, 0.55, 1),
                        opacity 0.25s ease-in;
        }
        .game-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 22px;
            font-family: inherit;
            cursor: pointer;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: background 0.2s ease, opacity 0.25s ease 0.2s;
        }
        .game-modal.open .game-modal-close {
            opacity: 1;
        }
        .game-modal-close:hover {
            background: rgba(0, 0, 0, 0.9);
        }
        .game-modal-image {
            width: 100%;
            aspect-ratio: 16 / 9;
            background-color: #1a1a1a;
            overflow: hidden;
            position: relative;
        }
        .game-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .game-modal-body {
            padding: 36px 40px 44px;
            opacity: 0;
            transition: opacity 0.3s ease 0.15s;
        }
        .game-modal.open .game-modal-body {
            opacity: 1;
        }
        .game-modal-title {
            font-size: 32px;
            font-weight: 700;
            color: #333333;
            margin: 0 0 12px;
            letter-spacing: -0.01em;
        }
        .game-modal-tags {
            color: #e8720c;
            font-size: 15px;
            font-weight: 500;
            margin: 0 0 24px;
        }
        .game-modal-description {
            color: #444;
            font-size: 16px;
            font-weight: 300;
            line-height: 1.75;
            margin: 0 0 32px;
        }
        .game-modal-stores {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* Ocean 테마 — Lucky Pirates 전용 (하늘/바다 색감) */
        .game-modal-content.theme-ocean {
            background-color: #DEEDF4;
            background-image: linear-gradient(180deg, #ACD9F6 0%, #87D5FB 45%, #C7E7F7 100%);
        }
        .game-modal-content.theme-ocean .game-modal-body {
            background-color: transparent;
        }
        .game-modal-content.theme-ocean .game-modal-title {
            color: #0A1F3A;
        }
        .game-modal-content.theme-ocean .game-modal-tags {
            color: #1E4C7A;
        }
        .game-modal-content.theme-ocean .game-modal-description {
            color: #14304D;
        }
        .game-modal-content.theme-ocean .store-link {
            background-color: #0A1F3A;
            color: #fff;
        }
        .game-modal-content.theme-ocean .store-link:hover {
            background-color: #1E4C7A;
        }
        .game-modal-content.theme-ocean .store-link.disabled {
            background-color: rgba(10, 31, 58, 0.25);
            color: #14304D;
        }
        .game-modal-content.theme-ocean .game-modal-close {
            background: rgba(10, 31, 58, 0.65);
        }
        .game-modal-content.theme-ocean .game-modal-close:hover {
            background: rgba(10, 31, 58, 0.9);
        }
        .game-modal-content.theme-ocean .game-modal-extra {
            border-top: 1px solid rgba(10, 31, 58, 0.2);
        }
        .game-modal-content.theme-ocean .game-extra-video {
            background-color: #5A8DB7;
            box-shadow: 0 8px 24px rgba(10, 31, 58, 0.22);
        }
        .game-modal-content.theme-ocean .game-extra-copy-lead {
            color: #0A1F3A;
        }
        .game-modal-content.theme-ocean .game-extra-copy-lead strong {
            color: #0369A1;
        }
        .game-modal-content.theme-ocean .game-extra-copy-highlight {
            color: #1E4C7A;
        }
        .game-modal-content.theme-ocean .game-extra-copy-highlight strong {
            color: #B45309;
        }

        /* 모달 확장 섹션 (게임별 추가 콘텐츠) */
        .game-modal-extra {
            margin-top: 0;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }
        .game-modal-extra:empty {
            display: none;
        }
        .game-extra-section {
            padding: 60px 40px;
            position: relative;
        }
        .game-extra-section > * + * {
            margin-top: 48px;
        }
        .game-extra-video {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 12px;
            overflow: hidden;
            background-color: #000;
            margin-bottom: 0;
        }
        .game-extra-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .game-extra-figure {
            margin: 0;
        }
        .game-extra-figure .game-extra-video {
            margin-bottom: 0;
        }
        .game-extra-caption {
            margin: 14px 0 0;
            font-size: 15px;
            line-height: 1.65;
            color: rgba(0, 0, 0, 0.5);
            text-align: center;
            text-wrap: pretty;
        }
        .game-extra-caption strong {
            color: #e8720c;
            font-weight: 700;
        }
        .game-modal-content.theme-ocean .game-extra-caption {
            color: rgba(10, 31, 58, 0.7);
        }
        .game-modal-content.theme-ocean .game-extra-caption strong {
            color: #0369A1;
        }
        .game-extra-video-pair {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        @media (max-width: 640px) {
            .game-extra-video-pair {
                gap: 10px;
            }
        }
        .game-extra-copy {
            text-align: center;
            max-width: 640px;
            margin: 0 auto;
            padding: 20px 0;
        }
        .game-extra-copy-lead {
            font-family: 'GmarketSans', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
            font-size: 26px;
            font-weight: 700;
            line-height: 1.6;
            color: #333333;
            margin: 0 0 18px;
            letter-spacing: -0.01em;
        }
        .game-extra-copy-lead:last-child {
            margin-bottom: 0;
        }
        .game-extra-copy-lead strong {
            font-weight: 700;
            color: #e8720c;
        }
        .game-extra-copy-highlight {
            font-family: 'GmarketSans', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.7;
            margin: 0;
            color: #e8720c;
            letter-spacing: 0.01em;
        }
        .game-extra-copy-highlight strong {
            font-weight: 700;
            color: #fbbf24;
        }
        @media (max-width: 767px) {
            .game-extra-section {
                padding: 40px 24px;
            }
            .game-extra-copy-lead {
                font-size: 20px;
            }
            .game-extra-copy-highlight {
                font-size: 16px;
            }
        }
        .store-link {
            display: inline-block;
            background-color: #e8720c;
            color: #000;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 14px;
            font-family: inherit;
            transition: background-color 0.2s ease;
        }
        .store-link:hover {
            background-color: #d99a16;
        }
        .store-link.disabled {
            background-color: #e0e0e0;
            color: #999;
            cursor: not-allowed;
            pointer-events: none;
        }
        @media (max-width: 767px) {
            .game-modal {
                padding: 20px 12px;
            }
            .game-modal-body {
                padding: 28px 24px 32px;
            }
            .game-modal-title {
                font-size: 26px;
            }
            .game-modal-description {
                font-size: 15px;
            }
        }
        .about {
            padding: 80px 0;
            text-align: center;
        }
        .about p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 18px;
            line-height: 1.6;
        }
        /* Contact 섹션 */
        .contact-section {
            padding: 100px 0;
            background-color: #ffffff;
        }
        .contact-section h2 {
            text-align: center;
        }
        .contact-intro {
            max-width: 700px;
            margin: 0 auto 60px;
            text-align: center;
            font-size: 17px;
            line-height: 1.8;
            color: #666;
            font-weight: 300;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .contact-info h3 {
            font-size: 24px;
            font-weight: 700;
            color: #333333;
            margin: 0 0 16px;
            letter-spacing: -0.01em;
        }
        .contact-info p {
            font-size: 15px;
            font-weight: 300;
            color: #666;
            line-height: 1.75;
            margin: 0 0 32px;
        }
        .contact-info-block {
            margin-bottom: 24px;
        }
        .contact-info-label {
            font-size: 14px;
            font-weight: 700;
            color: #333333;
            margin: 0 0 6px;
        }
        .contact-info-value {
            font-size: 16px;
            font-weight: 700;
            color: #f0b429 !important;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .contact-info-value:hover {
            color: #d99a16 !important;
            text-decoration: underline;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .contact-field label {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 8px;
        }
        .contact-field input,
        .contact-field textarea {
            width: 100%;
            box-sizing: border-box;
            background-color: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            padding: 14px 16px;
            color: #333333;
            font-family: inherit;
            font-size: 15px;
            font-weight: 300;
            transition: border-color 0.2s ease, background-color 0.2s ease;
        }
        .contact-field input:focus,
        .contact-field textarea:focus {
            outline: none;
            border-color: #e8720c;
            background-color: #fffef5;
        }
        .contact-field textarea {
            min-height: 140px;
            resize: vertical;
            line-height: 1.6;
        }
        .contact-submit {
            background-color: #f0b429 !important;
            color: #000;
            border: none;
            border-radius: 8px;
            padding: 16px 24px;
            font-family: inherit;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
            margin-top: 8px;
        }
        .contact-submit:hover:not(:disabled) {
            background-color: #d99a16;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(240, 180, 41, 0.35);
        }
        .contact-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }
        .contact-status {
            margin-top: 16px;
            padding: 14px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            display: none;
        }
        .contact-status.success {
            display: block;
            background-color: rgba(240, 180, 41, 0.1);
            border: 1px solid rgba(240, 180, 41, 0.3);
            color: #e8720c;
        }
        .contact-status.error {
            display: block;
            background-color: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }
        /* honeypot (봇 방지 — 사용자에게 안 보임) */
        .contact-honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
        }
        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr 1.3fr;
                gap: 80px;
            }
        }
        @media (max-width: 767px) {
            .contact-section {
                padding: 70px 0;
            }
            .contact-intro {
                font-size: 15px;
                margin-bottom: 40px;
            }
        }
        /* Community 섹션 */
        .community-section {
            padding: 100px 0;
            background-color: #000;
            text-align: center;
        }
        .community-intro {
            max-width: 700px;
            margin: 0 auto 60px;
            font-size: 17px;
            line-height: 1.8;
            color: #bbb;
            font-weight: 300;
        }
        .community-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .community-card {
            display: block;
            width: 220px;
            text-decoration: none;
            color: inherit;
            position: relative;
        }
        .community-card-image {
            position: relative;
            width: 220px;
            height: 220px;
            border-radius: 28px;
            overflow: hidden;
            background-color: #151515;
            border: 2px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
            transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                        border-color 0.35s ease,
                        box-shadow 0.35s ease;
        }
        .community-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .community-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                rgba(0,0,0,0) 40%,
                rgba(0,0,0,0.85) 100%);
            opacity: 0;
            transition: opacity 0.35s ease;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 24px;
        }
        .community-card-overlay span {
            color: #e8720c;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transform: translateY(8px);
            transition: transform 0.35s ease;
        }
        .community-card-shine {
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                120deg,
                transparent 0%,
                rgba(255, 255, 255, 0.15) 50%,
                transparent 100%);
            transform: skewX(-20deg);
            pointer-events: none;
        }
        .community-card:hover .community-card-image {
            transform: translateY(-8px) scale(1.03);
            border-color: rgba(240, 180, 41, 0.6);
            box-shadow: 0 20px 40px rgba(240, 180, 41, 0.25),
                        0 0 0 1px rgba(240, 180, 41, 0.2);
        }
        .community-card:hover .community-card-image img {
            transform: scale(1.08);
        }
        .community-card:hover .community-card-overlay {
            opacity: 1;
        }
        .community-card:hover .community-card-overlay span {
            transform: translateY(0);
        }
        .community-card:hover .community-card-shine {
            animation: shine 0.8s ease;
        }
        @keyframes shine {
            0% { left: -75%; }
            100% { left: 125%; }
        }
        .community-card-label {
            margin-top: 18px;
            text-align: center;
        }
        .community-card-name {
            font-size: 17px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 4px;
        }
        .community-card-platform {
            font-size: 12px;
            color: #888;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin: 0;
        }
        @media (max-width: 767px) {
            .community-section {
                padding: 70px 0;
            }
            .community-intro {
                font-size: 15px;
                margin-bottom: 40px;
            }
            .community-card,
            .community-card-image {
                width: 180px;
            }
            .community-card-image {
                height: 180px;
                border-radius: 24px;
            }
        }
        /* Team 섹션 */
        .team-section {
            padding: 100px 0;
            background-color: #fafafa;
        }
        .team-intro {
            max-width: 800px;
            margin: 0 auto 60px;
            text-align: center;
            font-size: 17px;
            line-height: 1.8;
            color: #666;
            font-weight: 300;
        }
        .team-intro strong {
            color: #e8720c;
            font-weight: 700;
        }
        .team-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .team-card {
            background-color: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            padding: 40px 32px;
            text-align: left;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .team-card:hover {
            transform: translateY(-6px);
            border-color: rgba(240, 180, 41, 0.4);
            box-shadow: 0 12px 32px rgba(240, 180, 41, 0.08);
        }
        .team-card-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(240, 180, 41, 0.15), rgba(240, 180, 41, 0.05));
            border: 1px solid rgba(240, 180, 41, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .team-card-icon svg {
            width: 26px;
            height: 26px;
            stroke: #e8720c;
        }
        .team-card-title {
            font-size: 22px;
            font-weight: 700;
            color: #333333;
            margin: 0 0 10px;
            letter-spacing: -0.01em;
        }
        .team-card-subtitle {
            font-size: 12px;
            font-weight: 500;
            color: #e8720c;
            margin-bottom: 18px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        .team-card-desc {
            font-size: 15px;
            font-weight: 300;
            color: #666;
            line-height: 1.75;
            margin: 0;
        }
        @media (min-width: 768px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 28px;
            }
        }
        @media (max-width: 767px) {
            .team-section {
                padding: 70px 0;
            }
            .team-intro {
                font-size: 15px;
                margin-bottom: 40px;
            }
            .team-card {
                padding: 32px 24px;
            }
        }
        footer {
            text-align: center;
            padding: 20px 0;
            background-color: #f5f5f5;
        }
        .footer-links {
            margin-top: 20px;
        }
        .footer-links a {
            color: #e8720c;
            text-decoration: none;
            margin: 0 10px;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        .lang-selector {
            position: relative;
        }
        .lang-selector select {
            background-color: #f5f5f5;
            color: #333333;
            border: 1px solid #e8720c;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            outline: none;
            appearance: none;
            -webkit-appearance: none;
            padding-right: 28px;
        }
        .lang-selector::after {
            content: '▼';
            font-size: 10px;
            color: #e8720c;
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }
        @media (min-width: 768px) {
            h1 {
                font-size: 56px;
            }
        }

        /* ============================================================
         *  Main Quest 추가 스타일
         * ============================================================ */

        /* 텍스트 로고 */
        .brand-logo {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            line-height: 0;
        }
        .brand-logo-img {
            height: 38px;
            width: auto;
            display: block;
        }
        @media (max-width: 767px) {
            .brand-logo-img { height: 30px; }
        }
        .brand-logo-mark { color: #fff; }
        .brand-logo-quest { color: #e8720c; }

        /* 히어로 — 영상이 없을 때를 위한 분위기 있는 배경 */
        .hero {
            background:
                radial-gradient(120% 90% at 50% 0%, #2a2440 0%, #161425 45%, #0a0a0f 100%);
        }
        /* src 가 지정되지 않은 히어로 영상은 숨김 (CSS 배경만 표시) */
        .hero-video:not([src]) {
            display: none;
        }
        .hero h1 {
            font-size: clamp(52px, 9vw, 112px);
            margin-bottom: 24px;
        }
        .hero-eyebrow {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: #e8720c;
            margin: 0 0 18px;
        }
        .hero-lead {
            max-width: 640px;
            margin: 0 auto 36px;
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255,255,255,0.82);
            text-wrap: pretty;
        }
        @media (max-width: 767px) {
            .hero-lead { font-size: 16px; }
            .hero-eyebrow { font-size: 12px; letter-spacing: 0.26em; }
        }

        /* Work / Games 인트로 문단 */
        .games-intro {
            max-width: 720px;
            margin: -10px auto 56px;
            text-align: center;
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255,255,255,0.7);
            text-wrap: pretty;
        }
        @media (max-width: 767px) {
            .games-intro { font-size: 15px; margin-bottom: 40px; }
        }

        /* 게임 썸네일 플레이스홀더 (이미지 미지정 시) */
        .game-image-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .game-image-placeholder::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
            background-size: 14px 14px;
            opacity: 0.5;
        }
        .game-image-monogram {
            position: relative;
            font-size: 38px;
            font-weight: 800;
            color: rgba(255,255,255,0.92);
            text-shadow: 0 4px 18px rgba(0,0,0,0.45);
            z-index: 1;
        }
    

/* ============================================================
 *  Culture 섹션
 * ============================================================ */
.culture-section {
    padding: 100px 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}
.culture-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}
.culture-list {
    max-width: 900px;
    margin: 0 auto;
}
.culture-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 48px;
    padding: 44px 0;
    border-bottom: 1px solid rgba(0,0,0,0.09);
    align-items: start;
}
.culture-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.09);
}
.culture-keyword {
    font-size: 28px;
    font-weight: 700;
    color: var(--culture-color, #e8720c);
    letter-spacing: -0.02em;
    padding-top: 2px;
    line-height: 1.2;
}
.culture-desc {
    font-size: 16px;
    font-weight: 300;
    color: #555;
    line-height: 1.85;
    margin: 0;
    padding-top: 4px;
}
@media (max-width: 767px) {
    .culture-section { padding: 70px 0; }
    .culture-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 32px 0;
    }
    .culture-keyword { font-size: 22px; }
    .culture-desc { font-size: 15px; }
    .culture-intro { font-size: 15px; margin-bottom: 40px; }
}

/* ============================================================
 *  Benefit 섹션
 * ============================================================ */
.benefit-section {
    padding: 100px 0;
    background-color: #f8f8f8;
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.benefit-item {
    background-color: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 12px;
    padding: 28px 22px 30px;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item:hover {
    border-color: rgba(240, 180, 41, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(240, 180, 41, 0.07);
}
.benefit-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 14px;
    line-height: 1;
}
.benefit-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    font-family: 'GmarketSans', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
}
.benefit-item p {
    font-size: 13px;
    font-weight: 300;
    color: #777;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 767px) {
    .benefit-section { padding: 70px 0; }
    .benefit-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .benefit-item { padding: 20px 16px 24px; }
}
@media (max-width: 420px) {
    .benefit-grid { grid-template-columns: 1fr; }
}


/* ============================================================
 *  Hero 섹션 — 라이트 레이아웃 재설계
 * ============================================================ */
.hero {
    background: #ffffff !important;
    color: #111111 !important;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    padding: 130px 60px 0 !important;
    display: block !important;
    text-align: left !important;
}
.hero-overlay {
    display: none !important;
}
.hero-content {
    display: none !important;
}
.hero-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 36px;
    max-width: 900px;
}
.hero-title-col {}
.hero-desc-col {
    padding-top: 4px;
}
.hero .hero-eyebrow {
    color: #111 !important;
    font-size: 16px !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    font-weight: 700 !important;
    margin: 0 0 4px !important;
}
.hero h1 {
    font-size: clamp(26px, 4vw, 48px) !important;
    color: #111 !important;
    text-shadow: none !important;
    margin-bottom: 0 !important;
    line-height: 1.18 !important;
}
.hero .hero-lead {
    font-size: 12px !important;
    color: #555 !important;
    line-height: 1.9 !important;
    margin: 0 !important;
    max-width: unset !important;
}
.hero-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #e5e5e5;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
}
.hero-media .hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: unset !important;
    min-height: unset !important;
    transform: none !important;
    object-fit: cover !important;
    display: block !important;
}
/* 비디오 없을 때 플레이스홀더 배경 유지 */
.hero-video:not([src]),
.hero-video[src=""] {
    display: none !important;
}
@media (max-width: 767px) {
    .hero {
        padding: 100px 0 0 !important;
    }
    .hero-header {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }
    .hero-media {
        border-radius: 10px 10px 0 0;
    }
}


/* ============================================================
 *  Stats 섹션 (Intro 대체)
 * ============================================================ */
.stats-section {
    padding: 90px 0 100px;
    background: #ffffff;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}
.stats-headline {
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
}
.stats-subhead {
    font-size: 15px;
    color: #888;
    margin-bottom: 64px;
    font-weight: 300;
    line-height: 1.75;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.stat-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 44px 28px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.stat-emoji {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1;
    display: block;
}
.stat-title {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.stat-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    font-weight: 300;
    margin: 0;
}
.stat-desc strong {
    color: #f0632a;
    font-weight: 700;
}
@media (max-width: 767px) {
    .stats-section {
        padding: 60px 0 70px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stats-subhead {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .stat-card {
        padding: 32px 20px 28px;
    }
    .stat-emoji {
        font-size: 44px;
    }
    .stat-title {
        font-size: 19px;
    }
}


/* ============================================================
 *  Games 섹션 — 배경이미지
 * ============================================================ */
.games {
    background-color: #1a1a1a;
    background-image: url('../assets/bg-work.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
}
.games::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 0;
}
.games .container, .games > * { position: relative; z-index: 1; }
.games h2 { color: #ffffff !important; }
.games .games-intro { color: rgba(255,255,255,0.8) !important; }
.game-card {
    background-color: transparent !important;
    border: 1.5px solid rgba(255,255,255,0.55) !important;
}
.game-card:hover {
    background-color: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.9) !important;
}
.game-title { color: #ffffff !important; }
.game-description { color: rgba(255,255,255,0.7) !important; }
/* games 섹션 h2, subtitle */
.games h2 { color: #ffffff !important; }
.games-intro { color: #666 !important; }


/* ============================================================
 *  Culture 섹션 — 박스 카드 스타일
 * ============================================================ */
.culture-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.culture-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}
.culture-card-accent {
    height: 5px;
    background-color: var(--culture-color, #e8720c);
}
.culture-card-body {
    padding: 32px 28px 36px;
}
.culture-card-kw {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.culture-card-desc {
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 1.85;
    margin: 0;
}
@media (max-width: 767px) {
    .culture-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .culture-card-body {
        padding: 24px 20px 28px;
    }
    .culture-card-kw {
        font-size: 20px;
    }
}


/* Culture 카드 — 가로 전폭 스타일 */
.culture-cards {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 16px !important;
}
.culture-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    border-radius: 14px !important;
}
.culture-card-accent {
    width: 6px !important;
    height: auto !important;
    min-height: 100% !important;
    flex-shrink: 0 !important;
}
.culture-card-body {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 40px !important;
    padding: 28px 36px !important;
    flex: 1 !important;
}
.culture-card-kw {
    font-size: 20px !important;
    margin: 0 !important;
    min-width: 90px !important;
    flex-shrink: 0 !important;
}
.culture-card-desc {
    font-size: 13px !important;
    border-left: 1px solid rgba(0,0,0,0.07) !important;
    padding-left: 36px !important;
}
@media (max-width: 767px) {
    .culture-card-body {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 20px !important;
    }
    .culture-card-desc {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 1px solid rgba(0,0,0,0.07) !important;
        padding-top: 12px !important;
    }
}


/* ============================================================
 *  Culture 카드 — 왼쪽에서 오른쪽으로 슬라이드 인 애니메이션
 * ============================================================ */
.culture-card.fade-in {
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity 0.65s ease-out, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.culture-card.fade-in.visible {
    opacity: 1;
    transform: translateX(0);
}
/* 각 카드 딜레이 */
.culture-card.fade-in-delay-2 { transition-delay: 0s; }
.culture-card.fade-in-delay-3 { transition-delay: 0.15s; }
.culture-card.fade-in-delay-4 { transition-delay: 0.3s; }


/* ============================================================
 *  게임 모달 — 깔끔한 재디자인
 * ============================================================ */

/* 모달 전체 배경 흰색 */
.game-modal-content {
    background-color: #ffffff !important;
    border-radius: 20px !important;
    max-width: 680px !important;
}

/* 상단 이미지 영역 — 이미지 없을 때 그라디언트로 */
.game-modal-image {
    aspect-ratio: 16/7 !important;
    background: linear-gradient(135deg, #2a2440 0%, #1a1a2e 100%) !important;
    border-radius: 20px 20px 0 0 !important;
}
.game-modal-image img {
    border-radius: 20px 20px 0 0 !important;
}

/* 본문 패딩 줄이기 */
.game-modal-body {
    padding: 28px 32px 32px !important;
}
.game-modal-title {
    font-size: 26px !important;
    color: #222 !important;
    margin-bottom: 8px !important;
}
.game-modal-tags {
    font-size: 13px !important;
    margin-bottom: 16px !important;
}
.game-modal-description {
    font-size: 14px !important;
    color: #555 !important;
    line-height: 1.75 !important;
    margin-bottom: 24px !important;
}

/* 비디오 플레이스홀더 — 검은색 말고 밝게 */
.video-placeholder {
    background: #f0f0f0 !important;
    color: #aaa !important;
    font-size: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    min-height: 160px !important;
    border-radius: 10px !important;
    letter-spacing: 0.1em !important;
}

/* 영상 영역 — 크기 줄이기 */
.game-extra-section {
    padding: 24px 32px 28px !important;
    background: #fafafa !important;
    border-top: 1px solid #eee !important;
}
.game-extra-video {
    background: #e8e8e8 !important;
    border-radius: 10px !important;
    aspect-ratio: 16/9 !important;
}
.game-extra-video video {
    border-radius: 10px !important;
}
.game-extra-caption {
    color: #888 !important;
    font-size: 12px !important;
}

/* 스토어 링크 (개발 중 버튼) */
.store-link.disabled {
    background-color: #f0f0f0 !important;
    color: #999 !important;
    border-radius: 8px !important;
    font-size: 13px !important;
}

/* 닫기 버튼 */
.game-modal-close {
    background: rgba(0,0,0,0.12) !important;
    color: #333 !important;
}
.game-modal-close:hover {
    background: rgba(0,0,0,0.22) !important;
}

/* 비디오 페어 */
.game-extra-video-pair {
    gap: 12px !important;
}


/* ============================================================
 *  Work 섹션 — 모달 완전 숨김 + 카드 애니메이션
 * ============================================================ */
.game-modal { display: none !important; }
.game-card { cursor: default !important; }

/* 게임 카드 올라오는 애니메이션 */
.game-card.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.game-card.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
 *  Hero 섹션 — 2컬럼 + 네모 박스 슬라이드쇼
 * ============================================================ */

/* 히어로 배경/레이아웃 */
.hero {
    background: #ffffff !important;
    color: #111111 !important;
    padding: 0 !important;
    display: block !important;
}
.hero .container {
    padding-top: 180px !important;
    padding-left: 80px !important;
    padding-right: 80px !important;
    padding-bottom: 0 !important;
}
.hero-overlay { display: none !important; }
.hero-content { display: none !important; }

/* 2컬럼 헤더 */
.hero-header {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    gap: 72px !important;
    align-items: center !important;
    margin-bottom: 40px !important;
    max-width: 100% !important;
}
.hero .hero-eyebrow {
    color: #333333 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    margin: 0 0 10px !important;
}
.hero h1 {
    font-size: 34px !important;
    font-weight: 900 !important;
    color: #111111 !important;
    white-space: nowrap !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    text-shadow: none !important;
}
.hero-desc-col {
    border-left: 1px solid rgba(0,0,0,0.12) !important;
    padding-left: 64px !important;
}
.hero .hero-lead {
    font-size: 13px !important;
    color: #555 !important;
    line-height: 1.85 !important;
    margin: 0 !important;
}

/* 네모 박스 (슬라이드쇼 컨테이너) */
.hero-media {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    border-radius: 16px 16px 0 0 !important;
    overflow: hidden !important;
    background: #e5e5e5 !important;
}

/* 아래→위 그라데이션 오버레이 */
.hero-media::after {
    content: '';
    position: absolute !important;
    bottom: 0; left: 0;
    width: 100%; height: 45%;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    z-index: 5 !important;
    pointer-events: none;
}

/* 슬라이드 */
.hero-slides {
    position: absolute !important;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.hero-slide {
    position: absolute !important;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0;
    transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; }

/* < > 버튼 */
.hero-prev,
.hero-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    background: rgba(0,0,0,0.28) !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 32px !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s !important;
}
.hero-prev { left: 20px !important; }
.hero-next { right: 20px !important; }
.hero-prev:hover, .hero-next:hover {
    background: rgba(0,0,0,0.5) !important;
}

/* 점 인디케이터 */
.hero-dots {
    position: absolute !important;
    bottom: 16px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    gap: 8px !important;
}
.hero-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.5) !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
}
.hero-dot.active { background: #ffffff !important; }
