/**
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 🍌 NanoBanana Landing & Timelines Stylesheet
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 📁 파일명: /www/_acc/css/landing.css
 * 📌 버전: v1.1
 * 📅 작성일: 2026-01-02
 * 📝 설명: landing.php, timelines.php 공통 스타일
 *          - v1.1: 다크모드 CSS 변수 및 스타일 추가
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * CSS Variables (바나나톤)
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
    --primary: #FF6B35;
    --primary-hover: #E85A2A;
    --accent: #f59e0b;
    --accent-pink: #E91E63;
    --bg: #fffbeb;
    --banana-cream: #fffbeb;
    --banana-soft: #fff7ed;
    --banana-light: #fef3c7;
    --banana-medium: #fde68a;
    --card-bg: #ffffff;
    --text: #1f2937;
    --text-secondary: #6b7280;
    --banana-text: #92400e;
    --border: #fde68a;
    --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #FF6B35 50%, #E91E63 100%);
    --gradient-btn: linear-gradient(135deg, #f59e0b 0%, #FF6B35 100%);
    --shadow-soft: 0 4px 20px rgba(255, 107, 53, 0.08);
    --shadow-hover: 0 12px 40px rgba(255, 107, 53, 0.15);
    --shadow-primary: 0 8px 30px rgba(255, 107, 53, 0.25);
    --section-gap: 120px;
    --card-radius: 24px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Dark Mode CSS Variables (base.css와 동일)
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
[data-theme="dark"] {
    --primary: #fb923c;
    --primary-hover: #f97316;
    --accent: #fbbf24;
    --accent-pink: #FF80AB;
    --bg: #0f172a;
    --banana-cream: #0f172a;
    --banana-soft: #1e293b;
    --banana-light: #374151;
    --banana-medium: #4b5563;
    --card-bg: #1e293b;
    --text: #f1f5f9;
    --text-secondary: #94a3b8;
    --banana-text: #fcd34d;
    --border: #334155;
    --gradient-primary: linear-gradient(135deg, #fbbf24 0%, #fb923c 50%, #FF80AB 100%);
    --gradient-btn: linear-gradient(135deg, #fbbf24 0%, #fb923c 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.4);
    --shadow-primary: 0 8px 30px rgba(251, 146, 60, 0.2);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Base Reset
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Background Pattern
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(ellipse 80% 60% at 10% 10%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 90%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 251, 235, 0.5) 0%, transparent 60%);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Floating Bananas Animation
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.floating-bananas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.banana-float {
    position: absolute;
    font-size: 50px;
    opacity: 0.1;
    animation: floatBanana 25s infinite ease-in-out;
}

.banana-float:nth-child(1) { left: 5%; animation-delay: 0s; font-size: 60px; }
.banana-float:nth-child(2) { left: 20%; animation-delay: -6s; font-size: 45px; }
.banana-float:nth-child(3) { left: 40%; animation-delay: -12s; font-size: 55px; }
.banana-float:nth-child(4) { left: 60%; animation-delay: -18s; font-size: 40px; }
.banana-float:nth-child(5) { left: 80%; animation-delay: -8s; font-size: 50px; }
.banana-float:nth-child(6) { left: 95%; animation-delay: -14s; font-size: 35px; }

@keyframes floatBanana {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Navigation
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 251, 235, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--banana-medium);
}

.landing-nav .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-nav .logo span {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-nav .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.landing-nav .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.landing-nav .nav-links a:hover,
.landing-nav .nav-links a.active {
    color: var(--primary);
}

.landing-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-btn);
    transition: width 0.3s ease;
}

.landing-nav .nav-links a:hover::after,
.landing-nav .nav-links a.active::after {
    width: 100%;
}

.landing-nav .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.landing-nav .nav-cta {
    background: var(--gradient-btn);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.landing-nav .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Language Dropdown
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.lang-dropdown {
    position: relative;
}

.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--card-bg);
    border: 2px solid var(--banana-medium);
    padding: 10px 16px;
    border-radius: 50px;
    cursor: pointer;
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-toggle-btn:hover {
    border-color: var(--primary);
    background: var(--banana-soft);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--card-bg);
    border: 2px solid var(--banana-medium);
    border-radius: 16px;
    padding: 8px;
    min-width: 160px;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: var(--banana-light);
}

.lang-option.active {
    background: var(--banana-light);
    color: var(--primary);
    font-weight: 600;
}

.lang-flag { font-size: 1.2rem; }
.lang-name { flex: 1; font-size: 0.9rem; }
.lang-check { color: var(--primary); font-size: 0.8rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Footer (한 줄 레이아웃)
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.landing-footer {
    background: var(--banana-cream);
    padding: 30px 20px 20px;
    border-top: 1px solid var(--banana-medium);
    margin-top: 60px;
}

.landing-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.landing-footer .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-footer .footer-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-footer .footer-logo .logo-text {
    background: linear-gradient(135deg, var(--primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-footer .footer-links {
    display: flex;
    gap: 30px;
}

.landing-footer .footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.landing-footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--banana-medium);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.2s;
}

.landing-footer .footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.landing-footer .footer-copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 16px;
}

.landing-footer .footer-copyright a {
    color: var(--primary);
    text-decoration: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Scroll Top Button
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-btn);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-primary);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Toast
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#contactToast {
    display: none;
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-btn);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-primary);
    z-index: 9999;
    font-weight: 600;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Landing Page - Hero Section
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 60px 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border: 2px solid var(--banana-medium);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--banana-text);
    margin-bottom: 32px;
    box-shadow: var(--shadow-soft);
    animation: fadeInUp 0.8s ease;
}

.hero-badge .dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 44px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(255, 107, 53, 0.4);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Landing Page - Stats Section
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats {
    padding: 80px 60px;
    background: linear-gradient(180deg, var(--banana-soft) 0%, var(--banana-light) 50%, var(--banana-soft) 100%);
    border-top: 1px solid var(--banana-medium);
    border-bottom: 1px solid var(--banana-medium);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--card-radius);
    background: var(--card-bg);
    border: 2px solid var(--banana-medium);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Landing Page - Section Common
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--banana-light);
    color: var(--banana-text);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid var(--banana-medium);
}

.section-tag i {
    color: var(--primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Landing Page - Features Section
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.features {
    padding: var(--section-gap) 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--card-bg);
    border: 2px solid var(--banana-medium);
    border-radius: var(--card-radius);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--banana-light), var(--banana-soft));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    border: 2px solid var(--banana-medium);
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Landing Page - Categories Section
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.categories {
    padding: var(--section-gap) 60px;
    background: linear-gradient(180deg, var(--banana-cream) 0%, var(--banana-soft) 50%, var(--banana-cream) 100%);
}

.categories-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.category-tag {
    background: var(--card-bg);
    border: 2px solid var(--banana-medium);
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
}

.category-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--banana-soft);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.category-tag.active {
    background: var(--gradient-btn);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.category-count {
    background: rgba(255, 107, 53, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-tag.active .category-count {
    background: rgba(255, 255, 255, 0.25);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Landing Page - Gallery Section
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery-preview {
    padding: var(--section-gap) 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: var(--card-bg);
    border: 3px solid var(--banana-medium);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 41, 55, 0.9) 0%, rgba(31, 41, 55, 0.3) 40%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    background: var(--gradient-btn);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.gallery-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-stats {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.gallery-stats i {
    margin-right: 5px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Landing Page - CTA Section
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta {
    padding: var(--section-gap) 60px;
    background: linear-gradient(180deg, var(--banana-cream) 0%, var(--banana-soft) 100%);
}

.cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 3px solid var(--banana-medium);
    border-radius: 36px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.cta-wrapper::before {
    content: '🍌';
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 120px;
    opacity: 0.08;
    transform: rotate(15deg);
}

.cta-wrapper::after {
    content: '🍌';
    position: absolute;
    bottom: 30px;
    left: 50px;
    font-size: 100px;
    opacity: 0.08;
    transform: rotate(-25deg);
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.cta h2 .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta .btn-primary {
    position: relative;
    z-index: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Timelines Page - Updates Container
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.timelines-main {
    padding-top: 100px;
    min-height: 100vh;
}

.updates-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 60px;
}

.updates-header {
    flex-shrink: 0;
    width: 220px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.updates-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    white-space: nowrap;
}

.version-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.version-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.version-badge {
    background: var(--banana-medium);
    color: var(--banana-text);
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Timelines Page - Updates List
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.updates-list {
    flex: 1;
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    padding-right: 20px;
    padding-top: 10px;
}

/* Custom Scrollbar */
.updates-list::-webkit-scrollbar {
    width: 6px;
}

