﻿/* CSS Cache Buster - 2025-01-12 21:25 */
/* Paybooc Font Face */
@font-face {
    font-family: 'Paybooc';
    src: url('fonts/paybooc-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paybooc';
    src: url('fonts/paybooc-Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paybooc';
    src: url('fonts/paybooc-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paybooc';
    src: url('fonts/paybooc-Medium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paybooc';
    src: url('fonts/paybooc-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paybooc';
    src: url('fonts/paybooc-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paybooc';
    src: url('fonts/paybooc-ExtraBold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Modern CSS Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette */
    --primary: #ff6b9d;
    --primary-dark: #e55a8a;
    --secondary: #4ecdc4;
    --secondary-dark: #3db5ad;
    --accent: #ffe66d;
    --background: #0a0a0f;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-hover: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b8bcc8;
    --text-muted: #6b7280;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
    --glow: 0 0 20px rgba(255, 107, 157, 0.3);
    
    /* Typography */
    --font-family: 'Paybooc', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-14: 3.5rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-family);
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 999999;
    transition: var(--transition-normal);
    overflow: visible;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.nav-logo-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
}

.nav-menu {
    display: flex;
    gap: var(--space-8);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* 701px 이상에서는 일반 메뉴 유지 */
@media (min-width: 701px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: var(--space-8) !important;
    }
    
    .nav-link {
        border-bottom: none !important;
        text-align: left !important;
        position: relative !important;
    }
    
    .nav-link::after {
        content: '' !important;
        position: absolute !important;
        bottom: -8px !important;
        left: 0 !important;
        width: 0 !important;
        height: 2px !important;
        background: var(--primary) !important;
        transition: var(--transition-normal) !important;
        display: block !important;
    }
    
    .nav-link.active::after,
    .nav-link:hover::after {
        width: 100% !important;
    }
}

/* 700px 이하에서 모바일 메뉴 활성화 */
@media (max-width: 700px) {
    /* 햄버거 메뉴 표시 */
    .nav-toggle {
        display: flex !important;
        cursor: pointer;
    }
    
    /* 기본 nav-menu 숨김 */
    .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 42px !important;
        right: 1rem !important;
        width: 250px !important;
        min-width: 200px !important;
        max-width: 300px !important;
        background: rgba(10, 10, 15, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        padding: var(--space-4) !important;
        gap: var(--space-3) !important;
        border-top: 1px solid var(--border) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
        z-index: 999999 !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    
    /* active 클래스가 있을 때만 표시 */
    .nav-menu.active {
        display: flex !important;
    }
    
    /* 메뉴 링크 스타일 */
    .nav-menu .nav-link {
        padding: var(--space-3) var(--space-2) !important;
        text-align: center !important;
        font-size: var(--font-size-base) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        width: 100% !important;
        position: static !important;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu .nav-link::after {
        display: none !important;
        content: none !important;
    }
    
    /* 햄버거 메뉴 애니메이션 */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    min-height: 35vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 90px 0 5px 0;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* 동영상 배경 스타일 */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.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;
    filter: blur(1.5px) brightness(0.7) contrast(1.2);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.03;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.element-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* PC Layout - Hardcoded and Fixed */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 51px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-visual {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    position: relative;
}

.hero-content {
    grid-column: 1;
    z-index: 20;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--primary);
    margin-bottom: var(--space-6);
    backdrop-filter: blur(10px);
}


.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    line-height: 1.6;
}

.hero-description .mobile-break {
    display: none;
}

.pink-subscribe {
    color: #ffb5ce;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 181, 206, 0.5);
}

.hero-actions {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1000;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1001;
    cursor: pointer;
    pointer-events: auto;
}

/* 히어로 섹션 버튼들에 추가 우선순위 */
.hero-actions .btn {
    z-index: 1001 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--surface-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-inquiry {
    background: #282828;
    color: white;
    border: 1px solid var(--border);
}

.btn-inquiry:hover {
    background: #282828;
    color: white;
    border: 1px solid var(--border);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* PC용 유튜브 텍스트 스타일 */
.youtube-text::before {
    content: "유튜브 구독";
}

.youtube-text::after {
    content: "";
    display: none;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.stats-total {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    margin-bottom: 2px;
}

.stats-row {
    display: flex;
    gap: var(--space-8);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.mobile-hero-image {
    display: none;
}

.tiktok-text {
    white-space: nowrap;
}

.tiktok-text::before {
    content: "틱톡 팔로우";
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 280px;
    height: 280px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.hero-image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-2xl);
    opacity: 0.2;
    filter: blur(20px);
    z-index: 0;
}

/* Video Section */
.video-section {
    padding: 20px 0;
    background: var(--surface);
}

.video-section.recent-videos {
    background: var(--background);
    padding-top: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

/* 갤러리/운세 페이지 상단 Back 링크 스타일 */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    opacity: 0.85;
}

/* 모바일에서 back-link 텍스트 숨김, 화살표만 표시 */
@media (max-width: 768px) {
    .back-link span {
        display: none;
    }
}

/* 율무 운세 버튼 스타일 */
.fortune-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.4rem 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.2), rgba(78, 205, 196, 0.2));
    border: 2px solid rgba(255, 107, 157, 0.4);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2);
}

.fortune-btn:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(78, 205, 196, 0.3));
    border-color: rgba(255, 107, 157, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
}

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

.fortune-btn i {
    font-size: 0.75rem;
    animation: pawBounce 1s ease-in-out infinite;
}

@keyframes pawBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* 모바일에서 버튼 크기 조정 */
@media (max-width: 768px) {
    .fortune-btn {
        font-size: 0.75rem;
        padding: 0.35rem 1.2rem;
    }
    
    .fortune-btn i {
        font-size: 0.65rem;
    }
}

/* 1198px 이하에서 section-header margin-bottom 완전 제거 및 인디케이터 간격 조정 */
@media (max-width: 1198px) {
    .section-header {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
    }
    
    /* 영상카드와 인디케이터 간격 줄이기 */
    .slide-indicators {
        margin-top: var(--space-2) !important;
        padding: var(--space-1) 0 !important;
    }
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-1);
    background: linear-gradient(135deg, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* 모바일/태블릿에서도 터치 시 호버 효과 */
.video-card:active,
.video-card:focus {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.video-card.featured {
    grid-column: span 2;
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    width: 100%;
    min-height: 180px;
    max-height: 240px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-normal);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--surface), var(--surface-hover));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
}

.video-placeholder i {
    font-size: var(--font-size-4xl);
    color: var(--primary);
}

.video-duration,
.video-views {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 6px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
    width: fit-content;
    min-width: auto;
}

.video-duration {
    top: var(--space-4);
    right: var(--space-4);
}

.video-views {
    top: calc(var(--space-4) + 25px);
    right: var(--space-4);
}

.video-info {
    padding: var(--space-4);
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-title {
    font-size: var(--font-size-lg); /* 제목 크기 증가 */
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-stats {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.video-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-stat-item i {
    font-size: 13px;
    color: var(--primary) !important;
}

.video-stat-item span {
    font-size: var(--font-size-sm);
}

/* PC 크기에서도 이모티콘 색상 및 크기 강제 적용 */
@media (min-width: 1024px) {
    .video-stat-item i {
        font-size: 13px;
        color: var(--primary) !important;
    }
    
    .video-stat-item i.fa-heart {
        font-size: 13px;
        color: var(--primary) !important;
    }
    
    .video-stat-item i.fa-comment {
        font-size: 13px;
        color: var(--primary) !important;
    }
    
    .video-stat-item span {
        font-size: var(--font-size-sm);
    }
}

.video-description {
    display: none; /* 설명 숨김 */
}

.video-meta {
    display: none; /* 기존 메타 정보 숨김 */
}

.video-likes {
    display: none; /* 기존 좋아요 숨김 */
}

/* About Section */
.about-section {
    padding: var(--space-24) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--text-primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--primary);
    font-size: var(--font-size-lg);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

/* Gallery Section */
.gallery-section {
    padding: var(--space-5) 0;
    background: var(--surface);
}

.gallery-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    margin-top: var(--space-6);
}

.gallery-preview {
    width: 100%;
    max-width: 1200px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition-normal);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* 모바일/태블릿에서도 탭/클릭 시 호버 효과 */
.gallery-item:active {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    color: var(--text-secondary);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(78, 205, 196, 0.1));
}

.gallery-placeholder i {
    font-size: var(--font-size-3xl);
    color: var(--primary);
}

.gallery-placeholder span {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.gallery-action {
    margin-top: 0;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--primary);
    color: white;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-2xl);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: var(--transition-normal);
    box-shadow: var(--shadow);
}

.gallery-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.gallery-btn i {
    font-size: var(--font-size-xl);
}

/* Contact Section */
.contact-section {
    padding: 20px 0 !important;
    background: var(--background);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 모든 화면 크기에서 문의 버튼 강제 표시 */
@media (max-width: 1023px) {
    .contact-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    .contact-btn * {
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    background: linear-gradient(135deg, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    align-items: center;
}

.contact-btn {
    display: flex !important;
    align-items: center;
    gap: var(--space-4);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--space-6) var(--space-8);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    min-width: 300px;
    font-size: var(--font-size-lg);
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.contact-btn:hover {
    background: var(--surface-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-btn i {
    font-size: var(--font-size-2xl);
    color: var(--primary);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.btn-subtext {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--surface-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.social-link.youtube:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.social-link.tiktok:hover {
    border-color: #000000;
    color: #000000;
}

/* Footer */
.footer {
    padding: var(--space-6) 0;
    border-top: 1px solid var(--border);
    background: var(--background);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.footer-logo-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.copyright-text {
    color: var(--text-secondary);
    font-weight: normal;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 56px;
    height: 56px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: var(--font-size-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */

/* Large Desktop (1400px 이상) */
@media (min-width: 1400px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: var(--space-12);
        max-width: 1600px;
    }
    
    .video-card {
        max-width: 380px;
    }
    
    .video-thumbnail {
        min-height: 200px;
        max-height: 280px;
    }
    
    .video-info {
        padding: var(--space-5);
        min-height: 100px;
    }
    
    .video-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-2);
    }
    
    .video-stats {
        font-size: var(--font-size-base);
        gap: var(--space-1);
    }
    
    .video-stat-item i {
        font-size: 14px;
    }
    
    .video-stat-item span {
        font-size: var(--font-size-base);
    }
}

/* Desktop (1200px-1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--space-10);
    }
    
    .video-card {
        max-width: 360px;
    }
    
    .video-thumbnail {
        min-height: 190px;
        max-height: 260px;
    }
    
    .video-info {
        padding: var(--space-4);
        min-height: 95px;
    }
    
    .video-title {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-1);
    }
}

/* Medium Desktop (700px-1199px) */
@media (min-width: 700px) and (max-width: 1199px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
        max-width: 1200px;
        display: grid !important;
        flex-direction: unset !important;
        overflow: unset !important;
    }
    
    .video-card {
        max-width: 100%;
        flex: unset !important;
        width: unset !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .video-thumbnail {
        aspect-ratio: 16/9;
        width: 100%;
        height: auto;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        min-height: auto;
        max-height: none;
    }
    
    .video-info {
        background: var(--bg-secondary);
        border-radius: 0 0 8px 8px;
        padding: var(--space-4);
        min-height: 90px;
    }
    
    .video-title {
        color: var(--text-primary);
        font-weight: 500;
        font-size: var(--font-size-base);
        margin-bottom: var(--space-2);
    }
    
    .video-stats {
        font-size: 0.85rem;
        gap: var(--space-2);
        margin-top: var(--space-2);
    }
    
    .video-stat-item {
        color: var(--text-secondary);
        gap: var(--space-1);
    }
    
    .video-stat-item i {
        font-size: 12px;
        color: var(--primary) !important;
    }
    
    .video-stat-item span {
        font-size: 0.85rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1198px) and (min-width: 700px) {
    /* 일반 컨테이너는 가운데 정렬 */
    .container {
        padding: 0 var(--space-4) !important;
        margin: 0 auto !important;
    }
    
    /* 태블릿 네비게이션 바 크기 */
    .navbar {
        height: 55px !important;
        padding: 0 !important;
    }
    
    .nav-container {
        height: 55px !important;
        min-height: 55px !important;
        max-height: 55px !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: var(--space-2);
    }
    
    .nav-logo-img {
        width: 32px;
        height: 32px;
    }
    
    .nav-logo-text {
        font-size: var(--font-size-base);
        line-height: 1;
        color: white;
    }
    
    .nav-menu {
        display: flex;
        align-items: center;
        gap: var(--space-2);
    }
    
    .nav-link {
        font-size: var(--font-size-sm);
        padding: var(--space-2) var(--space-3);
        line-height: 1;
    }
    
    /* 히어로 섹션 조정 - 네비게이션 바 높이 + 여백 */
    .hero {
        padding: 75px 0 var(--space-16) 0;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .hero-description .mobile-break {
        display: none;
    }
    
    /* 히어로 버튼 아이패드에서 한 줄 유지 */
    .hero-actions .btn {
        font-size: 0.75rem;
        padding: var(--space-2) var(--space-3);
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn i {
        font-size: 0.75rem;
    }
    
    .btn span {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    /* 섹션 제목/소제목 크기 */
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
    }
    
    /* 갤러리 섹션 태블릿 */
    .gallery-content {
        margin-top: var(--space-3);
        gap: var(--space-3);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-3);
    }
    
    /* 태블릿 터치 효과 - 갤러리 */
    .gallery-item:active,
    .gallery-item:focus {
        transform: translateY(-4px) !important;
        box-shadow: var(--shadow-lg) !important;
        border-color: var(--primary) !important;
    }
    
    /* 태블릿 터치 효과 - 영상 카드 */
    .video-card:active,
    .video-card:focus {
        transform: translateY(-8px) !important;
        box-shadow: var(--shadow-lg) !important;
        border-color: var(--primary) !important;
    }
    
    .gallery-btn {
        padding: var(--space-3) var(--space-6);
        font-size: var(--font-size-base);
    }
    
    .contact-description {
        font-size: var(--font-size-base);
    }
    
    /* 문의하기 버튼 */
    .contact-btn {
        width: auto !important;
        padding: 8px 16px !important;
        font-size: 0.7rem !important;
        min-height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .contact-btn i {
        font-size: 0.7rem !important;
        margin-right: 4px !important;
    }
    
    .contact-btn .btn-text {
        font-size: 0.7rem !important;
    }
    
    .contact-btn .btn-subtext {
        font-size: 0.6rem !important;
    }
    
    /* 푸터 크기 */
    .footer-logo-img {
        width: 35px;
        height: 35px;
    }
    
    .footer-logo-text {
        font-size: var(--font-size-lg);
    }
    
    .footer-text {
        font-size: var(--font-size-sm);
    }
    
    .copyright-text {
        font-size: var(--font-size-sm);
    }
    
    /* Back to top 버튼 */
    .back-to-top {
        width: 48px;
        height: 48px;
        font-size: var(--font-size-base);
        bottom: var(--space-6);
        right: var(--space-6);
    }
    
    /* 태블릿 슬라이드 방식 */
    .videos-section {
        padding-top: var(--space-8) !important;
        padding-bottom: var(--space-4) !important;
    }
    
    .videos-section .section-title,
    .videos-section .section-subtitle {
        text-align: center;
    }
    
    /* 태블릿도 스크롤 방식 사용 */
    .video-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: none !important;
        scroll-behavior: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        gap: var(--space-4) !important;
        padding: var(--space-4) var(--space-4) !important;
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        cursor: grab !important;
        touch-action: pan-x pan-y !important;
        will-change: scroll-position !important;
    }
    
    .video-grid:active {
        cursor: grabbing !important;
    }
    
    .video-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    /* 태블릿 영상 카드 */
    .video-card {
        flex: 0 0 60% !important;
        flex-shrink: 0 !important;
        min-width: 60% !important;
        max-width: 60% !important;
        width: 60% !important;
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
        padding: var(--space-3) !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        overflow: hidden !important;
        background: var(--bg-secondary);
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        transform: translateZ(0) !important;
        backface-visibility: hidden !important;
    }
    
    .video-card > * {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .video-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
    
    /* 태블릿 인디케이터 표시 */
    .slide-indicators {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: var(--space-2) !important;
        padding: var(--space-1) 0 !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .indicator-dot {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        background: rgba(147, 112, 219, 0.3) !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
    }
    
    .indicator-dot.active {
        width: 24px !important;
        border-radius: 4px !important;
        background: var(--primary) !important;
    }
    
    .video-thumbnail {
        aspect-ratio: 16/9;
        width: 100%;
        height: auto;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
        position: relative;
    }
    
    .video-info {
        padding: var(--space-4);
        min-height: 90px;
        background: var(--bg-secondary);
        border-radius: 0 0 8px 8px;
    }
    
    .video-title {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-2);
        line-height: 1.3;
        -webkit-line-clamp: 2;
        color: var(--text-primary);
        font-weight: 500;
    }
    
    .video-stats {
        font-size: 0.85rem;
        gap: var(--space-2);
        margin-top: var(--space-2);
    }
    
    .video-stat-item {
        gap: var(--space-1);
        color: var(--text-secondary);
    }
    
    .video-stat-item i {
        font-size: 12px;
        color: var(--primary) !important;
    }
    
    .video-stat-item i.fa-heart {
        font-size: 12px;
        color: var(--primary) !important;
    }
    
    .video-stat-item i.fa-comment {
        font-size: 12px;
        color: var(--primary) !important;
    }
    
    .video-stat-item span {
        font-size: 0.85rem;
    }
    
    /* 테블릿 이메일 버튼 */
    .contact-btn {
        font-size: var(--font-size-base);
    }
    
    .contact-btn i {
        font-size: var(--font-size-lg);
    }
    
    .contact-btn .btn-text {
        font-size: var(--font-size-base);
    }
    
    .contact-btn .btn-subtext {
        font-size: var(--font-size-sm);
    }
}

@media screen and (max-width: 700px) {
    /* 일반 컨테이너는 가운데 정렬 */
    .container {
        padding: 0 var(--space-4) !important;
        margin: 0 auto !important;
    }
    
    /* 모바일에서 section-header margin-bottom 제거 */
    body .videos-section .section-header,
    html .videos-section .section-header {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* 태블릿 및 모바일에서 section-header margin-bottom 제거 */
    @media (max-width: 1023px) {
        body .section-header,
        html .section-header,
        .videos-section .section-header,
        .section-header {
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
            margin: 0 !important;
            padding: var(--space-2) 0 0 0 !important;
        }
    }
    
    /* 모바일 네비게이션 바 크기 - 훨씬 더 작게 */
    body .navbar {
        height: 42px !important;
        min-height: 42px !important;
        max-height: 42px !important;
        padding: 0 !important;
        line-height: 42px !important;
    }
    
    body .nav-container {
        height: 42px !important;
        min-height: 42px !important;
        max-height: 42px !important;
        padding: 0 var(--space-4) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .nav-logo-img {
        width: 20px;
        height: 20px;
    }
    
    .nav-logo-text {
        font-size: 0.75rem !important;
        line-height: 1 !important;
        font-weight: 600 !important;
        color: white !important;
    }
    
    .nav-toggle {
        width: 26px;
        height: 26px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 3px;
    }
    
    .nav-toggle span {
        height: 2px;
        background-color: var(--text-primary);
    }
    
    /* 700px 이하에서 nav-menu 표시 설정 (중요!) */
    .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 42px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(10, 10, 15, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        padding: var(--space-4) !important;
        gap: var(--space-3) !important;
        border-top: 1px solid var(--border) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
        z-index: 10000 !important;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu .nav-link {
        padding: var(--space-3) var(--space-2) !important;
        text-align: center !important;
        font-size: var(--font-size-base) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        width: 100% !important;
    }
    
    /* 갤러리 섹션 모바일 */
    .gallery-section {
        padding: var(--space-8) 0;
    }
    
    .gallery-content {
        margin-top: var(--space-6);
        gap: var(--space-2);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2);
    }
    
    /* 모바일 터치 효과 - 갤러리 */
    .gallery-item:active,
    .gallery-item:focus {
        transform: translateY(-4px) !important;
        box-shadow: var(--shadow-lg) !important;
        border-color: var(--primary) !important;
    }
    
    /* 모바일 터치 효과 - 영상 카드 */
    .video-card:active,
    .video-card:focus {
        transform: translateY(-8px) !important;
        box-shadow: var(--shadow-lg) !important;
        border-color: var(--primary) !important;
    }
    
    .gallery-placeholder i {
        font-size: var(--font-size-lg);
    }
    
    .gallery-placeholder span {
        font-size: var(--font-size-xs);
    }
    
    .gallery-btn {
        padding: var(--space-3) var(--space-5);
        font-size: var(--font-size-sm);
    }
    
    .gallery-btn i {
        font-size: var(--font-size-base);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu .nav-link::after {
        display: none !important;
    }
    
    /* 섹션 제목/소제목 크기 */
    .section-title {
        font-size: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .contact-description {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-3);
    }
    
    .contact-title {
        margin-bottom: var(--space-1);
    }
    
    /* 푸터 크기 */
    .footer-logo-img {
        width: 28px;
        height: 28px;
    }
    
    .footer-logo-text {
        font-size: 0.8rem;
    }
    
    .footer-text {
        font-size: 0.65rem;
    }
    
    .copyright-text {
        font-size: 0.6rem;
    }
    
    /* Back to top 버튼 */
    .back-to-top {
        width: 44px;
        height: 44px;
        font-size: var(--font-size-sm);
        bottom: var(--space-4);
        right: var(--space-4);
    }
    
    .hero {
        padding: 55px 0 5px 0 !important;
    }
    
    /* Mobile Layout - Image First, Then Content */
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        text-align: center !important;
    }
    
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        align-items: center !important;
    }
    
    /* 강제로 간격 줄이기 */
    .hero .hero-container {
        gap: 5px !important;
    }
    
    .hero .hero-content {
        gap: 5px !important;
    }
    
    .hero .hero-actions {
        margin-bottom: 5px !important;
    }
    
    .hero .hero-stats {
        margin-top: 5px !important;
    }
    
    .hero-visual {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 10px !important;
    }
    
    .hero-image-container {
        transform: none !important;
        max-width: 200px !important;
        max-height: 200px !important;
    }
    
    .hero-description {
        text-align: center !important;
        line-height: 1.4 !important;
        width: 100% !important;
    }
    
    .hero-actions {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }
    
    .btn {
        padding: 4px 8px !important;
        font-size: 0.6rem !important;
        min-height: 32px !important;
        border-radius: 4px !important;
        flex: 1 !important;
        max-width: 85px !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .btn i {
        font-size: 0.6rem !important;
        margin-right: 3px !important;
    }
    
    .btn span {
        font-size: 0.6rem !important;
        font-weight: 500 !important;
        white-space: nowrap !important;
        line-height: 1 !important;
    }
    
    .tiktok-text {
        white-space: normal !important;
    }
    
    .tiktok-text::before {
        content: "틱톡";
        display: block;
    }
    
    .tiktok-text::after {
        content: "팔로우";
        display: block;
    }
    
    .youtube-text {
        font-size: 0 !important;
        white-space: normal !important;
    }
    
    .youtube-text::before {
        content: "유튜브";
        display: block;
        font-size: 0.6rem !important;
    }
    
    .youtube-text::after {
        content: "구독";
        display: block;
        font-size: 0.6rem !important;
    }
    
    .hero-stats {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        width: 100% !important;
    }
    
    .stats-total {
        font-size: 0.75rem !important;
        margin-bottom: -3px !important;
    }
    
    .stats-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        width: 100% !important;
    }
    
    .mobile-hero-image {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .mobile-hero-img {
        width: 60px !important;
        height: 60px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        border: 2px solid var(--primary) !important;
    }
    
    .hero-visual {
        display: none !important;
    }
    
    .stat-number {
        font-size: 0.85rem !important;
        white-space: nowrap !important;
        line-height: 1 !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
        line-height: 1 !important;
    }
    
    .hero-title-main {
        font-size: var(--font-size-2xl) !important;
        margin-bottom: 0 !important;
    }
    
    .hero-description {
        font-size: 0.875rem !important;
    }
    
    .hero-description .mobile-break {
        display: block;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: nowrap;
        gap: var(--space-2);
    }
    
    .hero-actions .btn {
        flex: 1;
        min-width: 0;
        padding: var(--space-3) var(--space-2);
        font-size: var(--font-size-xs);
    }
    
    .hero-stats {
        justify-content: center;
        align-items: center;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .hero-image-container {
        width: 150px;
        height: 150px;
    }
    
    .video-card.featured {
        grid-column: span 1;
    }
    
    /* 모바일/태블릿 슬라이드 방식 - 새로운 설계 */
    .videos-section .section-title,
    .videos-section .section-subtitle {
        text-align: center;
    }
    
    /* 비디오 그리드 컨테이너 */
    .video-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: none !important;
        scroll-behavior: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        gap: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: flex-start !important;
        margin: 0 !important;
        cursor: grab !important;
        touch-action: pan-x pan-y !important;
        will-change: scroll-position !important;
    }
    
    .video-grid:active {
        cursor: grabbing !important;
    }
    
    .video-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    /* 각 비디오 카드 */
    .video-card {
        flex: 0 0 100% !important;
        flex-shrink: 0 !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        transform: translateZ(0) !important;
        backface-visibility: hidden !important;
    }
    
    .video-card > * {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .video-card:first-child {
        margin-left: 0 !important;
        padding: 0 !important;
        margin-top: var(--space-3) !important;
        margin-bottom: var(--space-2) !important;
    }
    
    .video-card:last-child {
        margin-right: 0 !important;
        padding: 0 !important;
        margin-top: var(--space-3) !important;
        margin-bottom: var(--space-2) !important;
    }
    
    .video-card:not(:first-child):not(:last-child) {
        padding: 0 !important;
        margin-top: var(--space-3) !important;
        margin-bottom: var(--space-2) !important;
    }
    
    /* 비디오 카드 내부 콘텐츠에 여백 추가 */
    .video-card .video-thumbnail,
    .video-card .video-info {
        padding-left: var(--space-4) !important;
        padding-right: var(--space-4) !important;
        box-sizing: border-box !important;
    }
    
    .video-thumbnail {
        min-height: 200px;
        max-height: 250px;
        aspect-ratio: 16/9;
    }
    
    .video-info {
        padding: var(--space-3);
        min-height: 80px;
    }
    
    .video-title {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-1);
        line-height: 1.3;
        -webkit-line-clamp: 2;
    }
    
    .video-stats {
        font-size: 0.8rem;
        gap: var(--space-1);
    }
    
    .video-stat-item {
        gap: var(--space-1);
    }
    
    .video-stat-item i {
        font-size: 12px;
    }
    
    .video-stat-item span {
        font-size: 0.8rem;
    }
    
/* 슬라이드 인디케이터 */
.slide-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-2);
    padding: var(--space-1) 0;
    width: 100%;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(147, 112, 219, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.indicator-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}




    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .contact-btn {
        min-width: auto !important;
        width: auto !important;
        padding: 6px 12px !important;
        font-size: 0.65rem !important;
        min-height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .contact-btn i {
        font-size: 0.65rem !important;
        margin-right: 3px !important;
    }
    
    .contact-btn .btn-text {
        font-size: 0.65rem !important;
    }
    
    .contact-btn .btn-subtext {
        font-size: 0.55rem !important;
    }
    
    .social-links {
        flex-direction: column;
        width: 100%;
    }
    
    .social-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* 작은 모바일 네비게이션 바 크기 */
    body .navbar {
        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
        padding: 0 !important;
        line-height: 38px !important;
    }
    
    body .nav-container {
        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
        padding: 0 var(--space-3) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .nav-logo-img {
        width: 18px;
        height: 18px;
    }
    
    .nav-logo-text {
        font-size: 0.7rem !important;
        line-height: 1 !important;
        font-weight: 600 !important;
        color: white !important;
    }
    
    .nav-toggle {
        width: 22px;
        height: 22px;
        gap: 2px;
    }
    
    .nav-toggle span {
        height: 1.5px;
        background-color: var(--text-primary);
    }
    
    /* 480px 이하에서 nav-menu 위치 조정 */
    .nav-menu {
        top: 38px !important;
    }
    
    /* 섹션 제목/소제목 더 작게 */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: var(--font-size-xs);
    }
    
    .contact-description {
        font-size: var(--font-size-xs);
        margin-bottom: var(--space-3);
    }
    
    .contact-title {
        margin-bottom: var(--space-1);
    }
    
    /* 갤러리 섹션 작은 모바일 */
    .gallery-section {
        padding: var(--space-3) 0;
    }
    
    .gallery-content {
        margin-top: var(--space-4);
        gap: var(--space-2);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-1);
    }
    
    /* 작은 모바일 터치 효과 - 갤러리 */
    .gallery-item:active,
    .gallery-item:focus {
        transform: translateY(-4px) !important;
        box-shadow: var(--shadow-lg) !important;
        border-color: var(--primary) !important;
    }
    
    /* 작은 모바일 터치 효과 - 영상 카드 */
    .video-card:active,
    .video-card:focus {
        transform: translateY(-8px) !important;
        box-shadow: var(--shadow-lg) !important;
        border-color: var(--primary) !important;
    }
    
    .gallery-placeholder i {
        font-size: var(--font-size-base);
    }
    
    .gallery-placeholder span {
        font-size: 0.65rem;
    }
    
    .gallery-btn {
        padding: var(--space-2) var(--space-4);
        font-size: 0.75rem;
    }
    
    .gallery-btn i {
        font-size: var(--font-size-sm);
    }
    
    /* 히어로 제목/부제목 */
    .hero-title-main {
        font-size: 1.55rem !important;
        margin-bottom: 0 !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
    
    /* 푸터 더 작게 - 작은 모바일 화면 전용 여백 */
    .footer {
        padding: var(--space-6) var(--space-4) var(--space-6) var(--space-4) !important;
    }
    
    .footer-content {
        padding-top: var(--space-2) !important;
    }
    
    .footer-logo-img {
        width: 24px;
        height: 24px;
    }
    
    .footer-logo-text {
        font-size: 0.7rem;
    }
    
    .footer-text {
        font-size: 0.6rem;
    }
    
    .copyright-text {
        font-size: 0.55rem;
    }
    
    /* Back to top 버튼 더 작게 */
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-xs);
        bottom: var(--space-3);
        right: var(--space-3);
    }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    /* 히어로 섹션 상하 공백 조정 */
    .hero {
        padding: 40px 0 var(--space-6) 0 !important;
        min-height: auto !important;
        display: block !important;
    }
    
    .hero-container {
        gap: var(--space-5) !important;
        align-items: center !important;
    }
    
    .hero-content {
        gap: var(--space-3) !important;
        text-align: center !important;
    }
    
    .hero-title-main {
        font-size: 1.55rem !important;
        margin-bottom: var(--space-2) !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: var(--space-2) !important;
    }
    
    .hero-actions {
        gap: var(--space-3) !important;
        margin-bottom: var(--space-3) !important;
        justify-content: center !important;
    }
    
    .hero-actions .btn {
        padding: var(--space-2) var(--space-3) !important;
        font-size: 0.7rem !important;
        min-height: 36px !important;
        flex: 1 !important;
        max-width: 120px !important;
    }
    
    .hero-stats {
        gap: var(--space-3) !important;
        margin-top: var(--space-3) !important;
        margin-bottom: var(--space-6) !important;
        justify-content: center !important;
    }
    
    .stats-total {
        margin-bottom: var(--space-1) !important;
    }
    
    .stats-row {
        gap: var(--space-4) !important;
        justify-content: center !important;
    }
    
    .hero-container {
        gap: var(--space-4) !important;
        padding: 0 !important;
    }
    
    .hero-content {
        gap: var(--space-2) !important;
        padding: 0 !important;
    }
    
    .hero-visual {
        margin-bottom: var(--space-5) !important;
    }
    
    .hero .hero-title {
        margin-bottom: 1px !important;
    }
    
    .hero .hero-title-main {
        margin-bottom: 1px !important;
    }
    
    .hero .hero-actions {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: var(--space-3) !important;
        margin-bottom: var(--space-3) !important;
        margin-top: 0 !important;
    }
    
    .hero-actions .btn {
        flex: 1;
        min-width: 0;
        padding: 5px 7px !important;
        font-size: 0.65rem !important;
        min-height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .hero-actions .btn i {
        font-size: 0.65rem !important;
        margin-right: 2px !important;
        width: auto !important;
        height: auto !important;
    }
    
    .hero-actions .btn span {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
        line-height: 1.3 !important;
        width: auto !important;
        height: auto !important;
    }
    
    /* 모든 버튼 타입에 동일한 스타일 강제 적용 */
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary,
    .hero-actions .btn-inquiry {
        padding: 5px 7px !important;
        font-size: 0.65rem !important;
        min-height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-3);
        margin-top: var(--space-2) !important;
    }
    
    .stats-total {
        margin-bottom: 2px !important;
    }
    
    .stats-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: var(--space-4) !important;
        width: 100% !important;
    }
    
    .stat-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        min-width: 0 !important;
        gap: var(--space-1) !important;
    }
    
    .stat-number {
        font-size: 0.85rem !important;
        white-space: nowrap !important;
        line-height: 1 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .stat-label {
        font-size: 0.68rem !important;
        white-space: nowrap !important;
        line-height: 1 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .stats-total {
        font-size: 0.82rem !important;
    }
    
    .mobile-hero-img {
        width: 68px !important;
        height: 68px !important;
    }
    
    .hero-image-container {
        width: 135px;
        height: 135px;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .about-title,
    .contact-title {
        font-size: 1.1rem;
        margin-bottom: var(--space-1);
    }
    
    .contact-description {
        margin-bottom: var(--space-2);
    }
    
    /* 작은 화면에서도 슬라이드 유지 */
    .video-card {
        padding: 0 var(--space-5) !important;
    }
    
    .video-thumbnail {
        min-height: 200px;
        max-height: 240px;
        margin-top: var(--space-2);
    }
    
    .video-info {
        padding: var(--space-3);
        min-height: 70px;
    }
    
    .video-title {
        font-size: 0.9rem;
        margin-bottom: var(--space-1);
        line-height: 1.25;
        -webkit-line-clamp: 2;
    }
    
    .video-stats {
        font-size: 0.75rem;
        gap: 3px;
    }
    
    .video-stat-item {
        gap: 3px;
    }
    
    .video-stat-item i {
        font-size: 11px;
    }
    
    .video-stat-item span {
        font-size: 0.75rem;
    }
    
    .video-duration,
    .video-views {
        position: absolute;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        font-size: 0.65rem;
        padding: 2px 5px;
        text-align: right;
        width: fit-content;
        border-radius: var(--radius-sm);
    }

    .video-duration {
        top: var(--space-3);
        right: var(--space-3);
    }

    .video-views {
        top: calc(var(--space-3) + 20px);
        right: var(--space-3);
    }
    
    /* 작은 화면에서 컨테이너 가운데 정렬 */
    .container {
        padding: 0 var(--space-4) !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* 영상 섹션 컨테이너만 예외 처리 */
    .videos-section .container {
        padding: 0 !important;
    }
    
    /* 작은 화면에서 섹션 패딩 조정 */
    .video-section {
        padding: var(--space-4) 0 !important;
        margin: 0 !important;
    }
    
    /* 전체 페이지 가운데 정렬 */
    body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* 헤더 가운데 정렬 */
    .header {
        padding: 0 var(--space-2) !important;
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* 히어로 섹션 가운데 정렬 */
    .hero {
        padding: 0 var(--space-2) !important;
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* 푸터 가운데 정렬 */
    .footer {
        padding: 0 var(--space-2) !important;
        margin: 0 auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* 모바일 네비게이션 바 크기 조정 */
    .navbar {
        height: 60px !important; /* 70px에서 60px로 축소 */
    }
    
    .nav-container {
        height: 60px !important; /* 70px에서 60px로 축소 */
        padding: 0 var(--space-3) !important; /* 패딩 축소 */
    }
    
    .nav-logo-img {
        width: 32px !important; /* 40px에서 32px로 축소 */
        height: 32px !important; /* 40px에서 32px로 축소 */
    }
    
    .nav-logo-text {
        font-size: 0.75rem !important; /* 모바일에서 작은 크기로 강제 적용 */
        color: white !important;
    }
    
    .nav-menu {
        gap: var(--space-2) !important; /* 메뉴 간격 축소 */
    }
    
    .nav-link {
        font-size: var(--font-size-sm) !important; /* 폰트 크기 축소 */
        padding: var(--space-1) var(--space-2) !important; /* 패딩 축소 */
    }
    
    /* 히어로 섹션 상단 여백 추가 (네비게이션 바 높이만큼) */
    .hero {
        padding-top: 50px !important; /* 네비게이션 바 높이 + 최소 여백 */
        margin-top: 0 !important;
    }
}

/* Visitor Counter */
.visitor-counter {
    margin-top: var(--space-2);
    display: flex;
    justify-content: center;
}

.visitor-stats {
    display: flex;
    gap: var(--space-3);
}

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

.visitor-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.visitor-number {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Mobile responsive for visitor counter */
@media (max-width: 700px) {
    .visitor-counter {
        margin-top: var(--space-1);
    }
    
    .visitor-stats {
        gap: var(--space-2);
    }
    
    .visitor-label {
        font-size: 0.5rem;
    }
    
    .visitor-number {
        font-size: 0.6rem;
    }
}

/* 강제 네비게이션 바 크기 적용 */
@media screen and (max-width: 700px) {
    html body .navbar {
        height: 42px !important;
        min-height: 42px !important;
        max-height: 42px !important;
        overflow: hidden !important;
    }
    
    html body .nav-container {
        height: 42px !important;
        min-height: 42px !important;
        max-height: 42px !important;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    html body .navbar {
        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
        overflow: hidden !important;
    }
    
    html body .nav-container {
        height: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
        overflow: hidden !important;
    }
    
    .youtube-text {
        font-size: 0 !important;
        white-space: normal !important;
        line-height: 1.3 !important;
    }
    
    .youtube-text::before {
        content: "유튜브";
        display: block;
        font-size: 0.67rem !important;
        line-height: 1.3 !important;
    }
    
    .youtube-text::after {
        content: "구독";
        display: block;
        font-size: 0.67rem !important;
        line-height: 1.3 !important;
    }
    
    .tiktok-text::before,
    .tiktok-text::after {
        line-height: 1.3 !important;
    }
}

/* 매우 작은 화면 (320px 이하) */
@media (max-width: 320px) {
    .stats-row {
        gap: 4px !important;
    }
    
    .stat-number {
        font-size: 0.65rem !important;
    }
    
    .stat-label {
        font-size: 0.55rem !important;
    }
    
    /* 매우 작은 화면에서 간격 더 줄이기 */
    .videos-section {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }
    
    .videos-section .section-title {
        margin-bottom: 2px !important;
    }
    
    .videos-section .section-subtitle {
        margin-bottom: 2px !important;
    }
    
    .slide-indicators {
        margin-top: 2px !important;
        padding-top: 2px !important;
    }
    
    
    .stats-total {
        font-size: 0.6rem !important;
    }
    
    /* 영상 카드 더 작게 */
    .video-card {
        flex: 0 0 200px !important;
        min-width: 200px !important;
        max-width: 200px !important;
    }
    
    .video-thumbnail {
        min-height: 90px !important;
        max-height: 120px !important;
    }
    
    .video-info {
        padding: 6px !important;
        min-height: 60px !important;
    }
    
    .video-title {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
    }
    
    .video-stats {
        font-size: 0.6rem !important;
    }
    
    .video-stat-item i {
        font-size: 9px !important;
    }
    
    .video-stat-item span {
        font-size: 0.6rem !important;
    }
    
    .video-duration,
    .video-views {
        position: absolute !important;
        background: rgba(0, 0, 0, 0.8) !important;
        color: white !important;
        font-size: 0.5rem !important;
        padding: 1px 3px !important;
        text-align: right !important;
        width: fit-content !important;
        border-radius: var(--radius-sm) !important;
    }

    .video-duration {
        top: var(--space-2) !important;
        right: var(--space-2) !important;
    }

    .video-views {
        top: calc(var(--space-2) + 15px) !important;
        right: var(--space-2) !important;
    }
}


/* 강제 히어로 간격 조정 - 480px 이하 */
@media (max-width: 480px) {
    html body .hero .hero-title,
    html body .hero .hero-title-main {
        margin-bottom: 1px !important;
    }
    
    /* 비디오 카드 재생시간/조회수 위치 조정 */
    .video-thumbnail .video-duration {
        top: calc(var(--space-2) + 8px) !important;
        right: calc(var(--space-2) + 8px) !important;
    }

    .video-thumbnail .video-views {
        top: calc(var(--space-2) + 25px) !important;
        right: calc(var(--space-2) + 8px) !important;
    }
    
    html body .hero .hero-actions {
        margin-top: 0 !important;
    }
}

/* 최고 특이성으로 강제 적용 */
@media (max-width: 480px) {
    html body section.hero div.hero-container div.hero-content h1.hero-title {
        margin-bottom: 1px !important;
    }
    
    html body section.hero div.hero-container div.hero-content h1.hero-title span.hero-title-main {
        margin-bottom: 1px !important;
    }
    
    html body section.hero div.hero-container div.hero-content div.hero-actions {
        margin-top: 0 !important;
    }
    
    /* 버튼 스타일 강제 적용 */
    html body section.hero div.hero-container div.hero-content div.hero-actions a.btn,
    html body section.hero div.hero-container div.hero-content div.hero-actions a.btn-primary,
    html body section.hero div.hero-container div.hero-content div.hero-actions a.btn-secondary,
    html body section.hero div.hero-container div.hero-content div.hero-actions a.btn-inquiry {
        padding: 5px 7px !important;
        font-size: 0.65rem !important;
        min-height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    
    html body section.hero div.hero-container div.hero-content div.hero-actions a.btn i {
        font-size: 0.65rem !important;
        margin-right: 2px !important;
    }
    
    html body section.hero div.hero-container div.hero-content div.hero-actions a.btn span {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
        line-height: 1.3 !important;
    }
    
    /* TOTAL과 통계 사이 공백 및 보라색 칸 완전 제거 */
    html body section.hero div.hero-container div.hero-content div.hero-stats div.stats-total {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        border-bottom: none !important;
        border-top: none !important;
        background: transparent !important;
        background-color: transparent !important;
        height: auto !important;
        min-height: auto !important;
        max-height: auto !important;
    }
    
    /* 통계 관련 모든 요소에서 보라색 칸 제거 */
    html body section.hero div.hero-container div.hero-content div.hero-stats div.stats-row {
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: none !important;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    html body section.hero div.hero-container div.hero-content div.hero-stats {
        gap: 0 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: none !important;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    /* 문의 버튼 크기 조정 */
    html body section.hero div.hero-container div.hero-content div.hero-actions a.btn-inquiry {
        width: 61.83px !important;
        height: 38.35px !important;
        min-width: 61.83px !important;
        min-height: 38.35px !important;
        max-width: 61.83px !important;
        max-height: 38.35px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: none !important;
    }
}

/* ========================================
   관리 메뉴 스타일 (다른 메뉴와 동일)
   ======================================== */

.admin-link {
    /* 다른 nav-link와 동일한 스타일을 사용 */
}
