/* ===================================
   양홍석 랜딩페이지 - 밝은 테마
   =================================== */

:root {
    --color-white: #ffffff;
    --color-bg: #f8fafc;
    --color-bg-alt: #f1f5f9;
    --color-text: #475569;
    --color-text-light: #94a3b8;
    --color-text-dark: #334155;
    --color-primary: #06b6d4;
    --color-primary-light: #22d3ee;
    --color-primary-dark: #0891b2;
    --color-accent: #10b981;
    --color-border: #e2e8f0;
    --font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 100px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
input, textarea { font-family: inherit; }

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

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    padding: 16px 0;
    border-color: var(--color-border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.nav {
    display: flex;
    gap: 36px;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
}

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

.nav-admin-link {
    color: var(--color-primary) !important;
    opacity: 0.7;
    font-size: 13px !important;
}

.nav-admin-link:hover {
    opacity: 1;
}

.nav-book-link {
    background: #2D5A3D !important;
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600 !important;
}

.nav-book-link:hover {
    background: #1A365D !important;
    color: #ffffff !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    padding: 100px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 99;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .admin-link {
    margin-top: auto;
    font-size: 12px;
    color: #94a3b8;
    opacity: 0.6;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.mobile-nav .admin-link:hover {
    color: var(--color-primary);
    opacity: 1;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 140px;
}

.hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(48px, 10vw, 100px);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-card {
    animation: float 4s ease-in-out infinite;
}

.profile-link {
    display: block;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.click-indicator {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.profile-link-text {
    display: block;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.profile-link:hover .profile-link-text {
    opacity: 1;
    transform: translateY(0);
}

.profile-link:hover .hero-image {
    transform: scale(1.02);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.06),
        0 24px 48px rgba(0, 0, 0, 0.1),
        0 48px 80px rgba(0, 0, 0, 0.12);
}

.hero-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hero-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 36px;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.06),
        0 32px 64px rgba(0, 0, 0, 0.08);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-primary) 0%, transparent 100%);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* ===================================
   Sections
   =================================== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--color-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-desc {
    font-size: 17px;
    color: var(--color-text);
    max-width: 500px;
    margin: 0 auto;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-dark);
    border: 1.5px solid var(--color-border);
}

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

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
}

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

.btn-full {
    width: 100%;
}

/* ===================================
   About Page
   =================================== */
.about-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 40px;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--color-primary);
}

.about-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 48px;
}

.about-profile-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.about-header-large {
    flex-direction: column;
    text-align: center;
    gap: 24px;
}

.about-profile-image-large {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-profile-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.about-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.about-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.about-role {
    font-size: 16px;
    color: var(--color-text);
}

.about-branding-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin-top: 48px;
}

.about-profile-content img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.about-page-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 24px;
    border-radius: var(--radius);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.about-stats-section {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
}

.stat-box {
    flex: 1;
    background: var(--color-bg);
    padding: 16px 12px;
    border-radius: var(--radius);
    text-align: center;
    min-width: 0;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
    white-space: nowrap;
}

.stat-text {
    font-size: 12px;
    color: var(--color-text);
}

.about-section {
    margin-bottom: 40px;
}

.about-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.about-bio p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 16px;
}

.about-bio p:last-child {
    margin-bottom: 0;
}

.career-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.career-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--color-bg);
    border-radius: var(--radius);
}

.career-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 20px;
    flex-shrink: 0;
}

.career-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.about-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--color-white);
    margin-bottom: 48px;
}

.about-cta h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-cta p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
}

.about-cta .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

.about-cta .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .about-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .about-profile-image {
        width: 120px;
        height: 120px;
    }

    .about-name {
        font-size: 28px;
    }

    .about-stats-section {
        gap: 8px;
    }

    .stat-box {
        padding: 12px 8px;
    }

    .stat-number {
        font-size: 14px;
    }

    .stat-text {
        font-size: 10px;
    }

    .about-cta {
        padding: 32px 24px;
    }
}

/* ===================================
   About Section (Home)
   =================================== */
.about-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
    border-radius: 14px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    white-space: nowrap;
}

/* ===================================
   Link Banners Section
   =================================== */
.link-banners {
    padding: 60px 0 80px;
    background: var(--color-bg);
}

