/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Language-Specific Content Visibility ===== */
/* By default, hide Japan-only content */
.ja-only {
    display: none !important;
}

/* Show Japan-only content when Japanese language is selected */
html[lang="ja"] .ja-only {
    display: block !important;
}

:root {
    /* Color Palette - White Luxury Theme */
    --primary-color: #ff0080;
    --secondary-color: #00d4ff;
    --accent-gold: #ffd700;
    --light-bg: #ffffff;
    --light-card: #fafafa;
    --light-hover: #f5f5f5;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #888888;
    --gradient-main: linear-gradient(135deg, #ff0080 0%, #ff8c00 50%, #00d4ff 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
    --shadow-glow: 0 0 30px rgba(255, 0, 128, 0.15);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    
    /* Typography */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-main);
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 255, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(255, 0, 128, 0.12), 0 2px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid rgba(255, 0, 128, 0.15);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-accent);
    text-decoration: none;
    color: #000000;
    transition: var(--transition-smooth);
    text-shadow: 0 1px 2px rgba(255, 0, 128, 0.1);
}

.logo i {
    font-size: 1.8rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover {
    transform: scale(1.05);
}

/* ===== Navigation Right Section ===== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* ===== Admin Link ===== */
.admin-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.admin-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.admin-link i {
    font-size: 1.1rem;
    color: #ffd700;
}

/* ===== Language Selector ===== */
.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1rem;
    background: rgba(255, 0, 128, 0.05);
    border: 2px solid rgba(255, 0, 128, 0.2);
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.language-btn:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: var(--primary-color);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 128, 0.2);
}

.language-btn i:first-child {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.language-btn i:last-child {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.language-selector:hover .language-btn i:last-child {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 0, 128, 0.25);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(255, 0, 128, 0.2), 0 4px 16px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1.2rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.language-option .flag {
    font-size: 1.3rem;
}

.language-option:hover {
    background: rgba(255, 0, 128, 0.12);
    color: #000000;
    padding-left: 1.5rem;
    font-weight: 700;
}

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

.nav-link {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

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

.nav-link:hover {
    color: #000000;
    text-shadow: 0 0 8px rgba(255, 0, 128, 0.3);
}

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

/* ===== Dropdown Menu Styles ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 0, 128, 0.25);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(255, 0, 128, 0.2), 0 4px 16px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 0.8rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

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

.dropdown-header {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff0080;
    background: linear-gradient(90deg, rgba(255, 0, 128, 0.08), transparent);
    text-shadow: 0 1px 2px rgba(255, 0, 128, 0.1);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1.2rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.nav-club-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-link:hover {
    background: rgba(255, 0, 128, 0.12);
    color: #000000;
    padding-left: 1.5rem;
    font-weight: 700;
}

.dropdown-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.dropdown-link:hover .nav-club-logo {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(255, 0, 128, 0.3);
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.3), transparent);
    margin: 0.5rem 0;
}

.coming-soon {
    display: inline-block;
    padding: 2px 8px;
    margin-left: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon-inline {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Admin Menu Link */
.admin-menu-link {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 8px;
    margin-top: 0.5rem;
}

.admin-menu-link:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
}

.admin-menu-link i {
    color: #667eea;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 128, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-accent);
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--text-primary);
    box-shadow: 0 5px 25px rgba(255, 0, 128, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 0, 128, 0.6);
}

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

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* ===== Section Styles ===== */
.clubs-section {
    padding: 4rem 0;
}

.contact-section, .guide-section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-accent);
    text-align: center;
    margin-bottom: 0.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #2c2c2c;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    letter-spacing: 0.3px;
}

/* ===== Club Cards Grid ===== */
.clubs-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    transition: all 0.3s ease;
}

.clubs-container.single-view {
    display: flex !important;
    flex-direction: column !important;
    max-width: 1200px !important;
}

