@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
    --black: #000000;
    --black-soft: #080808;
    --black-light: #0f0f0f;
    --pink-primary: #ff6b9d;
    --pink-light: #ffcce0;
    --pink-glow: rgba(255, 107, 157, 0.4);
    --pink-dark: #c94b7c;
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.85);
    --white-dim: rgba(255, 255, 255, 0.5);
    --gray: #666666;
    --gray-dark: #444444;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

::selection {
    background: var(--pink-primary);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink-dark);
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0 1.5rem;
    z-index: 1000;
    transition: all 0.5s var(--transition-smooth);
    overflow: visible;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border-bottom-color: rgba(255, 107, 157, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    height: 64px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--transition-smooth);
    border-radius: 2px;
    position: relative;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--white-dim);
    position: relative;
    padding: 6px 0;
    transition: all 0.4s var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--pink-primary);
    transition: width 0.4s var(--transition-smooth);
}

.nav-link:hover {
    color: var(--white);
}

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

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    display: block;
    transition: all 0.3s var(--transition-smooth);
}

.logo:hover {
    opacity: 0.85;
}

.logo img {
    height: 28px;
    filter: drop-shadow(0 2px 10px rgba(255, 107, 157, 0.2));
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 6px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--white-dim);
    transition: all 0.35s var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--pink-primary);
    border-color: var(--pink-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.35);
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--black);
    padding: 120px 2rem 80px;
    position: relative;
    overflow: hidden;
}

/* Dynamic background layers */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(255, 107, 157, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 15% 90%, rgba(255, 107, 157, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse 70% 50% at 85% 90%, rgba(255, 182, 193, 0.06) 0%, transparent 40%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Animated particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--pink-light);
    border-radius: 50%;
    opacity: 0;
    animation: float 15s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 35%; top: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; top: 70%; animation-delay: 1s; }
.particle:nth-child(5) { left: 65%; top: 40%; animation-delay: 3s; }
.particle:nth-child(6) { left: 80%; top: 80%; animation-delay: 5s; }
.particle:nth-child(7) { left: 90%; top: 25%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 75%; top: 55%; animation-delay: 4.5s; }

@keyframes float {
    0% { 
        opacity: 0; 
        transform: translateY(100vh) scale(0);
    }
    10% { 
        opacity: 0.6; 
    }
    90% { 
        opacity: 0.6; 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-100px) scale(1);
    }
}

/* Subtle noise texture */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    mix-blend-mode: overlay;
}

/* Cinematic light rays */
.hero-rays {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translateX(-50%);
    background: 
        conic-gradient(from 180deg at 50% 0%, 
            transparent 0deg, 
            rgba(255, 107, 157, 0.03) 10deg, 
            transparent 20deg,
            transparent 160deg,
            rgba(255, 107, 157, 0.02) 170deg,
            transparent 180deg);
    animation: rotateRays 60s linear infinite;
    pointer-events: none;
}

@keyframes rotateRays {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    letter-spacing: 12px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: heroTitleIn 1.2s var(--transition-smooth) forwards;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 0 60px rgba(255, 107, 157, 0.3);
}

@keyframes shimmerText {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

@keyframes heroTitleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    animation: fadeUp 1s var(--transition-smooth) 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s var(--transition-smooth) 0.7s forwards;
    opacity: 0;
    transform: translateY(20px);
    width: 100%;
    padding: 0 1rem;
}

.btn {
    padding: 1rem 2.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--pink-primary);
    background: rgba(255, 107, 157, 0.1);
    transform: translateY(-3px);
}

/* ==================== SECTIONS ==================== */
section {
    padding: 120px 2rem;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 5rem;
    color: var(--white);
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--pink-primary);
}

/* ==================== MEMBERS ==================== */
.members {
    background: var(--black-soft);
    position: relative;
}

.members::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.member-card {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 2rem 1.2rem;
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-primary), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--transition-smooth);
}

.member-card:hover::before {
    opacity: 1;
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 157, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.member-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    border: 2px solid rgba(255, 107, 157, 0.2);
    transition: all 0.5s var(--transition-smooth);
    filter: grayscale(20%);
}

.member-card:hover img {
    transform: scale(1.05);
    border-color: var(--pink-primary);
    filter: grayscale(0%);
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.3);
}

