/* 기본 리셋 및 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* 상단 고정 네비게이션 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 76, 62, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* 모바일 메뉴가 활성화될 때 네비게이션 바 스타일 */
.navbar.menu-active {
    background: rgba(255, 76, 62, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar.menu-active .company-name {
    color: white;
    transition: color 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.company-name {
    color: #ff4c3e;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    margin-top: 6px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff4c3e;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ff4c3e;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(255, 76, 62, 0.1);
    transform: scale(1.05);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #ff4c3e;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    transform-origin: center;
}

/* 햄버거 메뉴 활성화 시 X 모양으로 변환 */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: white;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: white;
}

/* 메인 히어로 섹션 */
.hero {
    padding: 80px 0 60px;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* 비디오 배경 */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: -3;
}

.bg-video.active {
    opacity: 1;
}

/* 비디오 오버레이 */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(255, 76, 62, 0.3) 30%, 
        rgba(255, 107, 91, 0.3) 70%, 
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: -2;
}

/* 추가 어두운 오버레이 */
.video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    word-break: keep-all;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 160px;
    text-align: center;
}

.btn-primary {
    background: white;
    color: #ff4c3e;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #ff4c3e;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.phone-mockup {
    width: 200px;
    height: 350px;
    padding: 12px;
    border-radius: 26px;
    background: #333;
    box-shadow: 0 16px 32px rgba(0,0,0,0.26);
    position: relative;
    will-change: transform;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: #333;
    border-radius: 10px;
    position: relative;
}

.qr-code::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: 
        repeating-conic-gradient(#333 0% 25%, white 0% 50%) 50% / 20px 20px;
}

/* 기능 섹션 */
.features {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 76, 62, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 76, 62, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #ff4c3e;
    margin-bottom: 1rem;
}

.features-desc {
    text-align: center;
    margin-bottom: 2.2rem;
    color: #333;
    font-size: 1.13rem;
    font-weight: 400;
}

/* QR 장점 섹션 */
.qr-benefits {
    padding: 70px 0;
    background: #f5f6fa !important;
}

.qr-benefits h2,
.qr-benefits h2 span,
.qr-benefits h2 .dimmed,
.qr-benefits h2 .vision-label,
.qr-benefits h2 .mission-label,
.qr-benefits h2 .promise-label {
    color: #222 !important;
    opacity: 1 !important;
    background: none !important;
    text-shadow: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    font-weight: 700;
}

.qr-benefits .dimmed {
    color: #333;
    opacity: 1;
    font-weight: 500;
}

.qr-benefits .benefits-text p {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 16px rgba(0,0,0,0.10);
    background: linear-gradient(90deg,#b97cf7 0%,#7ec6e7 100%);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    display: inline-block;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-item {
    margin-bottom: 2rem;
}

.benefit-item h3 {
    color: #ff4c3e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.benefit-item h3::first-child {
    margin-right: 0.6rem;
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.qr-demo-visual {
    position: relative;
}

.phone-frame {
    width: 160px;
    height: 320px;
    background: #333;
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.2);
}

.qr-scanner {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff4c3e, #ff6b5b);
    border-radius: 13px;
    position: relative;
    overflow: hidden;
}

.qr-scanner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid white;
    border-radius: 10px;
}

.qr-scanner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 2px;
    background: white;
    animation: scan 2s infinite;
}

@keyframes scan {
    0%, 100% { transform: translate(-50%, -60px); }
    50% { transform: translate(-50%, 60px); }
}

/* 가맹점 섹션 */
.merchants {
    padding: 70px 0;
    background: #f8f9fa;
}

.merchants h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

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

.merchant-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 5px solid #ff4c3e;
}

.merchant-card:hover {
    transform: translateY(-5px);
}

.merchant-card h3 {
    color: #ff4c3e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* QR 데모 섹션 */
.qr-demo {
    padding: 70px 0;
    background: white;
}

.qr-demo h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.demo-steps {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ff4c3e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 0.7rem;
}

.step-title {
    color: #ff4c3e;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    word-break: keep-all;
    line-height: 1.2;
}

.step-desc {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.5;
    margin: 0;
    margin-top: 2px;
}

.demo-qr {
    display: flex;
    justify-content: center;
}

.qr-code-large {
    text-align: center;
}

.qr-pattern {
    width: 200px;
    height: 200px;
    background: #333;
    border-radius: 15px;
    margin-bottom: 1rem;
    position: relative;
}

.qr-pattern::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: 
        repeating-conic-gradient(#333 0% 25%, white 0% 50%) 50% / 15px 15px;
}

/* 게임 섹션 */
.games {
    position: relative;
    padding: 80px 0;
    background: none;
    overflow: hidden;
}

.game-bg-video-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.game-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.game-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 1;
    pointer-events: none;
}