.updates-list::-webkit-scrollbar-track {
    background: var(--banana-light);
    border-radius: 3px;
}

.updates-list::-webkit-scrollbar-thumb {
    background: var(--banana-medium);
    border-radius: 3px;
}

.updates-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Timelines Page - Timeline Item
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.timeline-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-date {
    flex-shrink: 0;
    width: 120px;
    text-align: right;
    padding-top: 4px;
}

.timeline-date .date {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.timeline-date .time {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.timeline-date .version {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 6px;
}

.timeline-indicator {
    flex-shrink: 0;
    width: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--banana-light);
    z-index: 1;
    flex-shrink: 0;
}

.timeline-item.latest .timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-color: #fee2e2;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.timeline-line {
    width: 2px;
    flex: 1;
    background: var(--banana-medium);
    margin-top: 8px;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-content {
    flex: 1;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
}

.timeline-item.latest .timeline-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 100%);
}

.content-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.content-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.latest-badge {
    background: linear-gradient(135deg, #f59e0b, #FF6B35);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.content-list li:last-child {
    margin-bottom: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Responsive - 1024px
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Responsive - 768px (Mobile)
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
    /* Navigation */
    .landing-nav { padding: 12px 16px; gap: 8px; }
    .landing-nav .logo { font-size: 1.2rem; gap: 6px; flex-shrink: 0; }
    .landing-nav .logo span { display: inline; }
    .landing-nav .nav-links { display: none; }
    .landing-nav .nav-right { gap: 8px; flex-shrink: 0; }
    .landing-nav .nav-cta { padding: 8px 14px; font-size: 0.8rem; border-radius: 30px; white-space: nowrap; }
    
    /* Language */
    .lang-toggle-btn { padding: 8px 10px; font-size: 0.8rem; }
    .lang-toggle-btn span { display: none; }
    .lang-menu { right: 0; min-width: 140px; }
    
    /* Hero */
    .hero { padding: 100px 20px 50px; }
    .hero-badge { padding: 10px 16px; font-size: 0.85rem; }
    .hero h1 { font-size: 1.6rem; line-height: 1.3; }
    .hero p { font-size: 1rem; margin-bottom: 30px; }
    .btn-primary { padding: 14px 28px; font-size: 1rem; }
    
    /* Stats */
    .stats { padding: 50px 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-item { padding: 20px 12px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.85rem; }
    .stat-icon { font-size: 2rem; margin-bottom: 10px; }
    
    /* Sections */
    .features, .categories, .gallery-preview, .cta { padding: 60px 20px; }
    .section-header { margin-bottom: 50px; }
    .section-tag { font-size: 0.8rem; padding: 8px 16px; }
    .section-title { font-size: 1.6rem; }
    .section-desc { font-size: 1rem; }
    
    /* Features */
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .feature-card { padding: 30px 24px; }
    .feature-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .feature-card h3 { font-size: 1.2rem; }
    
    /* Categories */
    .categories-grid { gap: 10px; }
    .category-tag { padding: 10px 18px; font-size: 0.9rem; }
    .category-count { padding: 3px 10px; font-size: 0.8rem; }
    
    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-overlay { padding: 16px; }
    .gallery-category { font-size: 0.7rem; padding: 4px 10px; }
    .gallery-title { font-size: 0.9rem; }
    .gallery-stats { font-size: 0.75rem; gap: 10px; }
    
    /* CTA */
    .cta-wrapper { padding: 40px 24px; border-radius: 24px; }
    .cta h2 { font-size: 1.5rem; }
    .cta p { font-size: 1rem; }
    .cta-wrapper::before, .cta-wrapper::after { font-size: 60px; }
    
    /* Footer */
    .landing-footer { padding: 20px 15px 15px; }
    .landing-footer .footer-main { flex-direction: row; gap: 10px; }
    .landing-footer .footer-logo .logo-text { display: none; }
    .landing-footer .footer-links { gap: 16px; }
    .landing-footer .footer-links a { font-size: 0.85rem; }
    .landing-footer .footer-copyright { font-size: 0.75rem; margin-top: 12px; line-height: 1.8; }
    
    /* Scroll Top */
    .scroll-top-btn { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 1rem; }
    
    /* Timelines */
    .timelines-main { padding-top: 80px; }
    
    .updates-container {
        flex-direction: column;
        gap: 30px;
        padding: 20px 15px;
    }
    
    .updates-header {
        width: 100%;
        position: relative;
        top: 0;
        text-align: center;
    }
    
    .updates-header h1 {
        font-size: 1.6rem;
        white-space: normal;
    }
    
    .version-info {
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }
    
    .updates-list {
        max-height: none;
        padding-right: 0;
        padding-top: 0;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .timeline-date {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 0;
    }
    
    .timeline-date .date,
    .timeline-date .time {
        display: inline;
    }
    
    .timeline-date .time {
        margin-top: 0;
    }
    
    .timeline-indicator {
        display: none;
    }
    
    .timeline-content {
        padding: 16px 18px;
    }
    
    .content-title {
        font-size: 1rem;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Responsive - 375px (Small Mobile)
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 375px) {
    .landing-nav { padding: 10px 12px; }
    .landing-nav .logo { font-size: 1rem; }
    .landing-nav .nav-cta { padding: 6px 12px; font-size: 0.75rem; }
    .hero h1 { font-size: 1.4rem; }
    .stat-number { font-size: 1.5rem; }
    
    .landing-footer .footer-links { gap: 10px; }
    .landing-footer .footer-links a { font-size: 0.8rem; }
    .landing-footer .footer-copyright { font-size: 0.7rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Dark Mode Additional Overrides
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Background Pattern */
[data-theme="dark"] .bg-pattern {
    background: 
        radial-gradient(ellipse 80% 60% at 10% 10%, rgba(255, 183, 77, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 90%, rgba(255, 143, 90, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(30, 26, 20, 0.3) 0%, transparent 60%);
}

/* Floating Bananas */
[data-theme="dark"] .banana-float {
    opacity: 0.05;
}

/* Navigation */
[data-theme="dark"] .landing-nav {
    background: rgba(18, 18, 18, 0.95);
    border-bottom-color: var(--border);
}

/* Timeline Item */
[data-theme="dark"] .timeline-content,
[data-theme="dark"] .timeline-item.latest .timeline-content {
    background: var(--card-bg);
    border-color: var(--border);
}

[data-theme="dark"] .timeline-item.latest .timeline-content {
    background: var(--card-bg);
}

/* Footer */
[data-theme="dark"] .landing-footer {
    background: var(--banana-soft);
    border-top-color: var(--border);
}

[data-theme="dark"] .landing-footer .footer-copyright {
    border-top-color: var(--border);
}

/* Cards & Sections */
[data-theme="dark"] .feature-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .cta-box {
    background: var(--card-bg);
    border-color: var(--border);
}

/* Gallery Items */
[data-theme="dark"] .gallery-item {
    background: var(--card-bg);
}

/* Category Tags */
[data-theme="dark"] .category-tag {
    background: var(--card-bg);
    border-color: var(--border);
}

/* Scroll Top Button */
[data-theme="dark"] .scroll-top-btn {
    background: var(--gradient-btn);
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Creations Page (v2.3) - Copy 버튼 + 모델 배지 추가
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.creations-main {
    padding-top: 60px;  /* ★ 헤더 높이만큼만 */
    min-height: 100vh;
}

.creations-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 40px;  /* ★ 상단 패딩 축소 */
}

/* Header */
.creations-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--banana-medium);
}

.creations-title-area h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px 0;
}

.creations-title-area p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.creations-stats {
    display: flex;
    gap: 12px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--banana-light);
    color: var(--banana-text);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-badge i {
    color: var(--primary);
}

/* Container & Loading */
.creations-container {
    min-height: 400px;
}

.creations-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    color: var(--text-secondary);
}

.loading-spinner-large {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Grid */
.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* Card */
.creation-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--banana-medium);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.creation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--primary);
}

/* Image Wrapper */
.creation-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--banana-light) 0%, var(--banana-soft) 100%);
    overflow: hidden;
    cursor: pointer;
}

