/* ============================================
   HUNTRIX-V2 - K-POP DESIGN SYSTEM
   Optimized CSS (~600 lines)
   ============================================ */

/* === CSS VARIABLES === */
:root {
    /* K-POP Neon Colors */
    --primary: #ff0080;
    --primary-light: #ff3399;
    --primary-glow: rgba(255, 0, 128, 0.4);
    --secondary: #00f0ff;
    --secondary-glow: rgba(0, 240, 255, 0.3);
    --accent: #ff3366;

    /* Dark Theme */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a24;

    /* Text */
    --text: #ffffff;
    --text-muted: #a0a0b8;
    --text-dim: #6a6a80;

    /* Gradients */
    --grad-hero: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --grad-amazon: linear-gradient(135deg, #ff9900, #ffb347);

    /* Typography */
    --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --fs-hero: clamp(2.5rem, 8vw + 1rem, 7.5rem);
    --fs-h1: clamp(2rem, 4vw + 1rem, 3rem);
    --fs-h2: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
    --fs-h3: clamp(1.125rem, 2vw + 0.25rem, 1.5rem);
    --fs-body: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    --fs-small: 0.875rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-section: clamp(4rem, 10vw, 6rem);

    /* Layout */
    --container: 75rem;
    --radius: 1rem;
    --radius-lg: 1.5rem;
    --radius-pill: 3rem;

    /* Effects */
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px var(--primary-glow);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

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

ul, ol {
    list-style: none;
}

/* === UTILITIES === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font);
    font-size: var(--fs-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--grad-hero);
    color: var(--text);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-amazon {
    background: var(--grad-amazon);
    color: #000;
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.35);
}

.btn-amazon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.5);
}

/* === LANGUAGE SELECTOR === */
.lang-nav {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 1001;
    display: flex;
    gap: 0.5rem;
}

.lang-nav a {
    padding: 0.5rem 1rem;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    color: var(--secondary);
    font-size: var(--fs-small);
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(0, 240, 255, 0.3);
    transition: all var(--transition);
}

.lang-nav a:hover,
.lang-nav a[aria-current="page"] {
    background: var(--secondary);
    color: var(--bg-dark);
    border-color: var(--secondary);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(5, 5, 8, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-menu a {
    font-size: var(--fs-small);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-hero);
    transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text);
}

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

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

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 0, 128, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: var(--fs-hero);
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch-skew 4s infinite linear alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.glitch::before {
    left: 3px;
    text-shadow: -3px 0 var(--primary);
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    animation: glitch-top 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -3px;
    text-shadow: 3px 0 var(--secondary);
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    animation: glitch-bottom 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-top {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
}

@keyframes glitch-bottom {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
}

@keyframes glitch-skew {
    0%, 100% { transform: skew(0deg); }
    20% { transform: skew(-0.5deg); }
    40% { transform: skew(0.5deg); }
    60% { transform: skew(-0.3deg); }
    80% { transform: skew(0.3deg); }
}

.hero-tagline {
    font-size: var(--fs-h3);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.1em;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    display: block;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

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

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 16px; }
}

/* === SECTIONS === */
.section {
    padding: var(--space-section) 0;
}

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

.section-title {
    font-size: var(--fs-h2);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: var(--fs-body);
    max-width: 600px;
    margin: 0 auto;
}

/* === ABOUT === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.about-content p.lead {
    font-size: 1.125rem;
    color: var(--text);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.stat-card {
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
    font-size: var(--fs-h2);
    font-weight: 900;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: var(--fs-small);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
}

/* === MEMBERS === */
.members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.member-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

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

.member-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
}

.member-overlay h3 {
    font-size: var(--fs-h3);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.member-overlay .role {
    color: var(--primary);
    font-size: var(--fs-small);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.member-overlay .power {
    color: var(--secondary);
    font-size: var(--fs-small);
}

.member-details {
    padding: var(--space-md);
}

.member-details h3 {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-xs);
}

.member-bio {
    color: var(--text-muted);
    font-size: var(--fs-small);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.member-credits dt {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.member-credits dd {
    color: var(--text-muted);
    font-size: var(--fs-small);
    margin-bottom: 0.5rem;
}

/* === MUSIC === */
.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.music-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

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

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

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

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

.video-facade::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    box-shadow: 0 0 30px var(--primary-glow);
}

.play-btn::before {
    content: '';
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px var(--primary-glow);
}

.video-facade.loaded {
    cursor: default;
}

.video-facade.loaded iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.music-info {
    padding: var(--space-md);
}

.music-info h3 {
    font-size: var(--fs-h3);
    margin-bottom: 0.5rem;
}

.music-info p {
    color: var(--text-muted);
    font-size: var(--fs-small);
    margin-bottom: var(--space-sm);
}

.music-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 0, 128, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
}

.streaming-platforms {
    margin-top: var(--space-xl);
    text-align: center;
}

.streaming-platforms h3 {
    font-size: var(--fs-body);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.streaming-platforms nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.streaming-platforms a {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    font-size: var(--fs-small);
    font-weight: 600;
    transition: all var(--transition);
}

.streaming-platforms a:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* === FILM === */
.film-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.film-text h3 {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.film-text p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.film-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.film-detail {
    padding: var(--space-md);
    background: var(--bg-card);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.film-detail span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.film-detail strong {
    color: var(--text);
}

/* Trailer Section */
.trailer-hero {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.trailer-section {
    margin-top: var(--space-xl);
    text-align: center;
}

.trailer-section h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.trailer-video {
    max-width: 900px;
    margin: 0 auto var(--space-lg);
}

.trailer-cta {
    text-align: center;
    margin-top: var(--space-md);
}

.video-facade-large {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 0, 128, 0.3);
    border: 2px solid rgba(255, 0, 128, 0.3);
}

.video-facade-large:hover {
    box-shadow: 0 25px 70px rgba(255, 0, 128, 0.4);
    border-color: var(--primary);
}

/* === FAQ === */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    margin-bottom: var(--space-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: var(--space-md);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: var(--bg-card-hover);
}

.faq-item summary h3 {
    font-size: var(--fs-body);
    font-weight: 600;
}

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--text-muted);
    line-height: 1.7;
}

/* === SHOP / PRODUCTS === */
.shop-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.shop-hero h1 {
    font-size: var(--fs-h1);
    font-weight: 900;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
}

.shop-hero p {
    color: var(--text-muted);
    font-size: var(--fs-body);
}

.category-pills {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.category-pill {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    font-size: var(--fs-small);
    font-weight: 600;
    transition: all var(--transition);
}

.category-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 0, 128, 0.2);
    border-color: var(--primary-glow);
}

.product-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image {
    position: relative;
    height: 220px;
    background: linear-gradient(145deg, #15151f, #1a1a28);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.35rem 0.75rem;
    background: var(--grad-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
}

.amazon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.35rem 0.75rem;
    background: var(--grad-amazon);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
}

.product-info {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.7rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-desc {
    color: var(--text-muted);
    font-size: var(--fs-small);
    margin-bottom: var(--space-md);
    flex: 1;
    line-height: 1.5;
}

.product-card .btn-amazon {
    margin-top: auto;
}

.shop-preview {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.shop-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.affiliate-disclaimer {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: rgba(255, 153, 0, 0.03);
    border-top: 1px solid rgba(255, 153, 0, 0.1);
    margin-top: var(--space-xl);
}

.affiliate-disclaimer p {
    color: var(--text-dim);
    font-size: var(--fs-small);
    max-width: 600px;
    margin: 0 auto;
}

/* === FOOTER === */
.footer {
    background: var(--bg-darker);
    padding: var(--space-xl) 0 var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.footer-about p {
    color: var(--text-muted);
    font-size: var(--fs-small);
    line-height: 1.7;
}

.footer h4 {
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul a {
    color: var(--text-muted);
    font-size: var(--fs-small);
    transition: color var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: var(--fs-small);
}

/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 0, 128, 0);
    transition: background var(--transition);
}

.gallery-item:hover::after {
    background: rgba(255, 0, 128, 0.2);
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: var(--space-lg);
    animation: fadeIn 0.3s ease;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
}

.lightbox-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: none;
    border-radius: 50%;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition);
}

.lightbox-close:hover {
    background: var(--primary);
}

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

/* === ANIMATIONS === */
/* Animation with JS fallback */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: show content after 2s if JS fails */
@media (prefers-reduced-motion: no-preference) {
    [data-animate] {
        animation: fallback-show 0.1s ease 2s forwards;
    }
}

@keyframes fallback-show {
    to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-grid,
    .film-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right var(--transition);
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-title {
        letter-spacing: 0.15em;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .members-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .film-details {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lang-nav {
        top: auto;
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .product-image {
        height: 200px;
    }

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

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .glitch::before,
    .glitch::after {
        display: none;
    }
}