.games .container {
    position: relative;
    z-index: 2;
}

.games h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.games-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-top: 40px;
}

.game-info h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.game-info p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
}

.game-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 32px 28px;
    background: rgba(0,0,0,0.65);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-feature:hover {
    background: rgba(255,255,255,0.22);
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.03);
}

.game-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 4px;
    filter: drop-shadow(1px 2px 4px rgba(0,0,0,0.10));
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.feature-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.93);
}

.game-studio-showcase {
    position: relative;
    perspective: 1000px;
}

.game-device {
    width: 250px;
    height: 350px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.game-device:hover {
    transform: rotateY(-5deg) rotateX(5deg);
}

.game-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.game-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pixels" width="4" height="4" patternUnits="userSpaceOnUse"><rect width="4" height="4" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23pixels)"/></svg>');
    opacity: 0.5;
}

.game-ui {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.studio-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-preview {
    margin-top: 30px;
}

.pixel-art {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 8px;
    position: relative;
    animation: pixelGlow 2s ease-in-out infinite alternate;
}

.pixel-art::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

.game-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

@keyframes pixelGlow {
    0% {
        box-shadow: 0 0 10px rgba(255,107,107,0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(78,205,196,0.8);
    }
}

/* FAQ 섹션 */
.faq {
    padding: 70px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-item.active {
    transform: translateY(0) scale(1.01);
    box-shadow: 0 10px 30px rgba(255, 76, 62, 0.2);
    border: 1px solid rgba(255, 76, 62, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 76, 62, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question h3 {
    color: #333;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #ff4c3e;
}

.faq-toggle {
    color: #ff4c3e;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 76, 62, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #ff4c3e;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 0.8rem 1.5rem 1.2rem;
    transform: translateY(0);
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-align: left;
    word-break: keep-all;
}

.faq-question:active {
    transform: scale(0.98);
}

/* 문의하기 섹션 */
.contact {
    padding: 70px 0;
    background: white;
    position: relative;
    z-index: 2;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 1.5rem;
}

.form-section h3 {
    color: #ff4c3e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #ff4c3e;
    padding-bottom: 0.5rem;
}

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

.form-group {
    margin-bottom: 0.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff4c3e;
    box-shadow: 0 0 0 3px rgba(255, 76, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.checkbox-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.4rem !important;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    cursor: pointer;
    padding: 0.2rem 0;
    white-space: normal !important;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 0.4rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #ff4c3e;
    border-color: #ff4c3e;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
}

.char-counter {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.char-counter.over-limit {
    color: #ff4c3e;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff4c3e 0%, #ff6b5b 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 76, 62, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* 토스트 메시지 */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #007AFF;
    color: white;
    padding: 16px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.shake {
    animation: horizontalShake 0.6s ease-in-out;
}

@keyframes horizontalShake {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0) translateZ(0);
    }
    10% {
        transform: translateX(-50%) translateY(0) translateX(10px);
    }
    30% {
        transform: translateX(-50%) translateY(0) translateX(-10px);
    }
    40% {
        transform: translateX(-50%) translateY(0) translateX(8px);
    }
    60% {
        transform: translateX(-50%) translateY(0) translateX(-8px);
    }
    70% {
        transform: translateX(-50%) translateY(0) translateX(5px);
    }
    90% {
        transform: translateX(-50%) translateY(0) translateX(-5px);
    }
}

/* 푸터 */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    color: #ff4c3e;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff4c3e;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, 
            rgba(255, 76, 62, 0.96) 0%, 
            rgba(255, 107, 91, 0.96) 100%
        );
        backdrop-filter: blur(15px);
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        gap: 0.7rem;
    }
    
    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0.15rem 0;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .nav-menu.active li {
        transform: translateY(0);
        opacity: 1;
    }
    
    /* 메뉴 아이템 순차적 애니메이션 */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.45s; }
    .nav-menu.active li:nth-child(9) { transition-delay: 0.5s; }
    
    .nav-menu a {
        color: white;
        font-size: 1.3rem;
        font-weight: 500;
        text-decoration: none;
        padding: 0.6rem 2rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .nav-menu a:hover::before {
        left: 0;
    }
    
    .nav-menu a:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* 모바일에서 언어 드롭다운 스타일 */
    .language-dropdown {
        position: relative;
    }
    
    .language-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        margin-top: 0.5rem;
    }
    
    .language-menu li {
        margin: 0.3rem 0;
    }
    
    .language-menu a {
        color: white;
        font-size: 1.1rem;
        padding: 0.5rem 1.5rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .language-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .company-name {
        font-size: 0.8rem;
        margin-top: 4px;
    }
    
    .logo-image {
        height: 32px;
    }
    
    /* 더 작은 화면에서도 스타일리시한 모바일 메뉴 유지 */
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 1.5rem;
        margin: 0.3rem 0;
    }
    
    .nav-menu li {
        margin: 0.3rem 0;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .btn-primary, .btn-secondary {
        padding: 8px 16px;
        font-size: 0.85rem;
        width: 100px;
    }
    
    /* 모바일 폰 목업 - 더 얇은 테두리 */
    .phone-mockup {
        width: 160px;
        height: 320px;
        padding: 3px;
        border-radius: 18px;
        background: #333;
        box-shadow: 0 8px 16px rgba(0,0,0,0.16);
    }
    
    .phone-screen {
        border-radius: 14px;
    }
    
    .phone-frame {
        width: 140px;
        height: 280px;
        padding: 3px;
        border-radius: 14px;
        box-shadow: 0 6px 12px rgba(0,0,0,0.14);
    }
    
    .qr-scanner {
        border-radius: 8px;
    }
    
    .game-screen {
        width: 160px;
        height: 260px;
        padding: 12px;
        border-radius: 18px;
    }
    
    .features,
    .qr-demo,
    .games,
    .faq {
        padding: 45px 0;
    }

    .features h2,
    .qr-demo h2,
    .games h2,
    .faq h2,
    .contact h2,
    .location h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .feature-card,
    .merchant-card {
        padding: 1.3rem;
        border-radius: 12px;
    }

    .feature-card h3,
    .merchant-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .feature-card p,
    .merchant-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .contact {
        padding: 45px 0;
    }

    .contact h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .location {
        padding: 45px 0;
    }
    
    /* 480px 이하에서 회사 위치 섹션 더 최적화 */
    .location h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .location-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .address-card {
        padding: 1.3rem;
    }
    
    .address-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .location-map iframe {
        height: 220px;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .form-section {
        margin-bottom: 0.8rem;
    }

    .form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .form-group {
        margin-bottom: 0.3rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .btn-submit {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .toast {
        left: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 0.7rem 0.8rem;
    }
    
    .toast.show {
        transform: translateY(0);
    }

    .step {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    .step-number {
        margin-right: 0;
        margin-bottom: 0.3rem;
    }
    .step-title {
        font-size: 0.98rem;
        margin-bottom: 0.1rem;
    }
    .step-desc {
        font-size: 0.9rem;
    }
}

/* 스크롤 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* 스무스 스크롤 */
html {
    scroll-behavior: smooth;
}

/* 회사 위치 섹션 */
.location {
    padding: 70px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info {
    display: flex;
    justify-content: center;
}

.address-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #ff4c3e;
    width: 100%;
    max-width: 400px;
}

.address-card h3 {
    color: #ff4c3e;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.address-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.address-item strong {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    display: block;
}

.address-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.location-map {
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* 매우 작은 화면을 위한 추가 최적화 */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .company-name {
        font-size: 0.75rem;
        margin-top: 3px;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 10px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.25;
        margin-bottom: 0.6rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .features,
    .qr-demo,
    .games,
    .faq,
    .contact,
    .location {
        padding: 35px 0;
    }
    
    .features h2,
    .qr-demo h2,
    .games h2,
    .faq h2,
    .contact h2,
    .location h2 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-card,
    .merchant-card {
        padding: 1.1rem;
    }
    
    .feature-card h3,
    .merchant-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-card p,
    .merchant-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .address-card {
        padding: 1.1rem;
    }
    
    .address-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .address-item {
        padding: 0.7rem;
    }
    
    .address-item strong {
        font-size: 0.8rem;
    }
    
    .address-item p {
        font-size: 0.75rem;
    }
    
    .location-map iframe {
        height: 200px;
    }
    
    .contact-form {
        padding: 1.2rem 0.8rem;
    }
    
    /* FAQ 섹션 모바일 최적화 */
    .faq-item {
        margin-bottom: 0.8rem;
        border-radius: 8px;
        padding: 0;
    }
    
    .faq-question {
        padding: 0.8rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0.6rem 0.8rem 0.7rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* 폰 목업 더 작게 */
    .phone-mockup {
        width: 140px;
        height: 280px;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
    
    /* FAQ 최적화 */
    .faq-item.active .faq-answer {
        padding: 0.5rem 0.8rem 0.7rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

.qr-benefits.apple-style {
    background: linear-gradient(90deg, #b97cf7 0%, #7ec6e7 100%);
    padding: 120px 0 100px 0;
    min-height: 480px;
    display: flex;
    align-items: center;
}
.qr-benefits.apple-style .container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.qr-benefits.apple-style h2 {
    color: #f8fafd;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #f8fafd 60%, #e3e8ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(0,0,0,0.06);
    line-height: 1.18;
}
.qr-benefits.apple-style h2 .dimmed {
    font-weight: 700;
    opacity: 1.0;
    font-size: 0.92em;
}
.apple-vision-text {
    color: #333;
    text-align: center;
    font-size: 1.18rem;
    font-weight: 400;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}
.apple-vision-text .rethink {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff4c3e;
}
@media (max-width: 600px) {
    .qr-benefits.apple-style {
        padding: 60px 0 40px 0;
        min-height: 320px;
    }
    .qr-benefits.apple-style h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    .apple-vision-text {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 95vw;
        padding: 0 0.5rem;
    }
    .apple-vision-text .rethink {
        font-size: 2.2rem;
    }
}

.vision-label, .mission-label, .promise-label {
    font-weight: 900;
    font-size: 1.15em;
    letter-spacing: 0.04em;
    padding: 0 0.12em;
    margin: 0 0.04em;
    background: linear-gradient(90deg, #fff 60%, #e3e8ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border-radius: 0.2em;
}

/* 무료 체험하기 버튼 스타일 */
.btn-trial {
    background-color: #ff4c3e !important;
    color: white !important;
    padding: 15px 40px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    border: 2px solid #ff4c3e !important;
    box-shadow: 0 4px 15px rgba(255, 76, 62, 0.3) !important;
    min-width: 200px !important;
}

.btn-trial:hover {
    background-color: #e63946 !important;
    border-color: #e63946 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 76, 62, 0.4) !important;
}

.btn-trial:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 10px rgba(255, 76, 62, 0.3) !important;
}

.trial-button-container {
    text-align: center;
    margin-top: 40px;
}

.business-image-container {
    margin-top: 30px;
}

.business-image {
    max-width: 50%;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: opacity 0.3s;
    display: block;
    margin: 0 auto;
}

.business-image:hover {
    /* 효과 없음, transition만 유지 */
}

@media (max-width: 600px) {
    .business-image {
        max-width: 90%;
    }
}

@media (max-width: 700px) {
    .games {
        padding: 50px 0;
    }
    .game-bg-video {
        min-width: 100vw;
        min-height: 100vw;
    }
}

.games-maintext {
    background: rgba(0,0,0,0.65);
    border-radius: 16px;
    padding: 24px 28px 12px 28px;
    margin-bottom: 18px;
    color: #fff;
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.3;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    display: inline-block;
}

.games-subtext {
    background: rgba(0,0,0,0.55);
    border-radius: 12px;
    padding: 16px 22px 10px 22px;
    margin-bottom: 22px;
    color: #fff;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.7;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: inline-block;
}

@media (max-width: 700px) {
    .games-maintext {
        font-size: 1.2rem;
        padding: 14px 8px 8px 8px;
    }
    .games-subtext {
        font-size: 0.97rem;
        padding: 10px 6px 6px 6px;
    }
    .game-feature {
        padding: 18px 6px;
        border-radius: 12px;
        max-width: 98vw;
    }
}

.media {
    padding: 70px 0;
}

.media h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.media-slider-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 32px;
    margin-bottom: 0;
    gap: 0;
    padding: 0;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.media-arrow {
    background: rgba(255, 76, 62, 0.1);
    border: 2px solid rgba(255, 76, 62, 0.2);
    color: #ff4c3e;
    font-size: 2rem;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 76, 62, 0.15);
}
.media-arrow:hover {
    background: #ff4c3e;
    color: #fff;
    border-color: #ff4c3e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 76, 62, 0.3);
}
.media-slider {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    overflow: visible;
    position: relative;
    flex: 1;
    max-width: 800px;
}
.media-card {
    flex: 0 0 260px;
    min-width: 200px;
    max-width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 18px 18px 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s cubic-bezier(.4,2,.6,1), opacity 0.25s, box-shadow 0.2s;
    opacity: 0.7;
    transform: scale(0.95);
    z-index: 1;
    text-decoration: none;
    color: inherit;
}
.media-card:hover {
    text-decoration: none;
    color: inherit;
}
.media-card.active {
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    z-index: 2;
}
.media-card.active:hover {
    transform: scale(1.18);
    box-shadow: 0 12px 40px rgba(255, 76, 62, 0.2);
}
.media-card.prev, .media-card.next {
    opacity: 0.85;
    transform: scale(0.98);
    z-index: 1;
}
.media-card.prev:hover, .media-card.next:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}
.media-card:not(.active):not(.prev):not(.next) {
    opacity: 0.3;
    pointer-events: none;
}

.media-image {
    width: 100%;
    max-width: 220px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
    background: #f2f2f2;
}

.media-desc {
    font-size: 1.05rem;
    color: #222;
    text-align: center;
    margin-top: 2px;
    word-break: keep-all;
}

.media-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}
.media-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #e0e0e0;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.media-dot.active {
    background: #222;
    transform: scale(1.18);
}

/* 모바일 반응형 디자인 */
@media (max-width: 768px) {
    .media {
        padding: 70px 0;
    }

    .media h2 {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }

    /* 모바일에서는 화살표 숨기기 */
    .media-arrow {
        display: none;
    }

    .media-slider-wrap {
        display: block;
        padding: 0 20px;
        max-width: 100%;
    }

    .media-slider {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: none;
        margin: 0;
    }

    .media-card {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 20px;
        opacity: 1;
        transform: none;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .media-card.active,
    .media-card.prev, 
    .media-card.next,
    .media-card:not(.active):not(.prev):not(.next) {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .media-image {
        height: 200px;
        max-width: 100%;
    }

    .media-desc {
        font-size: 1rem;
        margin-top: 15px;
    }

    .media-dots {
        display: none;
    }
}

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

    .media h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .media-slider-wrap {
        padding: 0 15px;
    }

    .media-slider {
        gap: 15px;
    }

    .media-card {
        padding: 15px;
        max-width: 100%;
        border-radius: 12px;
    }

    .media-image {
        height: 180px;
        border-radius: 8px;
    }

    .media-desc {
        font-size: 0.9rem;
        margin-top: 12px;
    }
}

@media (max-width: 360px) {
    .media {
        padding: 35px 0;
    }

    .media h2 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .media-slider-wrap {
        padding: 0 10px;
    }

    .media-slider {
        gap: 12px;
    }

    .media-card {
        padding: 12px;
        border-radius: 10px;
    }

    .media-image {
        height: 150px;
        border-radius: 6px;
    }

    .media-desc {
        font-size: 0.8rem;
        margin-top: 10px;
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #222;
    letter-spacing: -0.02em;
}
@media (max-width: 700px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
}

.rethink-main-image {
    max-width: 340px;
    width: 38vw;
    min-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    background: #fff;
}
@media (max-width: 900px) {
    .rethink-main-image {
        max-width: 60vw;
        min-width: 120px;
        border-radius: 10px;
    }
}
@media (max-width: 600px) {
    .rethink-main-image {
        max-width: 90vw;
        min-width: 0;
        margin-top: 24px;
    }
}

.games-titlebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.68);
    border-radius: 22px;
    padding: 32px 38px 24px 38px;
    margin: 0 auto 32px auto;
    max-width: 700px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.games-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
    line-height: 1.2;
}
.games-subtitle {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.4;
}
@media (max-width: 700px) {
    .games-titlebox {
        padding: 18px 8vw 12px 8vw;
        border-radius: 12px;
        max-width: 98vw;
    }
    .games-title {
        font-size: 1.3rem;
    }
    .games-subtitle {
        font-size: 1rem;
    }
}

/* 언어 드롭다운 스타일 */
.language-dropdown {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(255, 76, 62, 0.1);
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    list-style: none;
}

.language-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.language-menu a:hover {
    background: rgba(255, 76, 62, 0.1);
    color: #ff4c3e;
}

.language-menu a::after {
    display: none;
}

/* 모바일에서 언어 드롭다운 스타일 */
.language-dropdown {
    position: relative;
}

.language-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    margin-top: 0.5rem;
}

.language-menu li {
    margin: 0.3rem 0;
}

.language-menu a {
    color: white;
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.language-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: none !important;
    height: auto !important;
    left: 0 !important;
    gap: 2rem !important;
  }
  .language-menu {
    position: absolute;
    background: white;
    color: #333;
    opacity: 0;
    visibility: hidden;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 10px;
    border: 1px solid rgba(255, 76, 62, 0.1);
    transition: all 0.3s;
    padding: 0.5rem 0;
    right: 0;
    top: 100%;
    transform: translateY(-10px);
  }
  .language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .language-menu a {
    color: #333;
    background: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 0;
  }
} 