/* ===== Club Cards ===== */
.club-card {
    background: transparent !important;
    border-radius: 20px !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    transition: var(--transition-smooth) !important;
    position: relative !important;
    overflow: visible !important;
    min-height: auto !important;
    margin-bottom: 0 !important;
}

.club-card.expanded {
    grid-column: 1 / -1;
}

.club-card.hidden {
    display: none !important;
}

.club-card.active-view {
    display: block !important;
    margin-bottom: 2rem;
}

/* Other Clubs Thumbnails */
.other-clubs-container {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 3rem;
    border: 3px solid #e0e0e0;
    border-radius: 20px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.other-clubs-container.show {
    display: grid;
}

.other-club-thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
}

.other-club-thumbnail .club-header {
    padding: 2rem 1.5rem;
}

.other-club-thumbnail .club-logo {
    min-height: 100px;
}

.other-club-thumbnail .club-logo img {
    max-height: 100px;
    max-width: 200px;
}

.other-club-thumbnail .club-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.other-club-thumbnail .club-tagline {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.other-club-thumbnail:hover .club-header {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.35);
}

.club-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: left 0.5s ease;
}

.club-card:hover::before {
    left: 100%;
}

.club-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.15);
    border-color: rgba(255, 0, 128, 0.3);
}

.club-featured {
    border: none;
    box-shadow: none;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-gold);
    color: var(--dark-bg);
    padding: 0.4rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    z-index: 10;
}

.club-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    margin-bottom: 0;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.club-header * {
    pointer-events: none;
}

.club-header .featured-badge {
    pointer-events: auto;
}

.club-header:hover {
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.2);
    border-color: rgba(236, 72, 153, 0.3);
}

.club-header:active {
    transform: scale(0.98);
}

.club-logo {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 80px;
}

.club-logo img {
    max-height: 80px;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(236, 72, 153, 0.4));
    pointer-events: none;
    user-select: none;
    background: transparent;
}

/* Fallback when image fails to load */
.club-logo img[alt]::before {
    content: attr(alt);
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #ff0080;
    text-align: center;
    padding: 20px;
}

.club-title-section {
    flex: 1;
    text-align: center;
}

.club-name {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-accent);
    margin-bottom: 0;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.club-tagline {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
    margin-top: 0.2rem;
}

.club-content {
    display: none;
    position: relative;
    z-index: 1;
    margin-top: 1.5rem;
}

.club-content.active {
    display: block;
}

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

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 128, 0.3);
}

.info-item i {
    font-size: 2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.club-description {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    margin-top: 2rem;
}

.club-description p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== VIP Service Section ===== */
.vip-service-section {
    margin: 3rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 0, 128, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.vip-service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 50%, var(--accent-gold) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.vip-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.vip-header i {
    font-size: 2rem;
    color: var(--accent-gold);
    animation: crownGlow 2s ease-in-out infinite;
}

@keyframes crownGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9));
    }
}

.vip-header h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1.5px;
}

.vip-benefits {
    display: grid;
    gap: 2rem;
}

.vip-benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vip-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.vip-benefit-item:hover::before {
    left: 100%;
}

.vip-benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.vip-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff9500 100%);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
}

.vip-benefit-item:hover .vip-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.vip-icon i {
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.vip-content h5 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.6),
        1px 1px 3px rgba(0, 0, 0, 0.8);
}

.vip-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vip-service-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .vip-header {
        margin-bottom: 2rem;
    }
    
    .vip-header i {
        font-size: 1.5rem;
    }
    
    .vip-header h4 {
        font-size: 1.4rem;
    }
    
    .vip-benefit-item {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .vip-icon {
        width: 60px;
        height: 60px;
    }
    
    .vip-icon i {
        font-size: 1.5rem;
    }
    
    .vip-content h5 {
        font-size: 1.1rem;
    }
    
    .vip-content p {
        font-size: 0.95rem;
    }
}

