:root {
    --bg: #000000;
    --white: #ffffff;
    --red: #B43232;
    --gold: #E5B100;
    --muted: #999999;
    --container: 1200px;
    --neon-red: #ff0844;
    --neon-gold: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================
   NEON & EFFECTS
===================== */

.neon-text {
    text-shadow: 
        0 0 10px var(--neon-red),
        0 0 20px var(--neon-red),
        0 0 30px var(--neon-red),
        0 0 40px var(--neon-red);
    animation: neon-flicker 3s infinite alternate;
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 10px var(--neon-red),
            0 0 20px var(--neon-red),
            0 0 30px var(--neon-red),
            0 0 40px var(--neon-red);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

.neon-glow {
    box-shadow: 
        0 0 5px var(--neon-red),
        0 0 10px var(--neon-red),
        0 0 15px var(--neon-red);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 
            0 0 5px var(--neon-red),
            0 0 10px var(--neon-red),
            0 0 15px var(--neon-red);
    }
    50% {
        box-shadow: 
            0 0 10px var(--neon-red),
            0 0 15px var(--neon-red),
            0 0 20px var(--neon-red),
            0 0 25px var(--neon-red);
    }
}

.aura-effect {
    border-radius: 8px;
    box-shadow: 
        0 0 10px rgba(180, 50, 50, 0.3),
        0 0 20px rgba(180, 50, 50, 0.2),
        0 0 30px rgba(180, 50, 50, 0.1);
    transition: all 0.3s ease;
}

.aura-effect:hover {
    box-shadow: 
        0 0 15px rgba(180, 50, 50, 0.4),
        0 0 25px rgba(180, 50, 50, 0.3),
        0 0 40px rgba(180, 50, 50, 0.2);
    transform: scale(1.02);
}

.pulse-effect {
    animation: pulse 2s ease-in-out infinite;
}

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

/* =====================
   LANGUAGE SELECTOR
===================== */

.language-selector {
    z-index: 1000;
}

.language-dropdown {
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    border: 2px solid var(--red);
    border-radius: 50px;
    padding: 8px 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(180, 50, 50, 0.3);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="5" viewBox="0 0 10 5"><path fill="%23fff" d="M0 0l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.language-dropdown:hover {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(229, 177, 0, 0.4);
}

.language-dropdown option {
    background: #000;
    color: var(--white);
    padding: 10px;
}

/* =====================
   HEADER
===================== */

.header {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}

.header-logo {
    height: 40px;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav a {
    font-weight: 600;
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold);
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* =====================
   BUTTONS
===================== */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--red);
    color: var(--red);
}

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

.btn-secondary:hover {
    border-color: var(--white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* =====================
   HERO SECTION
===================== */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 20px;
}

.hero-logo {
    max-width: 300px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 20px rgba(180, 50, 50, 0.8));
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-genres {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.hero-genres span {
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.scroll-indicator {
    font-size: 14px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* =====================
   CONTENT BLOCKS
===================== */

.content-block {
    padding: 80px 0;
    position: relative;
}

.content-block.alternate {
    background: linear-gradient(180deg, rgba(180, 50, 50, 0.03) 0%, transparent 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-text {
    padding: 20px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.section-title.center {
    text-align: center;
}

.section-title-big {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 2px;
}

.lead-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.highlight-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid var(--red);
    background: rgba(180, 50, 50, 0.1);
}

/* =====================
   SOUND SECTION
===================== */

.sound {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(180, 50, 50, 0.05) 50%, transparent 100%);
}

.sound-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.sound-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    line-height: 1.6;
}

.sound-image {
    max-width: 900px;
    margin: 50px auto;
    position: relative;
}

.sound-image img {
    width: 100%;
    border-radius: 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(180, 50, 50, 0.8);
    border: none;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(180, 50, 50, 0.6);
}

.play-button:hover {
    background: rgba(180, 50, 50, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(180, 50, 50, 0.9);
}

.play-button svg {
    width: 80px;
    height: 80px;
}

.sound-lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.sound-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sound-column ul {
    list-style: none;
}

.sound-column li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    transition: all 0.3s ease;
}

.sound-column li:hover {
    color: var(--gold);
    padding-left: 10px;
}

.sound-rule {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-top: 50px;
    padding: 30px;
    border: 2px solid var(--red);
    border-radius: 8px;
    background: rgba(180, 50, 50, 0.1);
}

/* =====================
   RED-DUB SECTION
===================== */

.red-dub {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(180, 50, 50, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
}

.red-dub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: center;
}

.red-dub-image img {
    width: 100%;
    border-radius: 8px;
}

.red-dub-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
}

.red-dub-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* =====================
   CREW SECTION
===================== */

.crew {
    padding: 80px 0;
}

/* =====================
   EXPERIENCE SECTION
===================== */

.experience {
    padding: 80px 0;
    background: rgba(180, 50, 50, 0.03);
}

.experience-intro {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 50px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.experience-visual img {
    width: 100%;
    border-radius: 8px;
}

.experience-content {
    padding: 20px;
}

.experience-list {
    list-style: none;
    margin-bottom: 40px;
}

.experience-list li {
    padding: 15px 0;
    padding-left: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    font-weight: 500;
}

.experience-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 24px;
}

.souvenirs {
    background: rgba(180, 50, 50, 0.1);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--red);
}

.souvenirs h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.souvenirs p {
    margin-bottom: 15px;
}

.souvenir-list {
    list-style: none;
    margin: 20px 0;
}

.souvenir-list li {
    padding: 10px 0;
    font-weight: 500;
}

.souvenir-note {
    font-style: italic;
    margin-top: 20px;
    color: var(--gold);
}

/* =====================
   LOCAL SECTION
===================== */

.local {
    padding: 80px 0;
}

.local-rules {
    list-style: none;
    margin: 30px 0;
}

.local-rules li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.local-rules li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.local-aesthetic {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid var(--red);
    background: rgba(180, 50, 50, 0.1);
}

/* =====================
   SECURITY SECTION
===================== */

.security {
    padding: 80px 0;
    background: rgba(180, 50, 50, 0.03);
}

.security-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 25px;
}

.security-warning {
    background: rgba(180, 50, 50, 0.15);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--red);
    margin: 30px 0;
}