.member-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.member-card p {
    color: var(--gray);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* ==================== MUSIC ==================== */
.music {
    background: var(--black);
    position: relative;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
}

.music-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.music-item {
    flex: 1;
    min-width: 260px;
    max-width: 380px;
    transition: all 0.5s var(--transition-smooth);
}

.music-item img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s var(--transition-smooth);
}

.music-item:hover img {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6);
}

/* ==================== VIDEO ==================== */
.video-section {
    background: var(--black-soft);
    position: relative;
}

.video-container {
    max-width: 850px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    background: var(--black-light);
    border: 1px solid var(--glass-border);
}

.video-container video {
    width: 100%;
    display: block;
    background: var(--black);
}

/* ==================== TOUR ==================== */
.tour-section {
    padding: 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.tour-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 70%, var(--black) 100%);
    z-index: 2;
    pointer-events: none;
}

.tour-section video {
    width: 100%;
    display: block;
    max-height: 50vh;
    object-fit: cover;
}

/* ==================== SUBSCRIBE ==================== */
.subscribe-section {
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

.subscribe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.subscribe-card {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--glass-border);
    position: relative;
    backdrop-filter: blur(30px);
}

.subscribe-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    font-weight: 400;
}

.subscribe-card > p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.subscribe-form input,
.subscribe-form select {
    padding: 1rem 1.3rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s var(--transition-smooth);
}

.subscribe-form input::placeholder {
    color: var(--gray-dark);
}

.subscribe-form input:focus,
.subscribe-form select:focus {
    outline: none;
    border-color: var(--pink-primary);
    background: rgba(0, 0, 0, 0.5);
}

.subscribe-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2rem;
}

.subscribe-form select option {
    background: var(--black-light);
    color: var(--white);
}

.subscribe-form .btn {
    margin-top: 0.5rem;
    width: 100%;
    background: linear-gradient(135deg, var(--pink-primary), var(--pink-dark));
    color: var(--white);
}

