/* ===== RESET & VARIABLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --cyan: #00d4ff;
    --cyan-dim: rgba(0, 212, 255, 0.08);
    --cyan-border: rgba(0, 212, 255, 0.15);
    --text-primary: #e8e8e8;
    --text-secondary: #888;
    --text-muted: #555;
    --bg-dark: #050505;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== INTRO VIDEO ===== */
#intro-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

#intro-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--cyan-border);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 12px 40px;
    background: rgba(5,5,5,0.95);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 36px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.nav-logo:hover img { opacity: 1; }

.nav-logo span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li { position: relative; }

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

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

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

.lang-toggle {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-toggle button {
    background: none;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 3px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.lang-toggle button.active {
    color: var(--cyan);
    border-color: var(--cyan-border);
}

.lang-toggle button:hover:not(.active) {
    color: var(--text-secondary);
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg.desktop {
    background-image: url('Archivos/fondo-principal-pc.jpg');
}

.hero-bg.mobile {
    display: none;
    background-image: url('Archivos/fondo-principal-movil.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.15);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards 0.5s;
}

.hero-content .subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards 0.8s;
}

.hero-cta {
    display: inline-flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards 1.1s;
}

.btn-primary {
    padding: 14px 36px;
    border: 1px solid var(--cyan-border);
    background: rgba(0, 212, 255, 0.05);
    color: var(--cyan);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
}

.btn-secondary {
    padding: 14px 36px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.8s;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

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

/* ===== SECTIONS GENERAL ===== */
section {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.section-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(5,5,5,0.88);
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-header .line {
    width: 60px;
    height: 1px;
    background: var(--cyan);
    margin: 0 auto;
    opacity: 0.5;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 16px;
    font-weight: 300;
}

/* ===== RELEASES SECTION ===== */
#releases .section-bg.desktop { background-image: url('Archivos/fondo-1-pc.png'); }
#releases .section-bg.mobile { display: none; background-image: url('Archivos/fondo-1-movil.png'); }

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.release-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.release-card:hover {
    border-color: var(--cyan-border);
    background: rgba(0, 212, 255, 0.03);
    transform: translateY(-4px);
}

.release-card .release-artwork {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,212,255,0.02));
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.release-card .release-artwork svg {
    width: 40px; height: 40px;
    opacity: 0.3;
}

.release-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.release-card .artist {
    font-size: 0.8rem;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.release-card .genre {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* SoundCloud Widget */
.soundcloud-widget {
    margin-top: 60px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    padding: 20px;
}

.soundcloud-widget iframe {
    width: 100%;
    height: 166px;
    border: none;
}

/* ===== ABOUT SECTION ===== */
#about .section-bg.desktop { background-image: url('Archivos/fondo-2-pc.png'); }
#about .section-bg.mobile { display: none; background-image: url('Archivos/fondo-2-movil.png'); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    padding-right: 20px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 24px;
    font-weight: 300;
}

.about-text p strong {
    color: var(--text-primary);
    font-weight: 500;
}

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

.team-member {
    text-align: center;
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-6px);
}

.team-member .photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.team-member .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .photo img {
    transform: scale(1.05);
}

.team-member .photo::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 40%;
    background: linear-gradient(to top, rgba(5,5,5,0.8), transparent);
    pointer-events: none;
}

.team-member h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-member .role {
    font-size: 0.75rem;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== ARTISTS SECTION ===== */
#artists .section-bg.desktop { background-image: url('Archivos/fondo-3-pc.png'); }
#artists .section-bg.mobile { display: none; background-image: url('Archivos/fondo-3-movil.png'); }

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.artist-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.artist-card:hover {
    border-color: var(--cyan-border);
}

.artist-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.artist-card .info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(5,5,5,0.95), transparent);
}

.artist-card .info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.artist-card .info .genre {
    font-size: 0.75rem;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== EVENTS SECTION ===== */
#events .section-bg.desktop { background-image: url('Archivos/fondo-4-pc.png'); }
#events .section-bg.mobile { display: none; background-image: url('Archivos/fondo-4-movil.png'); }

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.event-item {
    display: grid;
    grid-template-columns: 120px 1fr 200px;
    gap: 40px;
    align-items: center;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.4s ease;
    cursor: pointer;
}

.event-item:hover {
    background: rgba(0, 212, 255, 0.03);
    border-color: var(--cyan-border);
}

.event-date {
    text-align: center;
}

.event-date .day {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--cyan);
    line-height: 1;
}

.event-date .month {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.event-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.event-info .location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.event-info .location svg {
    width: 14px; height: 14px;
    vertical-align: middle;
    margin-right: 6px;
    opacity: 0.5;
}

.event-action {
    text-align: right;
}

.event-action .btn-small {
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.event-action .btn-small:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* ===== DEMOS SECTION ===== */
#demos .section-bg.desktop { background-image: url('Archivos/fondo-5-pc.png'); }
#demos .section-bg.mobile { display: none; }

.demos-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.demos-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 40px;
    font-weight: 300;
}

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

.demo-form input,
.demo-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

.demo-form input:focus,
.demo-form textarea:focus {
    border-color: var(--cyan-border);
    background: rgba(0, 212, 255, 0.02);
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.demo-form textarea {
    min-height: 140px;
    resize: vertical;
}

.demo-form .file-upload {
    padding: 30px;
    border: 1px dashed rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.01);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.demo-form .file-upload:hover {
    border-color: var(--cyan-border);
    background: rgba(0, 212, 255, 0.02);
}

.demo-form .file-upload svg {
    width: 32px; height: 32px;
    opacity: 0.3;
    margin-bottom: 12px;
}

.demo-form .file-upload span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.demo-form button[type="submit"] {
    padding: 16px 40px;
    border: 1px solid var(--cyan-border);
    background: rgba(0, 212, 255, 0.05);
    color: var(--cyan);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: center;
}

.demo-form button[type="submit"]:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: var(--cyan);
}

/* ===== NEWS SECTION ===== */
#news .section-bg.desktop { background-image: url('Archivos/fondo-7-pc.png'); }
#news .section-bg.mobile { display: none; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.news-card:hover {
    border-color: var(--cyan-border);
    transform: translateY(-4px);
}

.news-card .news-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,212,255,0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.news-card .news-image svg {
    width: 36px; height: 36px;
    opacity: 0.2;
}

.news-card .news-body {
    padding: 24px;
}

.news-card .news-date {
    font-size: 0.7rem;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.news-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== CONTACT SECTION ===== */
#contact .section-bg.desktop { background-image: url('Archivos/fondo-8-pc.png'); }
#contact .section-bg.mobile { display: none; }

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

.contact-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-detail svg {
    width: 18px; height: 18px;
    opacity: 0.4;
    flex-shrink: 0;
}

.contact-detail span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--cyan-border);
    background: rgba(0, 212, 255, 0.02);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button {
    padding: 16px 40px;
    border: 1px solid var(--cyan-border);
    background: rgba(0, 212, 255, 0.05);
    color: var(--cyan);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: flex-start;
}

.contact-form button:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: var(--cyan);
}

/* ===== SOCIAL & FOOTER ===== */
.social-section {
    padding: 80px 40px 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
    background: var(--bg-dark);
}

.social-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    transition: all 0.4s ease;
    text-decoration: none;
}