.security-warning p {
    margin-bottom: 15px;
}

/* =====================
   AFTER SECTION
===================== */

.after {
    padding: 80px 0;
}

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

.after-content p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.after-warning {
    background: rgba(180, 50, 50, 0.15);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--red);
    margin: 30px 0;
}

/* =====================
   GALLERY SECTION
===================== */

.gallery {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.5);
}

.gallery-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* =====================
   FINAL CALL SECTION
===================== */

.final-call {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(180, 50, 50, 0.2) 100%);
}

.final-call-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-call-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 50px;
    border-radius: 8px;
    display: block;
    object-fit: contain;
}

.final-call-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.final-call-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.8;
    margin-bottom: 30px;
}

.final-call-highlight {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin: 40px 0;
}

.final-call-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    opacity: 0.9;
}

/* =====================
   TICKETS SECTION
===================== */

.tickets {
    padding: 80px 0;
}

.tickets-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
}

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

.ticket-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.ticket-card:hover {
    border-color: var(--red);
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(180, 50, 50, 0.3);
}

.ticket-card.featured {
    border-color: var(--gold);
    background: rgba(229, 177, 0, 0.05);
}

.ticket-card.featured:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(229, 177, 0, 0.4);
}

.ticket-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}

.ticket-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.ticket-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 30px;
}

.ticket-card.featured .ticket-price {
    color: var(--gold);
}

.ticket-features {
    list-style: none;
    margin-bottom: 30px;
}

.ticket-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* =====================
   MEMBERSHIP SECTION
===================== */

.membership {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(180, 50, 50, 0.05) 0%, transparent 100%);
}

.membership-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}

.membership-payment {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.plan-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.toggle-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    border-color: var(--red);
    background: rgba(180, 50, 50, 0.1);
}

.toggle-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.membership-grid {
    margin-bottom: 60px;
}

.price-period {
    font-size: 18px;
    font-weight: 400;
}

.price-installment {
    font-size: 14px;
    margin-top: -20px;
    margin-bottom: 20px;
    opacity: 0.7;
    min-height: 20px;
}

.membership-tagline {
    font-size: 14px;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--red);
}

.membership-card.featured .membership-tagline {
    border-left-color: var(--gold);
}

.membership-footer {
    max-width: 900px;
    margin: 60px auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-footer p {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.9;
}

.membership-footer p:last-child {
    margin-bottom: 0;
}

.membership-cta {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.membership-cta-big {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.membership-cta p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* =====================
   ARTIST POLL SECTION
===================== */

.artist-poll {
    padding: 80px 0;
    background: rgba(180, 50, 50, 0.03);
}

.artist-poll-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.8;
}

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

.artist-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.artist-card:hover {
    border-color: var(--red);
    transform: translateY(-10px);
}

.artist-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.artist-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
}

.artist-bio-btn {
    margin-bottom: 10px;
    width: 100%;
}

.vote-btn {
    width: 100%;
}

/* =====================
   CANDIDATURA CTA
===================== */

.candidatura-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(180, 50, 50, 0.2) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.candidatura-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.candidatura-cta-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin: 30px 0 40px;
    line-height: 1.8;
}

/* =====================
   NEWSLETTER SECTION
===================== */

.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(180, 50, 50, 0.1) 0%, transparent 100%);
}

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

.newsletter-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 15px rgba(180, 50, 50, 0.3);
}

.newsletter-form input::placeholder {
    color: var(--muted);
}

/* =====================
   FOOTER
===================== */