.subscribe-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.subscribe-badge {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--pink-light);
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.subscribe-card h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.subscribe-card > p {
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.form-row {
    display: flex;
    gap: 0.8rem;
}

.form-row input {
    flex: 1;
}

.subscribe-benefits {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0.5rem 0 1.5rem;
}

.subscribe-benefits span {
    font-size: 0.75rem;
    color: var(--white-dim);
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.subscribe-privacy {
    font-size: 0.7rem;
    color: var(--gray-dark);
    margin-top: 1rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--black);
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer img {
    width: 100px;
    margin-bottom: 1.5rem;
    opacity: 0.4;
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s var(--transition-smooth);
}

.footer:hover img {
    opacity: 0.6;
    filter: grayscale(100%) brightness(2.5);
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--white-dim);
    transition: all 0.3s var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--pink-primary);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.footer p {
    color: var(--gray-dark);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .header-center {
        display: none;
    }
    
    .header-inner {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 1.5rem;
    }
    
    .header-inner {
        height: 64px;
    }
    
    .menu-toggle {
        display: flex;
        order: -1;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(40px);
        flex-direction: column;
        padding: 1.2rem;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .logo img {
        height: 24px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 100px 1.5rem 60px;
    }
    
    .hero-title {
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        letter-spacing: 4px;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.85rem 2rem;
        font-size: 0.65rem;
    }
    
    section {
        padding: 80px 1.5rem;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .member-card {
        padding: 1.5rem 1rem;
    }
    
    .member-card img {
        width: 100px;
        height: 100px;
    }
    
    .member-card h3 {
        font-size: 1.2rem;
    }
    
    .music-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .music-item {
        min-width: 100%;
    }
    
    .subscribe-card {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .subscribe-benefits {
        gap: 0.5rem;
    }
    
    .subscribe-benefits span {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0 1rem;
    }
    
    .header-inner {
        height: 58px;
    }
    
    .nav-menu {
        padding: 1rem;
    }
    
    .logo img {
        height: 20px;
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 90px 1rem 50px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        padding: 0.8rem 1.2rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .member-card {
        padding: 1.8rem 1.2rem;
    }
    
    .member-card img {
        width: 120px;
        height: 120px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .subscribe-card {
        padding: 1.8rem 1.2rem;
    }
    
    .subscribe-form input,
    .subscribe-form select {
        padding: 0.9rem 1rem;
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .subscribe-card h2 {
        font-size: 1.4rem;
    }
}

/* ==================== CONTENT ADDED: HERO BANNER ==================== */
.hero-banner {
    position: relative;
    max-width: 600px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
}

.banner-slides {
    position: relative;
    height: 250px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
}

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

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.banner-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: left;
}

.banner-label {
    display: inline-block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pink-primary);
    margin-bottom: 0.5rem;
}

.banner-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.banner-text p {
    font-size: 0.75rem;
    color: var(--white-dim);
    margin-bottom: 0.8rem;
}

.banner-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.65rem;
}

.banner-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--pink-primary);
    transform: scale(1.2);
}

/* ==================== CONTENT ADDED: COUNTDOWN TIMER ==================== */
.countdown-container {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-label {
    text-align: center;
    font-size: 0.75rem;
    color: var(--pink-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    text-align: center;
    min-width: 70px;
}

.countdown-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.countdown-text {
    font-size: 0.6rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== CONTENT ADDED: QUOTE CAROUSEL ==================== */
.quote-carousel {
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.quote-track {
    display: flex;
    animation: quoteSlide 16s infinite;
}

.quote-slide {
    flex: 0 0 100%;
    text-align: center;
    padding: 1rem;
}

.quote-text {
    font-size: 0.9rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.quote-author {
    font-size: 0.7rem;
    color: var(--pink-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes quoteSlide {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-100%); }
    50%, 70% { transform: translateX(-200%); }
    75%, 95% { transform: translateX(-300%); }
    100% { transform: translateX(0); }
}

/* ==================== CONTENT ADDED: INSTAGRAM FEED ==================== */
.instagram-feed {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--white-dim);
    font-size: 0.8rem;
}

.instagram-header i {
    color: var(--pink-primary);
    font-size: 1.2rem;
}

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

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.instagram-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: opacity 0.3s ease;
}

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

.instagram-overlay i {
    font-size: 1.5rem;
    color: var(--white);
}

/* ==================== CONTENT ADDED: MEMBER DETAILS ==================== */
.member-details {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    text-align: left;
}

.member-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--white-dim);
    margin-bottom: 0.4rem;
}

.member-info-row span:first-child {
    color: var(--gray);
}

.member-solo {
    margin-top: 0.8rem;
    font-size: 0.65rem;
}

.member-solo span {
    color: var(--gray);
}

.member-solo a {
    color: var(--pink-primary);
    transition: color 0.3s ease;
}

.member-solo a:hover {
    color: var(--pink-light);
}

.member-social {
    margin-top: 0.8rem;
}

.member-insta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    color: var(--white-dim);
    transition: color 0.3s ease;
}

.member-insta:hover {
    color: var(--pink-primary);
}

.member-insta i {
    font-size: 0.9rem;
}

.member-profile-btn {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.65rem;
}

/* ==================== CONTENT ADDED: MEMBER MODAL ==================== */
.member-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.member-modal.active {
    display: flex;
}

.modal-content {
    background: var(--black-light);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--glass-border);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--white-dim);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--pink-primary);
}

.modal-gallery {
    margin-bottom: 2rem;
}

.modal-gallery h3,
.modal-video h3,
.modal-fact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.modal-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.modal-images img {
    border-radius: 10px;
    aspect-ratio: 1;
    object-fit: cover;
}

.modal-video {
    margin-bottom: 2rem;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 10px;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.fun-fact-text {
    font-size: 0.9rem;
    color: var(--white-dim);
    font-style: italic;
}

/* ==================== CONTENT ADDED: MUSIC SECTIONS ==================== */
.subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.subsection-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--pink-primary);
    margin: 0.8rem auto 0;
}

.discography-section {
    margin-bottom: 3rem;
    width: 100%;
}

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

.album-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