/* ===== Club Photo Gallery ===== */
.club-photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.club-photo-gallery .photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--dark-card);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.club-photo-gallery .photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

.club-photo-gallery .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.club-photo-gallery .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.club-photo-gallery .photo-overlay i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

/* ===== INTRO Gallery Section ===== */
.intro-gallery-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.intro-floormap-section,
.intro-menu-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.gallery-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

/* ===== Banner Style (Compact) ===== */
.intro-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.intro-banner-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.banner-item-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 1rem;
}

.banner-item-compact:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateX(5px);
}

.banner-item-compact i:first-child {
    font-size: 1.8rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.banner-item-compact span {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.banner-item-compact i:last-child {
    font-size: 1.2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.banner-item-compact:hover i:last-child {
    transform: translateX(5px);
}

/* ===== INTRO Visual Gallery ===== */
.intro-visual-section {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.08) 0%, rgba(255, 0, 128, 0.05) 100%);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
}

.visual-title {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-accent);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.visual-title i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #8a2be2 0%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--dark-card);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    aspect-ratio: 4/3;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    cursor: pointer;
}

.video-item video::-webkit-media-controls {
    display: none !important;
}

.video-item video::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-caption {
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.photo-overlay i {
    font-size: 3rem;
    color: var(--accent-gold);
    animation: zoom-pulse 1.5s ease-in-out infinite;
}

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

.visual-description {
    padding: 1.5rem;
    background: rgba(138, 43, 226, 0.1);
    border-left: 4px solid #8a2be2;
    border-radius: 10px;
}

.visual-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.visual-description i {
    color: #8a2be2;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* ===== INTRO VVIP Section (Compact) ===== */
.intro-vvip-section {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 0, 128, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
}

.vvip-header {
    text-align: center;
    margin-bottom: 2rem;
}

.vvip-title {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-accent);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.vvip-title i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.vvip-benefits-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.vvip-cta-compact {
    text-align: center;
}

.cta-button-compact {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff9500 100%);
    color: var(--dark-bg);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.cta-button-compact i:last-child {
    transition: var(--transition-smooth);
}

.cta-button-compact:hover i:last-child {
    transform: translateX(5px);
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-accent);
    color: var(--accent-gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.subsection-title i {
    font-size: 2rem;
}

.floormap-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.floormap-container:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.floormap-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.floormap-container:hover .floormap-image {
    filter: brightness(1.1);
}

.floormap-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    font-style: italic;
}

/* ===== Menu Sections ===== */
.menu-category {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vvip-menu {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.menu-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-accent);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vvip-menu .menu-category-title {
    color: var(--accent-gold);
}

.menu-category-title i {
    font-size: 1.8rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vvip-menu .menu-category-title i {
    background: var(--accent-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-image-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.menu-image-container.main-menu {
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.3);
}

.menu-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 0, 128, 0.3);
}

.vvip-menu .menu-image-container:hover {
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.menu-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.menu-image-container:hover .menu-image {
    filter: brightness(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.menu-image-container:hover .image-overlay,
.floormap-container:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 3rem;
    color: var(--text-primary);
}

.image-overlay span {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.menu-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.menu-notice {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-left: 4px solid var(--secondary-color);
    border-radius: 10px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.menu-notice i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.menu-notice p {
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}

/* ===== Image Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content-wrapper {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s ease;
    cursor: grab;
    transition: transform 0.3s ease;
}

.modal-content:active {
    cursor: grabbing;
}

.modal-content.zoomed {
    cursor: move;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-caption {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10001;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.modal-close:hover {
    color: #ff0080;
    background: rgba(255, 0, 128, 0.2);
    border-color: #ff0080;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

/* ===== Zoom Controls ===== */
.zoom-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

.zoom-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff0080, #ff6b6b);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
}

.zoom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 128, 0.6);
}

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

/* 갤러리 네비게이션 */
.gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 10002;
    pointer-events: none;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.9), rgba(255, 107, 107, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.5);
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 0, 128, 0.7);
    background: linear-gradient(135deg, rgba(255, 0, 128, 1), rgba(255, 107, 107, 1));
}

.gallery-btn:active {
    transform: scale(1.05);
}

.gallery-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    letter-spacing: 1px;
}