.footer {
    padding: 60px 0 40px;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    max-width: 200px;
    margin: 0 auto 30px;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-nav a {
    font-weight: 600;
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-social a {
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--red);
}

.footer-copy {
    font-size: 14px;
    color: var(--muted);
    margin-top: 30px;
}

/* =====================
   MOBILE MENU TOGGLE
===================== */

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--red);
    color: var(--white);
    font-size: 24px;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {
    .header-content {
        position: relative;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .header-logo {
        order: 0;
        height: 35px;
        flex-shrink: 0;
    }

    .language-selector {
        order: 1;
        flex-shrink: 0;
        margin-left: 15px;
        margin-right: auto;
        position: relative;
        z-index: 1001;
    }

    .language-dropdown {
        padding: 6px 10px;
        font-size: 11px;
        width: 65px;
    }

    .menu-toggle {
        display: block;
        order: 2;
        flex-shrink: 0;
        padding: 6px 12px;
        position: relative;
        z-index: 1001;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 20px;
        z-index: 999;
        order: 3;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-actions {
        display: none;
    }

    .header-actions.active {
        display: flex;
        margin-top: 15px;
    }

    .content-block,
    .sound,
    .crew,
    .experience {
        padding: 45px 0;
    }

    .red-dub {
        padding: 55px 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .sound-lists {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-grid {
        gap: 12px;
    }

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

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .candidatura-cta .btn {
        font-size: 12px;
        padding: 12px 24px;
        letter-spacing: 0.5px;
    }
}

/* =====================
   MODALS (Bio, Vote, Candidatura)
===================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(180, 50, 50, 0.15) 0%, rgba(0, 0, 0, 0.95) 100%);
    border: 2px solid var(--red);
    border-radius: 16px;
    width: min(90vw, 480px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 40px rgba(180, 50, 50, 0.5);
}

.modal-body {
    padding: clamp(16px, 4vw, 30px);
    overflow-y: auto;
    flex: 1;
}

.modal-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-align: center;
    color: var(--white);
    letter-spacing: 1px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(180, 50, 50, 0.8);
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--red);
    transform: scale(1.1);
}

.modal-text {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.modal-form input,
.modal-form select {
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 10px rgba(180, 50, 50, 0.3);
}

.modal-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-form label {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.modal-actions .btn {
    width: 100%;
}

@media (min-width: 480px) {
    .modal-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .modal-actions .btn {
        width: auto;
        min-width: 140px;
    }
}

/* =====================
   LIGHTBOX
===================== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

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

.lightbox-content {
    width: auto;
    max-width: min(90vw, 960px);
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(180, 50, 50, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: clamp(15px, 3vw, 30px);
    right: clamp(20px, 5vw, 50px);
    color: var(--white);
    font-size: clamp(35px, 8vw, 50px);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    width: clamp(40px, 10vw, 50px);
    height: clamp(40px, 10vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 50, 50, 0.8);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: var(--white);
    background: var(--red);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: clamp(24px, 5vw, 40px);
    font-weight: bold;
    cursor: pointer;
    padding: clamp(10px, 2vw, 20px);
    background: rgba(180, 50, 50, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
    user-select: none;
    width: clamp(45px, 10vw, 60px);
    height: clamp(45px, 10vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: clamp(10px, 3vw, 30px);
}

.lightbox-next {
    right: clamp(10px, 3vw, 30px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(180, 50, 50, 0.9);
    box-shadow: 0 0 20px rgba(180, 50, 50, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: clamp(15px, 3vw, 30px);
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: clamp(12px, 3vw, 18px);
    font-weight: 700;
    background: rgba(0, 0, 0, 0.8);
    padding: clamp(6px 15px, 2vw, 10px 25px);
    border-radius: 30px;
    border: 2px solid var(--red);
}

.gallery-item {
    cursor: pointer;
}

@media (max-width: 480px) {
    .content-block,
    .sound,
    .crew,
    .experience {
        padding: 35px 0;
    }

    .red-dub {
        padding: 45px 0;
    }

    .content-grid,
    .sound-lists {
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .lightbox {
        padding: 10px;
    }
    
    .lightbox-content {
        width: auto;
        max-width: 95vw;
        max-height: 75vh;
        object-fit: contain;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding: 8px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 28px;
        top: 10px;
        right: 10px;
    }

    .lightbox-counter {
        bottom: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }

    .modal-content {
        width: min(95vw, 400px);
        max-height: 90vh;
    }

    .modal-body {
        padding: 18px;
        overflow-y: auto;
    }

    .modal-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .modal-text {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .modal-form input,
    .modal-form select {
        padding: 10px 12px;
        font-size: 13px;
    }

    .modal-form {
        gap: 12px;
        margin-top: 15px;
    }

    .modal-actions {
        gap: 8px;
        margin-top: 15px;
    }

    .modal-actions .btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 12px;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
        top: 8px;
        right: 8px;
    }

    .final-call {
        padding: 50px 0;
    }

    .final-call-image {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .final-call-text {
        font-size: 1rem;
    }

    .final-call-highlight {
        font-size: 1.8rem;
        margin: 30px 0;
    }
}