.album-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.album-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.album-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.album-info h4 {
    font-size: 0.8rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.album-info span {
    font-size: 0.65rem;
    color: var(--gray);
}

.top-songs-section {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.top-songs-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.song-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: var(--glass-bg);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.song-row-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.song-row-link .song-item:hover {
    background: rgba(255, 105, 180, 0.1);
    transform: translateX(5px);
}

.song-item:hover {
    border-color: var(--pink-primary);
    transform: translateX(5px);
}

.song-rank {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--pink-primary);
    min-width: 25px;
}

.song-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.song-title {
    font-size: 0.85rem;
    color: var(--white);
}

.song-streams {
    font-size: 0.7rem;
    color: var(--gray);
}

.spotify-section {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.spotify-embed {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.lyrics-section {
    margin-bottom: 3rem;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.lyrics-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.lyrics-box p {
    font-size: 0.8rem;
    color: var(--white-dim);
    line-height: 2;
}

.lyrics-highlight {
    color: var(--pink-primary) !important;
    font-weight: 500;
}

/* ==================== CONTENT ADDED: VIDEO TABS ==================== */
.video-tabs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.video-tabs {
    display: flex;
    gap: 0.5rem;
}

.video-tab {
    padding: 0.8rem 1.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white-dim);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-tab:hover {
    border-color: var(--pink-primary);
    color: var(--white);
}

.video-tab.active {
    background: var(--pink-primary);
    border-color: var(--pink-primary);
    color: var(--white);
}

.video-filter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-filter label {
    font-size: 0.7rem;
    color: var(--white-dim);
}

.video-filter select {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--white);
    font-size: 0.75rem;
    cursor: pointer;
}

.video-tab-content {
    display: none;
    margin-bottom: 2rem;
}

.video-tab-content.active {
    display: block;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.video-card {
    background: var(--glass-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink-primary);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--pink-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.video-play-btn i {
    font-size: 1.5rem;
    color: var(--white);
    margin-left: 3px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255,107,157,0.4);
}

.video-info {
    padding: 1rem;
}

.video-info h4 {
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.video-info span {
    font-size: 0.65rem;
    color: var(--gray);
}

/* ==================== CONTENT ADDED: SUBSCRIBE ENHANCEMENTS ==================== */
.language-options {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    padding: 0.8rem;
    background: var(--glass-bg);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.language-label {
    font-size: 0.75rem;
    color: var(--white-dim);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    font-size: 0.7rem;
    color: var(--white-dim);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--pink-primary);
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: #5865F2;
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88,101,242,0.4);
}

.discord-btn i {
    font-size: 1.1rem;
}

/* ==================== CONTENT ADDED: MERCHANDISE SECTION ==================== */
.merch-section {
    background: var(--black-soft);
    padding: 120px 2rem;
    position: relative;
}

.merch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.merch-card {
    background: var(--glass-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.merch-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,107,157,0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.merch-image {
    aspect-ratio: 1;
    overflow: hidden;
}

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

.merch-card:hover .merch-image img {
    transform: scale(1.1);
}

.merch-info {
    padding: 1.5rem;
    text-align: center;
}

.merch-info h4 {
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.merch-price {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--pink-primary);
    margin-bottom: 1rem;
}

.merch-btn {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.65rem;
}

/* ==================== CONTENT ADDED: TOUR MAP SECTION ==================== */
.tour-map-section {
    background: var(--black);
    padding: 120px 2rem;
    position: relative;
}

.tour-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
}

.tour-map-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

#tour-map {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.tour-cities {
    display: none;
}

/* ==================== CONTENT ADDED: FOOTER UPDATE ==================== */
.footer-follow {
    font-size: 0.75rem;
    color: var(--white-dim);
    margin-bottom: 1rem;
}

/* ==================== RESPONSIVE FOR NEW CONTENT ==================== */
@media (max-width: 768px) {
    .hero-banner {
        max-width: 100%;
    }

    .banner-slides {
        height: 200px;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 55px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .discography-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-tabs-container {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .banner-slides {
        height: 180px;
    }

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

    .countdown-container {
        padding: 1rem;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .quote-text {
        font-size: 0.8rem;
    }

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

    .discography-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-tab {
        padding: 0.6rem 1rem;
        font-size: 0.6rem;
    }

    #tour-map {
        height: 300px;
    }
}

/* ==================== FIXED: MOBILE LAYOUT STYLES ==================== */
.hero-carousel-mobile { position: relative; height: 250px; overflow: hidden; border-radius: 12px; margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-text { position: absolute; bottom: 15px; left: 15px; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
.slide-text h3 { font-size: 0.7rem; color: #ff69b4; text-transform: uppercase; letter-spacing: 2px; margin: 0; }
.slide-text h2 { font-size: 1.2rem; margin: 0.5rem 0; font-family: 'Playfair Display', serif; }
.slide-text p { font-size: 0.8rem; margin: 0 0 0.8rem 0; color: rgba(255,255,255,0.8); }
.slide-text .btn { padding: 0.5rem 1rem; font-size: 0.65rem; }

.countdown-container-mobile { text-align: center; margin: 1.5rem 0; padding: 1rem; background: rgba(255,255,255,0.05); border-radius: 12px; max-width: 500px; margin-left: auto; margin-right: auto; }
.countdown-container-mobile h4 { font-size: 0.7rem; color: #ff69b4; text-transform: uppercase; letter-spacing: 2px; margin: 0 0 0.8rem 0; }
.countdown-timer { display: flex; justify-content: center; gap: 0.5rem; }
.time-box { background: rgba(255,255,255,0.1); padding: 0.5rem; border-radius: 6px; min-width: 50px; }
.time-box span { font-size: 1rem; font-weight: bold; display: block; color: white; animation: pulse-number 1s infinite alternate ease-in-out; }

@keyframes pulse-number {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.05); opacity: 1; text-shadow: 0 0 8px rgba(255, 105, 180, 0.6); }
}
.time-box small { font-size: 0.5rem; color: #888; text-transform: uppercase; }

.quote-mobile { text-align: center; font-style: italic; margin: 1.5rem 0; color: #ff69b4; font-size: 0.9rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.quote-mobile blockquote { margin: 0; }

.instagram-feed-mobile { margin-top: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.instagram-feed-mobile h4 { font-size: 0.8rem; color: #888; text-align: center; margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.instagram-feed-mobile h4 i { color: #ff69b4; }
.insta-grid-mobile { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.3rem; }
.insta-grid-mobile img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; }

.member-details-mobile { display: none; padding: 0.5rem; font-size: 0.75rem; text-align: left; }
.member-card:hover .member-details-mobile { display: block; }
.member-details-mobile p { margin: 0.3rem 0; color: #aaa; }
.member-details-mobile strong { color: #fff; }

.btn-small { padding: 0.4rem 0.8rem; font-size: 0.6rem; margin-top: 0.5rem; }

.modal-mobile { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.95); }
.modal-content-mobile { background: #1a1a1a; margin: 5% auto; padding: 1.5rem; border-radius: 12px; max-width: 90%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-content-mobile h2 { font-family: 'Playfair Display', serif; color: #ff69b4; text-align: center; margin: 0 0 1rem 0; }
.modal-content-mobile p { font-size: 0.85rem; color: #ccc; margin: 0.5rem 0; }
.modal-content-mobile em { color: #ff69b4; font-style: italic; }
.close-mobile { position: absolute; top: 10px; right: 15px; font-size: 1.8rem; cursor: pointer; color: #ff69b4; line-height: 1; }

.tour-link-mobile { text-align: center; margin: 1.5rem 0; font-size: 0.9rem; }

.tour-map-fixed { padding: 1rem; }
.tour-cities-list { list-style: none; padding: 0; margin: 0; }
.tour-cities-list li { padding: 0.8rem 0; border-bottom: 1px solid #333; font-size: 0.85rem; color: #ccc; }
.tour-cities-list li:last-child { border-bottom: none; }

.discography-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; max-width: 500px; margin: 0 auto 2rem; }
.album-card img { width: 100%; border-radius: 8px; }
.album-info { margin-top: 0.5rem; }
.album-info h4 { font-size: 0.75rem; margin: 0; color: #fff; }
.album-info span { font-size: 0.65rem; color: #888; }

.top-songs-list { max-width: 500px; margin: 0 auto; }

@media (max-width: 768px) {
    .hero-carousel-mobile { height: 200px; }
    .insta-grid-mobile { grid-template-columns: repeat(2, 1fr); }
    .discography-grid { grid-template-columns: repeat(2, 1fr); }
    .merch-grid { grid-template-columns: repeat(2, 1fr); }
    .video-tabs { flex-wrap: wrap; justify-content: center; }
    .tour-map-container { padding: 0 1rem; }
}

@media (max-width: 400px) {
    .hero-carousel-mobile { height: 180px; }
    .slide-text h2 { font-size: 1rem; }
    .countdown-timer { gap: 0.3rem; }
    .time-box { min-width: 45px; padding: 0.4rem; }
    .time-box span { font-size: 0.9rem; }
    .modal-content-mobile { margin: 2% auto; padding: 1rem; }
}

/* ==================== POLISH: HOME SPACING ==================== */
.home-content > * { margin-bottom: 3rem; }

@media (min-width: 769px) {
    .hero-carousel-mobile { height: 400px; max-width: 800px; margin: 0 auto 2rem; }
    .hero-carousel-mobile .slide-text h2 { font-size: 1.8rem; }
    .hero-carousel-mobile .slide-text .btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .home-content > * { margin-bottom: 1.5rem; }
    .carousel-slide .btn-primary { font-size: 0.8rem; padding: 0.5rem 1rem; }
}

/* ==================== POLISH: BUTTONS ==================== */
.btn-small { background: transparent; border: 1px solid #ff69b4; color: #ff69b4; padding: 0.3rem 0.8rem; border-radius: 20px; cursor: pointer; margin-top: 0.5rem; min-height: 48px; transition: all 0.3s; }
.btn-small:hover { background: #ff69b4; color: #000; }

/* ==================== POLISH: ALBUM GRID ==================== */
.album-grid-fixed { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1.5rem; align-items: start; }

/* ==================== POLISH: SPOTIFY LINK ==================== */
.spotify-link { text-align: center; padding: 1rem; background: rgba(255,255,255,0.05); border-radius: 12px; }
.spotify-link a { font-size: 1.1rem; transition: all 0.3s; }
.spotify-link a:hover { transform: translateX(5px); }

/* ==================== POLISH: VIDEO TABS ==================== */
.video-tab { min-height: 48px; }
.video-tab-content { margin-bottom: 1.5rem; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; }

/* ==================== POLISH: TOUR CITIES ==================== */
.tour-cities-expanded { margin: 2rem 0; }
.city-item { padding: 0.8rem 0; border-bottom: 1px solid #333; display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: #ccc; }
.city-item .pin { color: #ff69b4; font-size: 1.2rem; }
.city-item:last-child { border-bottom: none; }

/* ==================== POLISH: JOIN FORM ==================== */
.join-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin: 2rem 0; }
.join-form-grid input, .join-form-grid select { min-height: 48px; }

.language-selector { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1rem 0; align-items: center; }
.language-selector .language-label { font-size: 0.8rem; color: #888; }
.lang-btn { background: transparent; border: 1px solid #555; color: white; padding: 0.5rem 1rem; border-radius: 20px; cursor: pointer; min-height: 48px; font-size: 0.8rem; transition: all 0.3s; }
.lang-btn:hover { border-color: #ff69b4; }
.lang-btn.active { background: #ff69b4; color: #000; border-color: #ff69b4; }

.success-message { animation: fadeIn 0.5s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==================== POLISH: MERCH ==================== */
.merch-grid-mobile { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0; max-width: 600px; margin-left: auto; margin-right: auto; }
.product-card { background: rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden; text-align: center; padding-bottom: 1rem; }
.product-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-card h4 { font-size: 0.9rem; margin: 0.8rem 0 0.5rem; color: #fff; }
.product-card .price { color: #ff69b4; font-weight: bold; font-size: 1.1rem; margin: 0.5rem 0; }
.btn-cart { background: transparent; border: 1px solid #ff69b4; color: #ff69b4; padding: 0.5rem 1rem; border-radius: 20px; cursor: pointer; font-size: 0.8rem; min-height: 48px; transition: all 0.3s; width: 80%; }
.btn-cart:hover { background: #ff69b4; color: #000; }
.load-more-btn { display: block; margin: 1.5rem auto; max-width: 200px; min-height: 48px; }

@media (max-width: 400px) {
    .merch-grid-mobile { grid-template-columns: 1fr; }
    .join-form-grid { grid-template-columns: 1fr; }
    .album-grid-fixed { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1920px) {
    .hero-carousel-mobile { max-width: 1000px; height: 500px; }
    .merch-grid-mobile { max-width: 800px; grid-template-columns: repeat(4, 1fr); }
    .join-form-grid { grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 2rem auto; }
}

/* ======================================== */
/* CENTER CROWN LOGO ON MOBILE (≤768px)     */
/* ======================================== */
@media (max-width: 768px) {
    .footer img[alt="BLACKPINK"] {
        width: 60px !important;
        height: auto !important;
        margin: 0 auto 1rem auto !important;
        display: block !important;
        opacity: 0.9;
    }
    
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .footer .footer-follow,
    .footer p {
        text-align: center;
    }
    
    .footer-social,
    .footer .footer-social {
        justify-content: center;
        gap: 0.8rem;
        margin: 0.5rem 0;
    }
}

/* ======================================== */
/* CENTER CROWN LOGO ON DESKTOP (≥769px)    */
/* ======================================== */
@media (min-width: 769px) {
    .footer-logo-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .footer-logo-container img {
        width: 80px !important;
        height: auto !important;
        opacity: 0.9 !important;
        margin-bottom: 1.5rem;
    }
}

/* Responsive iframes for member modals on mobile */
@media (max-width: 768px) {
    .modal-content-mobile iframe {
        height: 180px !important;
    }
}