.banner-group {
    margin-bottom: 32px;
}

.banner-group:last-child {
    margin-bottom: 0;
}

.banner-group-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

/* SNS Grid - 3 columns */
.banner-grid.sns-grid {
    display: flex;
    gap: 12px;
}

.banner-grid.sns-grid .link-banner {
    flex: 1;
    justify-content: center;
    padding: 16px 12px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.banner-grid.sns-grid .link-banner .banner-icon {
    margin: 0 auto;
}

.banner-grid.sns-grid .link-banner .banner-label {
    margin-left: 0;
    font-size: 13px;
}

.banner-grid.sns-grid .link-banner .banner-arrow {
    display: none;
}

/* Banner Slider */
.banner-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    max-width: 600px;
    margin: 0 auto;
}

.banner-slider .slide[style*="background-image"] {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    background-size: cover, cover;
    background-position: center, center;
    background-blend-mode: overlay;
}

.banner-slider .slide[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.banner-slider .slide[style*="background-image"] .slide-content,
.banner-slider .slide[style*="background-image"] .slide-arrow {
    position: relative;
    z-index: 2;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide {
    min-width: 100%;
    aspect-ratio: 16 / 9; /* 웹과 모바일에서 동일한 비율 유지 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    color: var(--color-white);
    text-decoration: none;
    border-right: none;
    box-sizing: border-box;
}

.slide:last-child {
    border-right: none;
}

.slide-content {
    flex: 1;
}

.slide-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 12px;
}

.slide-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.slide-desc {
    font-size: 14px;
    opacity: 0.9;
}

.slide-arrow {
    font-size: 28px;
    opacity: 0.7;
    transition: var(--transition);
}

.slide:hover .slide-arrow {
    opacity: 1;
    transform: translateX(4px);
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
}

.slider-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--color-white);
    width: 24px;
    border-radius: 4px;
}

/* Home Event Slider (태그/제목 배너 밖 배치) */
.home-event-slider {
    max-width: 800px;
    margin: 0 auto;
}

.home-event-tag {
    margin-bottom: 16px;
}

.home-event-tag .slide-tag {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.home-event-slider .banner-slider {
    max-width: 100%;
    margin: 0;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
}

.home-event-slider .slider-nav {
    display: none;
}

.home-event-slider .slide {
    height: auto;
    min-height: 200px;
    padding: 0;
    background-color: #1a1a1a;
    border-radius: 16px;
    aspect-ratio: 2 / 1; /* 배너 이미지 비율에 맞춤 */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.home-event-slider .banner-slider {
    background: transparent;
    border-radius: 16px;
}

.home-event-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.home-event-bottom .slide-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0;
}

.home-event-nav {
    display: flex;
    gap: 8px;
}

.home-event-nav .slider-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.home-event-nav .slider-btn:hover {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}

/* Link Banner Base */
.link-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--color-white);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    cursor: pointer;
}

.link-banner:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

/* SNS Banners */
.banner-instagram:hover { border-color: #E4405F; }
.banner-instagram:hover .banner-icon { color: #E4405F; }

.banner-blog:hover { border-color: #03C75A; }
.banner-blog:hover .banner-icon { color: #03C75A; }

.banner-youtube:hover { border-color: #FF0000; }
.banner-youtube:hover .banner-icon { color: #FF0000; }

.link-banner .banner-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border-radius: 12px;
    color: var(--color-text);
    transition: var(--transition);
}

.link-banner .banner-label {
    flex: 1;
    margin-left: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.link-banner .banner-arrow {
    font-size: 18px;
    color: var(--color-text-light);
    transition: var(--transition);
}

.link-banner:hover .banner-arrow {
    color: var(--color-primary);
    transform: translateX(4px);
}

/* Large Banners - List */
.banner-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-banner.banner-large {
    padding: 24px;
}

.link-banner.banner-large .banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.link-banner.banner-large .banner-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
    color: var(--color-primary);
}

.link-banner.banner-large:hover .banner-icon {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.banner-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.banner-desc {
    font-size: 14px;
    color: var(--color-text);
}

.link-banner.banner-large .banner-arrow {
    font-size: 22px;
}

/* ===================================
   Bento Grid Layout
   =================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bento-card {
    position: relative;
    padding: 28px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 140px;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Card Sizes */
.bento-wide {
    grid-column: span 2;
}

.bento-tall {
    grid-row: span 2;
}

/* Card Colors */
.bento-primary {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    min-height: 180px;
}

.bento-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.bento-navy {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: white;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    min-height: auto;
    padding: 24px 28px;
}

.bento-light {
    background: linear-gradient(135deg, #e0f2fe 0%, #cffafe 100%);
    color: #0891b2;
}

.bento-accent {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.bento-white {
    background: white;
    border: 1px solid #e2e8f0;
    color: #475569;
}

.bento-contact {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    color: #0f766e;
}

/* Bento Content */
.bento-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bento-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    width: fit-content;
}

.bento-light .bento-tag,
.bento-white .bento-tag,
.bento-contact .bento-tag {
    background: rgba(6, 182, 212, 0.15);
    color: #0891b2;
}

.bento-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.bento-desc {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
}

.bento-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-size: 24px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.bento-card:hover .bento-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* Bento Icons */
.bento-icon-large {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
}

.bento-icon-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    margin-bottom: 12px;
}

.bento-light .bento-icon-circle {
    background: white;
    color: #0891b2;
}

.bento-icon-inline {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

/* SNS Card */
.bento-sns {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bento-label {
    font-size: 15px;
    font-weight: 600;
}

.bento-headline {
    font-size: 18px;
    font-weight: 700;
    flex: 1;
}

/* Brand Card */
.bento-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 12px;
}

.brand-logo {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-text {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

/* Features Card */
.bento-features {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.feature-item svg {
    color: #06b6d4;
}

.feature-item span {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

/* Bento Grid Responsive */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .bento-card {
        min-height: 120px;
        padding: 20px;
    }

    .bento-primary {
        min-height: 160px;
    }

    .bento-title {
        font-size: 18px;
    }

    .bento-features {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bento-wide {
        grid-column: span 1;
    }

    .bento-features {
        grid-column: span 1;
        flex-wrap: wrap;
        padding: 24px;
    }

    .bento-navy {
        flex-direction: row;
    }

    .bento-card {
        min-height: auto;
        padding: 20px;
    }

    .bento-sns {
        flex-direction: row;
        justify-content: flex-start;
        gap: 16px;
        padding: 16px 20px;
    }

    .bento-sns .bento-icon-circle {
        margin-bottom: 0;
        width: 48px;
        height: 48px;
    }
}

/* ===================================
   Services Section
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border: none;
    transform: scale(1.02);
}

.service-card.featured:hover {
    transform: scale(1.04);
}

.service-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    background: var(--color-bg);
    border-radius: var(--radius-full);
    color: var(--color-text);
    margin-bottom: 20px;
}

.service-card.featured .service-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.service-card.featured .service-title {
    color: var(--color-white);
}

.service-desc {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 24px;
}

.service-card.featured .service-desc {
    color: rgba(255, 255, 255, 0.9);
}

.service-list {
    text-align: left;
    margin-bottom: 28px;
}

.service-list li {
    font-size: 14px;
    color: var(--color-text);
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.service-card.featured .service-list li {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

.service-card.featured .service-list li::before {
    color: var(--color-white);
}

.service-card.featured .btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
}

/* ===================================
   Reviews Section
   =================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.review-stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.author-location {
    font-size: 13px;
    color: var(--color-text-light);
}

/* ===================================
   CTA Section
   =================================== */
.section-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 80px 0;
}

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

.cta-content h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* ===================================
   Contact Section
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-bg);
    border-radius: var(--radius);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 12px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 15px;
    color: var(--color-text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-bg);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand .logo {
    font-size: 22px;
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text);
    max-width: 400px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text);
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-light);
}

/* ===================================
   Responsive - Tablet (1024px)
   =================================== */
@media (max-width: 1024px) {
    .about-grid,
    .services-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        transform: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-image {
        max-width: 450px;
    }

}

/* ===================================
   Responsive - Mobile (768px)
   =================================== */
@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .about-grid,
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image {
        max-width: 380px;
    }

    .hero-title {
        font-size: clamp(40px, 12vw, 70px);
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-content {
        padding: 100px 16px 60px;
    }

    .about-stats {
        gap: 30px;
    }

    .stat-label {
        font-size: 14px;
    }

    .link-banner .banner-label {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    /* SNS Grid mobile */
    .banner-grid.sns-grid {
        flex-wrap: wrap;
    }

    .banner-grid.sns-grid .link-banner {
        min-width: calc(33.333% - 8px);
    }

    /* Service cards mobile */
    .service-card {
        padding: 28px 24px;
    }

    .service-title {
        font-size: 20px;
    }

    /* Info cards mobile */
    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto;
    }

    /* Scroll indicator */
    .scroll-indicator {
        bottom: 24px;
    }

    .scroll-arrow {
        height: 30px;
    }
}

/* ===================================
   Responsive - Large Phone (576px)
   =================================== */
@media (max-width: 576px) {
    .section {
        padding: 70px 0;
    }

    .container {
        padding: 0 16px;
    }

    .hero-image {
        max-width: 340px;
        border-radius: 28px;
    }

    .hero-title {
        font-size: clamp(38px, 13vw, 60px);
    }

    .hero-tag {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .click-indicator {
        font-size: 13px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-desc {
        font-size: 15px;
        padding: 0 10px;
    }

    /* About page */
    .about-name {
        font-size: 26px;
    }

    .about-role {
        font-size: 14px;
    }

    .career-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 16px;
    }

    /* Stats */
    .about-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }

    /* Banner */
    .link-banner.banner-large {
        padding: 20px 16px;
    }

    .link-banner.banner-large .banner-content {
        gap: 12px;
    }

    .link-banner.banner-large .banner-icon {
        width: 48px;
        height: 48px;
    }

    .banner-title {
        font-size: 15px;
    }

    .banner-desc {
        font-size: 13px;
    }

    /* CTA */
    .section-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 15px;
    }
}

/* ===================================
   Responsive - Medium Phone (480px)
   =================================== */
@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 14px;
    }

    .header-inner {
        padding: 0 14px;
    }

    .logo {
        font-size: 20px;
    }

    .hero-image {
        max-width: 300px;
        border-radius: 24px;
    }

    .hero-title {
        font-size: clamp(34px, 14vw, 50px);
        letter-spacing: -1px;
    }

    .hero-tag {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .click-indicator {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 11px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-desc {
        font-size: 14px;
    }

    /* Cards */
    .about-card,
    .service-card,
    .review-card {
        padding: 24px 18px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-desc {
        font-size: 13px;
    }

    .service-list li {
        font-size: 13px;
        padding: 8px 0;
        padding-left: 20px;
    }

    .review-text {
        font-size: 14px;
    }

    /* Button */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Stats */
    .stat-icon {
        width: 44px;
        height: 44px;
    }

    .stat-label {
        font-size: 13px;
        white-space: normal;
    }

    /* SNS Grid */
    .banner-grid.sns-grid .link-banner {
        padding: 14px 10px;
    }

    .banner-grid.sns-grid .link-banner .banner-icon {
        width: 40px;
        height: 40px;
    }

    .banner-grid.sns-grid .link-banner .banner-label {
        font-size: 12px;
    }

    /* About page */
    .about-profile-image {
        width: 100px;
        height: 100px;
    }

    .about-name {
        font-size: 24px;
    }

    .stat-box {
        padding: 10px 6px;
    }

    .stat-number {
        font-size: 13px;
    }

    .stat-text {
        font-size: 9px;
    }

    .about-section-title {
        font-size: 16px;
    }

    .about-bio p {
        font-size: 14px;
    }

    .about-cta {
        padding: 28px 20px;
    }

    .about-cta h3 {
        font-size: 18px;
    }

    .about-cta p {
        font-size: 13px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }

    .footer-brand .logo {
        font-size: 20px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    /* Form */
    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* ===================================
   Responsive - Small Phone (375px - iPhone SE)
   =================================== */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .header-inner {
        padding: 0 12px;
    }

    .header {
        padding: 16px 0;
    }

    .logo {
        font-size: 18px;
    }

    .hero-content {
        padding: 90px 12px 50px;
    }

    .hero-image {
        max-width: 260px;
        border-radius: 20px;
    }

    .hero-title {
        font-size: clamp(30px, 15vw, 44px);
    }

    .hero-tag {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .click-indicator {
        font-size: 11px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .section-desc {
        font-size: 13px;
    }

    /* Cards */
    .about-card,
    .service-card,
    .review-card {
        padding: 20px 16px;
    }

    .service-badge {
        font-size: 10px;
        padding: 5px 10px;
    }

    .service-title {
        font-size: 17px;
    }

    /* SNS Grid - 2 columns on very small screens */
    .banner-grid.sns-grid {
        flex-wrap: wrap;
    }

    .banner-grid.sns-grid .link-banner {
        min-width: calc(50% - 6px);
        flex: none;
    }

    /* Banner large */
    .link-banner.banner-large {
        padding: 16px 14px;
    }

    .link-banner.banner-large .banner-icon {
        width: 44px;
        height: 44px;
    }

    .banner-title {
        font-size: 14px;
    }

    .banner-desc {
        font-size: 12px;
    }

    /* About page */
    .about-profile-image {
        width: 90px;
        height: 90px;
    }

    .about-name {
        font-size: 22px;
    }

    .about-role {
        font-size: 13px;
    }

    .about-stats-section {
        gap: 6px;
    }

    .stat-box {
        padding: 8px 4px;
    }

    .stat-number {
        font-size: 12px;
    }

    .stat-text {
        font-size: 8px;
    }

    .career-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .career-item h3 {
        font-size: 13px;
    }

    /* CTA */
    .section-cta {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .cta-content p {
        font-size: 13px;
    }

    /* Button */
    .btn {
        padding: 11px 20px;
        font-size: 13px;
    }

    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

/* ===================================
   Responsive - Extra Small Phone (320px)
   =================================== */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .header-inner {
        padding: 0 10px;
    }

    .logo {
        font-size: 16px;
    }

    .hero-image {
        max-width: 220px;
        border-radius: 18px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-tag {
        font-size: 9px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .click-indicator {
        font-size: 10px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-desc {
        font-size: 12px;
    }

    /* Cards */
    .about-card,
    .service-card,
    .review-card {
        padding: 18px 14px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-desc {
        font-size: 12px;
    }

    .review-text {
        font-size: 13px;
    }

    /* SNS Grid - single column */
    .banner-grid.sns-grid .link-banner {
        min-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        text-align: left;
    }

    .banner-grid.sns-grid .link-banner .banner-icon {
        margin: 0;
    }

    .banner-grid.sns-grid .link-banner .banner-arrow {
        display: block;
        margin-left: auto;
    }

    /* About page */
    .about-profile-image {
        width: 80px;
        height: 80px;
    }

    .about-name {
        font-size: 20px;
    }

    .stat-number {
        font-size: 11px;
    }

    .stat-text {
        font-size: 7px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 18px;
    }

    .cta-content p {
        font-size: 12px;
    }

    /* Button */
    .btn {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* ===================================
   Touch Device Optimizations
   =================================== */
@media (hover: none) and (pointer: coarse) {
    .link-banner:hover {
        transform: none;
    }

    .service-card:hover,
    .review-card:hover {
        transform: none;
    }

    .btn-primary:hover {
        transform: none;
    }

    .link-banner:active {
        transform: scale(0.98);
    }

    .service-card:active,
    .review-card:active {
        transform: scale(0.98);
    }

    .btn:active {
        transform: scale(0.96);
    }
}

/* ===================================
   Landscape Mode Optimizations
   =================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-image {
        max-width: 200px;
    }

    .hero-title {
        font-size: 32px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ===================================
   Products Page
   =================================== */
.products-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--color-text);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-bottom: 48px;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--color-primary);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-placeholder {
    color: var(--color-text-light);
    font-size: 12px;
}

.product-info {
    padding: 12px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.product-desc {
    font-size: 12px;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-link-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary);
}

/* Affiliate Disclaimer */
.affiliate-disclaimer {
    background: #f8fafc;
    color: #94a3b8;
    font-size: 11px;
    text-align: center;
    padding: 10px 16px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Product Embed Container - Coupang Partners */
.product-embed {
    background: white;
    border-radius: 8px;
    border: 2px solid #06b6d4;
    padding: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    max-width: 140px;
    margin: 0 auto;
    position: relative;
}

.product-embed:hover {
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* iframe 래퍼 */
.product-embed .iframe-wrapper {
    width: 120px;
    height: 240px;
    position: relative;
    overflow: hidden;
}

/* Coupang Partners embed - iframe/img */
.product-embed iframe {
    display: block;
    border-radius: 4px;
    cursor: pointer;
}

/* 커스텀 상품명 - 쿠팡 상품명 위에 덮어씌움 */
.product-embed .custom-product-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    padding: 8px 4px;
    text-align: center;
    word-break: keep-all;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

/* 전체 클릭 오버레이 */
.product-embed .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    cursor: pointer;
}

/* 편집 모드에서 오버레이 비활성화 */
body.edit-mode .product-embed .product-overlay {
    pointer-events: none;
    cursor: default;
}

.product-embed img {
    max-width: 100%;
    height: auto !important;
    display: block;
    border-radius: 4px;
}

/* Coupang Partners link styles */
.product-embed a {
    display: inline-block;
    text-decoration: none;
    max-width: 100%;
}

.product-embed a img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto !important;
    border-radius: 4px;
}

/* Handle various Coupang banner sizes */
.product-embed > a,
.product-embed > div,
.product-embed > iframe {
    max-width: 100%;
}

.product-embed-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    margin-top: 8px;
    word-break: keep-all;
}

/* Custom product name (shown above iframe) */
.product-custom-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    padding: 8px 12px;
    background: var(--color-bg);
    border-radius: 6px;
    text-align: center;
    word-break: keep-all;
}

/* Simple Product Card - title only */
.product-card.product-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    text-align: center;
    min-height: 140px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--color-border);
    cursor: pointer;
}

.product-card.product-simple:hover {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.product-card.product-simple .product-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: white;
    transition: var(--transition);
}

.product-card.product-simple:hover .product-icon {
    transform: scale(1.1);
    background: var(--color-primary-dark);
}

.product-card.product-simple .product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    word-break: keep-all;
    line-height: 1.4;
}

.product-card.product-simple .product-link-arrow {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary);
    opacity: 0.8;
    transition: var(--transition);
}

.product-card.product-simple:hover .product-link-arrow {
    opacity: 1;
}

/* Edit mode for simple product cards */
body.edit-mode .product-card.product-simple {
    border: 2px dashed #3b82f6;
    position: relative;
}

body.edit-mode .product-card.product-simple:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

/* Wide banners (728x90, 320x100) - full width */
@media (min-width: 769px) {
    .product-embed.wide-banner {
        grid-column: 1 / -1;
    }
}

/* Products Responsive */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .page-title {
        font-size: 24px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-desc {
        font-size: 11px;
    }

    .product-link-text {
        font-size: 11px;
    }

    .product-embed {
        padding: 10px;
    }

    .product-embed img {
        max-width: 100%;
    }
}

/* ===================================
   Events Page
   =================================== */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-tag {
    margin-bottom: 4px;
}

.event-tag .slide-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    border-radius: 20px;
}

.events-list .slide {
    flex-shrink: 0;
    width: 100%;
    min-width: 100%;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 12px;
    border-right: none;
    position: relative;
    display: block;
    aspect-ratio: 16 / 9; /* 웹과 모바일에서 동일한 비율 유지 */
    text-decoration: none;
    overflow: hidden;
}

.events-list .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    z-index: 1;
}

.events-list .slide[style*="background-image"]::before {
    background: rgba(0, 0, 0, 0.1); /* 이미지 위에 약간의 오버레이 유지 */
}


.event-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.event-text .slide-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.3;
}

.event-text .slide-desc {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
    opacity: 0.8;
}

/* ===================================
   Videos Page
   =================================== */
.videos-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.video-card {
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: #ff0000;
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder {
    color: #ff0000;
    opacity: 0.8;
}

.video-info {
    padding: 12px;
}

.video-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.video-link-text {
    font-size: 12px;
    font-weight: 500;
    color: #ff0000;
}

@media (max-width: 480px) {
    .videos-list {
        grid-template-columns: 1fr;
    }
}