.current-index {
    color: var(--accent-pink);
    font-weight: 700;
    font-size: 1.2rem;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .gallery-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .gallery-nav {
        padding: 0 1rem;
    }
    
    .gallery-indicator {
        bottom: 80px;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .current-index {
        font-size: 1.1rem;
    }
}

.download-qr-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff9500 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    font-family: var(--font-main);
}

.download-qr-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
}

.download-qr-btn:active {
    transform: translateY(-1px);
}

.download-qr-btn i {
    font-size: 1.3rem;
}

.download-qr-btn span {
    font-weight: 700;
}

/* ===== Contact Section ===== */
.messenger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.messenger-card {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.messenger-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 128, 0.3);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.3);
}

.messenger-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    transition: var(--transition-smooth);
}

.line-icon {
    background: linear-gradient(135deg, #00c300, #00b900);
    box-shadow: 0 10px 30px rgba(0, 195, 0, 0.4);
}

.wechat-icon {
    background: linear-gradient(135deg, #09b83e, #07a038);
    box-shadow: 0 10px 30px rgba(9, 184, 62, 0.4);
}

.kakao-icon {
    background: linear-gradient(135deg, #ffe812, #ffd900);
    box-shadow: 0 10px 30px rgba(255, 232, 18, 0.4);
}

.messenger-card:hover .messenger-icon {
    transform: scale(1.1) rotate(5deg);
}

.messenger-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.messenger-id {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Segoe UI', 'Apple SD Gothic Neo', sans-serif;
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

.messenger-btn {
    width: 100%;
    padding: 1.1rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.line-btn {
    background: linear-gradient(135deg, #00c300, #00b900);
    color: white;
}

.wechat-btn {
    background: linear-gradient(135deg, #09b83e, #07a038);
    color: white;
}

.kakao-btn {
    background: linear-gradient(135deg, #ffe812, #ffd900);
    color: #3c1e1e;
}

.instagram-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 10px 30px rgba(240, 148, 51, 0.4);
}

.instagram-btn {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.messenger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.contact-info i {
    color: var(--primary-color);
}

/* ===== Guide Section ===== */
.guide-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f0020 100%);
}

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

.guide-card {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.guide-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 128, 0.3);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.3);
}

.guide-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-main);
    border-radius: 50%;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

.guide-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guide-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.guide-notes {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 128, 0.2);
}

.guide-notes h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.guide-notes ul {
    list-style: none;
    display: grid;
    gap: 1.5rem;
}

.guide-notes li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.guide-notes li i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* ===== Footer ===== */
.footer {
    background: #fafafa;
    padding: 3rem 0;
    border-top: 2px solid #f0f0f0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-accent);
    margin-bottom: 1rem;
}

.footer-logo i {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.3rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gradient-main);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.4);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== Notification ===== */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-main);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.5);
    transform: translateY(150px);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 9999;
    font-weight: 600;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* ===== Premium Welcome Popup - White Edition ===== */
.welcome-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 250, 0.97));
    backdrop-filter: blur(25px);
    z-index: 10000;
    animation: fadeIn 0.5s ease;
}