.social-icons a:hover {
    border-color: var(--cyan-border);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-3px);
}

.social-icons a svg {
    width: 20px; height: 20px;
    fill: var(--text-muted);
    transition: fill 0.3s;
}

.social-icons a:hover svg {
    fill: var(--cyan);
}

.footer {
    padding: 30px 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer p {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.footer .footer-logo {
    margin-bottom: 16px;
}

.footer .footer-logo img {
    height: 28px;
    opacity: 0.4;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LANGUAGE HIDDEN ===== */
[data-lang] { display: none; }
[data-lang].active { display: block; }

.nav-links a[data-lang].active {
    display: inline-block;
}

.hero-cta a[data-lang].active {
    display: inline-flex;
}

.event-action a[data-lang].active {
    display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text {
        padding-right: 0;
    }

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

    section {
        padding: 80px 30px;
    }

    .navbar {
        padding: 16px 30px;
    }

    .nav-links {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 14px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(5,5,5,0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1rem;
    }

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

    .lang-toggle {
        display: none;
    }

    section {
        padding: 60px 20px;
    }

    .hero-content h1 {
        letter-spacing: 6px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 28px;
        font-size: 0.75rem;
    }

    .releases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .event-item {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .event-action {
        text-align: center;
    }

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

    .contact-grid {
        gap: 50px;
    }

    .social-icons {
        gap: 16px;
    }

    .social-icons a {
        width: 44px; height: 44px;
    }

    /* Mobile backgrounds */
    .hero-bg.desktop { display: none; }
    .hero-bg.mobile { display: block; }

    #releases .section-bg.desktop { display: none; }
    #releases .section-bg.mobile { display: block; }

    #about .section-bg.desktop { display: none; }
    #about .section-bg.mobile { display: block; }

    #artists .section-bg.desktop { display: none; }
    #artists .section-bg.mobile { display: block; }

    #events .section-bg.desktop { display: none; }
    #events .section-bg.mobile { display: block; }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .team-member h4 {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .team-member .role {
        font-size: 0.65rem;
    }

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

    .section-header h2 {
        letter-spacing: 4px;
    }
}