.creation-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.creation-card:hover .creation-image-wrapper img {
    transform: scale(1.08);
}

/* Hover Overlay */
.creation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.creation-overlay i {
    color: white;
    font-size: 2rem;
}

.creation-card:hover .creation-overlay {
    opacity: 1;
}

/* Status Badge */
.creation-status {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* ★ 카드 모델 배지 (목록용) */
.creation-model-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gradient-btn);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.creation-model-badge i {
    font-size: 0.6rem;
}

.creation-status.pending {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.creation-status.failed {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

/* Info Section */
.creation-info {
    padding: 16px;
}

.creation-prompt {
    color: var(--text);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}

.creation-meta {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.creation-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.creation-meta i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* Actions */
.creation-actions {
    display: flex;
    border-top: 1px solid var(--banana-light);
}

.action-btn {
    flex: 1;
    padding: 14px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: var(--banana-light);
    color: var(--primary);
}

.action-btn.delete:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.action-btn + .action-btn {
    border-left: 1px solid var(--banana-light);
}

/* Loading More */
.creations-loading-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    color: var(--text-secondary);
}

.creations-loading-more .loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* State: Empty / Login / Error */
.creations-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

.state-icon {
    font-size: 5rem;
    margin-bottom: 24px;
}

.creations-state h2 {
    color: var(--text);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.creations-state p {
    color: var(--text-secondary);
    margin: 0 0 28px 0;
    font-size: 1rem;
}

.state-subtext {
    margin-top: 16px !important;
    font-size: 0.9rem !important;
}

.state-subtext a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.state-subtext a:hover {
    text-decoration: underline;
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-btn);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Creations Page - Responsive
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
    .creations-main {
        padding-top: 80px;
    }
    
    .creations-wrapper {
        padding: 20px 15px;
    }
    
    .creations-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .creations-title-area h1 {
        font-size: 1.5rem;
    }
    
    .creations-stats {
        width: 100%;
        justify-content: flex-start;
    }
    
    .stat-badge {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .creations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .creation-card {
        border-radius: 14px;
    }
    
    .creation-info {
        padding: 12px;
    }
    
    .creation-prompt {
        font-size: 0.75rem;
        min-height: 32px;
    }
    
    .creation-meta {
        gap: 10px;
        font-size: 0.7rem;
    }
    
    .action-btn {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .creations-state {
        padding: 60px 20px;
    }
    
    .state-icon {
        font-size: 3.5rem;
    }
    
    .creations-state h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 375px) {
    .creations-grid {
        grid-template-columns: 1fr;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Creations - Pagination (auto_publisher.php 스타일)
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.creations-pagination {
    padding: 20px 0 40px;
}

.creations-pagination .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.creations-pagination .page-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--banana-medium);
    background: var(--card-bg);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--text);
    font-size: 0.9rem;
}

.creations-pagination .page-btn:hover:not(:disabled) {
    background: var(--gradient-btn);
    color: white;
    border-color: var(--primary);
}

.creations-pagination .page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.creations-pagination .page-info {
    padding: 10px 20px;
    background: var(--banana-light);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 90px;
    text-align: center;
    color: var(--text);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Creations - Modal (v2.1)
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.creation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
}

.creation-modal-overlay.active {
    opacity: 1;
}

.creation-modal-content {
    background: var(--card-bg);
    border-radius: 20px;
    max-width: 900px;
    max-height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.creation-modal-overlay.active .creation-modal-content {
    transform: scale(1);
}

.creation-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creation-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.creation-modal-image {
    flex: 1;
    min-height: 300px;
    max-height: 60vh;
    background: var(--banana-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;  /* ★ 모델 배지용 */
}

.creation-modal-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ★ 모델 배지 (이미지 왼쪽 상단) */
.creation-modal-model-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient-btn);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.creation-modal-model-badge i {
    font-size: 0.75rem;
}

.creation-modal-info {
    padding: 24px;
    border-top: 1px solid var(--border);
}

/* ★ 프롬프트 헤더 (Prompt + Copy 버튼) */
.prompt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.prompt-header h4 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prompt-header h4 i {
    color: var(--primary);
}

/* ★ Copy 버튼 */
.prompt-copy-btn {
    background: var(--gradient-btn);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.prompt-copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.creation-modal-prompt h4 {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.creation-modal-prompt p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
    max-height: 80px;
    overflow-y: auto;
}

.creation-modal-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.creation-modal-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.creation-modal-details i {
    color: var(--primary);
}

.creation-modal-actions {
    display: flex;
    gap: 12px;
}

.creation-modal-actions .btn-primary,
.creation-modal-actions .btn-secondary {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.creation-modal-actions .btn-secondary {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-secondary);
}

.creation-modal-actions .btn-secondary:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Disabled action button */
.action-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * Creations - Modal Responsive
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
    .creation-modal-content {
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .creation-modal-image {
        max-height: 50vh;
    }
    
    .creation-modal-info {
        padding: 16px;
    }
    
    .creation-modal-actions {
        flex-direction: column;
    }
    
    .creations-pagination .page-btn {
        width: 36px;
        height: 36px;
    }
    
    .creations-pagination .page-info {
        padding: 8px 14px;
        font-size: 0.85rem;
        min-width: 70px;
    }
}