.welcome-popup-overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-popup-premium {
    position: relative;
    max-width: 600px;
    width: 90%;
    background: #ffffff;
    border-radius: 32px;
    padding: 3.5rem 3rem;
    box-shadow: 0 50px 150px rgba(0, 0, 0, 0.15), 
                0 20px 60px rgba(255, 215, 0, 0.2),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 3px solid #ffd700;
    animation: premiumSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes premiumSlideIn {
    0% {
        transform: scale(0.8) translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.welcome-close-premium {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.welcome-close-premium:hover {
    background: #ff0080;
    border-color: white;
    color: white;
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 6px 25px rgba(255, 0, 128, 0.8);
}

.welcome-content-premium {
    text-align: center;
}

/* Welcome Hero Image */
.welcome-hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Club Logos Section */
.club-logos-section {
    margin-top: 2rem;
}

.club-section-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 1.5rem 0 1rem;
    text-align: left;
    padding-left: 0.5rem;
    border-left: 4px solid #ff0080;
}

.club-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.club-logo-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.club-logo-btn:hover {
    border-color: #ff0080;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.2);
}

.club-logo-btn img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
}

.club-logo-btn span {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
}

/* Language Selection Bottom */
.language-selection-bottom {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.lang-btn-small {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn-small:hover {
    border-color: #ff0080;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.2);
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #fff9e6, #fffbf0);
    border: 2px solid #ffd700;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #d4a500;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.welcome-badge i {
    font-size: 1.1rem;
    color: #ffd700;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

.welcome-title-premium {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #1a1a1a, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.2;
}

.welcome-subtitle-premium {
    font-size: 1.15rem;
    color: #666;
    margin: 0 0 2.5rem 0;
    line-height: 1.7;
    font-weight: 500;
}

.language-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.lang-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.8rem 1.5rem;
    background: #ffffff;
    border: 3px solid #f0f0f0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 0, 128, 0.1));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.lang-btn:hover::before {
    opacity: 1;
}

.lang-btn:hover {
    border-color: #ffd700;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25);
}

.lang-flag {
    font-size: 3rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.lang-name {
    color: #2a2a2a;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.popup-close-24h {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.05));
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.popup-close-24h:hover {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.08), rgba(255, 0, 128, 0.12));
    border-color: rgba(255, 0, 128, 0.3);
    color: #ff0080;
    transform: translateY(-2px);
}

.popup-close-24h i {
    font-size: 1rem;
}

.welcome-btn-premium {
    width: 100%;
    background: linear-gradient(135deg, #ff0080, #ff4d94);
    color: white;
    border: none;
    padding: 1.4rem 2rem;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(255, 0, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.welcome-btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(255, 0, 128, 0.45);
    background: linear-gradient(135deg, #ff1a8c, #ff5fa0);
}

.welcome-btn-premium i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.welcome-btn-premium:hover i {
    transform: translateX(6px);
}

.welcome-note {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    /* Mobile Navigation Restructure */
    nav {
        flex-direction: column;
        padding: 0.8rem 1rem;
        gap: 0.5rem;
        height: auto;
    }

    .nav-left {
        width: 100%;
        justify-content: center;
        order: 1;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid rgba(255, 0, 128, 0.1);
    }

    .logo {
        font-size: 1.2rem;
        display: flex;
    }

    .nav-menu {
        width: 100%;
        justify-content: space-around;
        order: 2;
        display: flex;
        flex-direction: row;
        padding: 0.5rem 0;
        gap: 0.5rem;
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .nav-menu > li {
        flex: 1;
    }

    .nav-menu > li > a {
        font-size: 0.85rem;
        padding: 0.6rem 0.4rem;
        text-align: center;
        white-space: nowrap;
    }

    .nav-right {
        position: absolute;
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
        order: 3;
    }

    .language-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .language-btn span {
        display: none;
    }

    .language-btn i:first-child {
        font-size: 1.2rem;
    }

    .language-menu {
        right: 0;
        min-width: 160px;
    }

    .mobile-toggle {
        display: none;
    }

    /* Admin Link Mobile */
    .admin-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .admin-link span {
        display: none;
    }

    .admin-link i {
        font-size: 1.2rem;
    }

    /* Mobile Menu Close Button */
    .mobile-menu-close {
        display: none;
    }

    /* Mobile Dropdown - Hamburger Menu */
    .dropdown-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        transition: left 0.3s ease;
        border: none;
        border-radius: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 255, 0.98) 100%);
        backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 10px 40px rgba(255, 0, 128, 0.15);
        padding: 4rem 2rem 2rem;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        visibility: hidden;
    }

    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
        background: #ffffff;
        border: 2px solid #f0f0f0;
        border-radius: 50%;
        color: #666;
        font-size: 1.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10000;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-close:hover {
        background: #fff0f5;
        border-color: #ff0080;
        color: #ff0080;
        transform: rotate(90deg);
        box-shadow: 0 6px 20px rgba(255, 0, 128, 0.3);
    }

    .dropdown.active .dropdown-menu {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-toggle {
        width: auto;
        justify-content: center;
        position: relative;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-link {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 0, 128, 0.1);
        transition: all 0.3s ease;
    }

    .dropdown-link:hover {
        background: rgba(255, 0, 128, 0.08);
        padding-left: 2rem;
    }
    
    .nav-club-logo {
        width: 28px;
        height: 28px;
    }

    .coming-soon {
        font-size: 0.6rem;
        padding: 2px 6px;
        display: inline-block;
        margin-left: 0.3rem;
    }

    /* Mobile - Prevent text wrap on nav items */
    .nav-menu > li > a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Mobile Club Cards - Simplified Grid Layout */
    .clubs-section .container {
        padding: 2rem 1rem;
    }

    .clubs-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .other-clubs-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 2rem 1.5rem;
        border: 2px solid #e0e0e0;
        border-radius: 15px;
    }

    .other-club-thumbnail .club-header {
        padding: 1.5rem;
    }

    .other-club-thumbnail .club-logo {
        min-height: 80px;
    }

    .other-club-thumbnail .club-logo img {
        max-height: 80px;
        max-width: 160px;
    }

    .other-club-thumbnail .club-name {
        font-size: 1.3rem;
    }

    .other-club-thumbnail .club-tagline {
        font-size: 0.8rem;
    }

    .club-card {
        margin-bottom: 0;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .club-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 0;
        gap: 0.8rem;
        padding: 1.5rem;
        background: #ffffff;
        border-radius: 20px;
        border: 2px solid #f0f0f0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .club-logo {
        min-height: 100px;
    }

    .club-logo img {
        max-height: 100px;
        max-width: 200px;
    }

    .club-title-section {
        width: 100%;
        text-align: center;
    }

    .club-name {
        font-size: 1.3rem;
        margin-bottom: 0;
        color: #1a1a1a;
    }

    .club-tagline {
        font-size: 0.75rem;
        color: rgba(0, 0, 0, 0.6);
    }

    .club-content {
        display: none;
    }

    .club-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .menu-category-title {
        font-size: 1.3rem;
    }

    .intro-banner-grid {
        gap: 1.5rem;
    }

    .banner-item {
        padding: 1.5rem;
    }

    .banner-item:hover {
        transform: translateY(-5px);
    }

    .banner-content {
        gap: 1.5rem;
    }

    .banner-icon {
        width: 60px;
        height: 60px;
    }

    .banner-icon i {
        font-size: 2rem;
    }

    .banner-text h5 {
        font-size: 1.5rem;
    }

    .banner-text p {
        font-size: 1rem;
    }

    .banner-arrow {
        width: 50px;
        height: 50px;
    }

    .banner-arrow i {
        font-size: 1.5rem;
    }

    .intro-visual-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .visual-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .visual-title i {
        font-size: 1.8rem;
    }

    .intro-videos {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .intro-photos {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .visual-description {
        padding: 1.2rem;
    }

    .visual-description p {
        flex-direction: column;
        text-align: center;
    }

    .intro-vvip-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .vvip-title {
        font-size: 1.5rem;
    }

    .vvip-title i {
        font-size: 1.8rem;
    }

    .vvip-benefits-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .benefit-item i {
        font-size: 1.8rem;
    }

    .cta-button-compact {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .intro-banner-grid {
        grid-template-columns: 1fr;
    }

    .intro-banner-grid-compact {
        grid-template-columns: 1fr;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 35px;
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .download-qr-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .download-qr-btn i {
        font-size: 1.2rem;
    }

    .welcome-popup-premium {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        padding: 1.5rem;
        overflow-y: auto;
        border-radius: 0;
        border: none;
    }

    .welcome-hero-image {
        border-radius: 16px;
        margin-bottom: 1.5rem;
    }

    .club-section-title {
        font-size: 1rem;
        margin: 1.2rem 0 0.8rem;
    }

    .club-logo-btn {
        padding: 1.2rem 0.8rem;
        gap: 0.6rem;
    }

    .club-logo-btn img {
        width: 60px;
        height: 60px;
    }

    .club-logo-btn span {
        font-size: 0.9rem;
    }

    .language-selection-bottom {
        gap: 0.6rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .lang-btn-small {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .welcome-close-premium {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
        font-size: 20px;
        border-width: 2px;
    }

    .welcome-title-premium {
        font-size: 1.6rem;
        letter-spacing: -0.5px;
        margin-bottom: 0.5rem;
    }

    .welcome-subtitle-premium {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .welcome-badge {
        font-size: 0.6rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1rem;
        letter-spacing: 1.5px;
    }

    .welcome-badge i {
        font-size: 0.85rem;
    }

    .language-selection {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .lang-btn {
        padding: 1.2rem 0.8rem;
    }

    .lang-flag {
        font-size: 2.2rem;
    }

    .lang-name {
        font-size: 0.9rem;
    }

    .popup-close-24h {
        font-size: 0.85rem;
        padding: 0.9rem 1.2rem;
    }

    .popup-close-24h i {
        font-size: 0.9rem;
    }

    .feature-item {
        padding: 1rem 1.3rem;
        border-radius: 12px;
    }

    .feature-item i {
        font-size: 1.4rem;
        min-width: 30px;
    }

    .feature-item span {
        font-size: 0.95rem;
    }

    .welcome-btn-premium {
        padding: 1.2rem 1.8rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    .welcome-note {
        font-size: 0.85rem;
    }

    .messenger-grid {
        grid-template-columns: 1fr;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .club-photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .club-card {
        padding: 1.5rem;
    }

    .featured-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .banner-item {
        padding: 1.2rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }

    .banner-icon {
        margin: 0 auto;
    }

    .banner-text h5 {
        font-size: 1.3rem;
    }

    .banner-text p {
        font-size: 0.95rem;
    }

    .banner-arrow {
        margin: 0 auto;
        width: 45px;
        height: 45px;
    }

    .intro-visual-section {
        padding: 1.2rem;
    }

    .visual-title {
        font-size: 1.3rem;
    }

    .visual-title i {
        font-size: 1.6rem;
    }

    .intro-videos {
        gap: 1rem;
    }

    .intro-photos {
        gap: 1rem;
    }

    .photo-overlay i {
        font-size: 2.5rem;
    }

    .visual-description {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .visual-description i {
        font-size: 1.1rem;
    }

    .intro-vvip-section {
        padding: 1.2rem;
    }

    .vvip-title {
        font-size: 1.3rem;
        flex-direction: column;
    }

    .vvip-title i {
        font-size: 1.6rem;
    }

    .benefit-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .benefit-item i {
        font-size: 1.6rem;
    }

    .benefit-item strong {
        font-size: 0.9rem;
    }

    .benefit-item p {
        font-size: 0.8rem;
    }

    .cta-button-compact {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .banner-item-compact {
        padding: 1rem;
    }

    .banner-item-compact i:first-child {
        font-size: 1.5rem;
    }

    .banner-item-compact span {
        font-size: 1rem;
    }
}