/* =========================
   VARIABLES (PORTADA - AGRESIVO)
========================= */
/* =========================
   VARIABLES (BRUTAL / INDUSTRIAL)
========================= */
:root {
    /* base */
    --black: #050505;
    --black-soft: #0b0b0b;
    --white: #e6e6e6;

    /* fuego */
    --fire-orange: #c4571b;
    --fire-dark: #7a2e0f;

    /* ácido */
    --toxic-green: #6b8f1a;
    --toxic-dark: #2e3a12;

    /* óxido */
    --rust-brown: #3b1f12;
}



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

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.015), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0,0,0,0.6), transparent 40%),
        var(--black);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    line-height: 1.7;
    letter-spacing: 0.4px;
}

/* =========================
   SCROLL ANIMATIONS
========================= */
/* Base section animation - removed duplicate, using fade-in-up instead */

/* Fade in from left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.fade-in-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.fade-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from bottom */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

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

/* Scale in */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.scale-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation for children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.stagger-children.animate-in > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.animate-in > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.animate-in > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.animate-in > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.animate-in > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.animate-in > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.animate-in > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children.animate-in > *:nth-child(8) { transition-delay: 0.8s; }

.stagger-children.animate-in > * {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Parallax effect for hero */
.hero {
    will-change: transform;
}

/* Gallery images animation */
.gallery-grid img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Event cards animation */
.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Merch items animation */
.merch-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-10px) scale(1.03);
}

/* Track items animation */
.track-item {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.track-item:hover {
    background-color: rgba(107, 143, 26, 0.05);
    transform: translateX(5px);
}

/* Form inputs animation */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: scale(1.02);
    transition: all 0.3s ease;
}


/* =========================
   NAVBAR
========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(5,5,5,0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    border-bottom: 2px solid var(--toxic-green);
    z-index: 1000;
}

.navbar-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.navbar-logo-container:hover {
    opacity: 0.8;
}

.navbar-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(107, 143, 26, 0.6));
    animation: logoPulse 2s ease-in-out infinite;
    transition: all 0.3s;
}

@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(107, 143, 26, 0.6));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(107, 143, 26, 0.9));
        transform: scale(1.05);
    }
}

.navbar-logo:hover {
    filter: drop-shadow(0 0 20px rgba(107, 143, 26, 1));
    transform: scale(1.1);
}

.logo-text {
    font-family: 'Metal Mania', cursive;
    font-size: 26px;
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(107, 143, 26, 0.5);
}

.navbar .logo {
    font-family: 'Metal Mania', cursive;
    font-size: 26px;
    color: var(--white);
    letter-spacing: 2px;
}

.navbar ul,
.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

.navbar a:hover {
    color: var(--toxic-green);
    text-shadow: 0 0 10px rgba(107, 143, 26, 0.8);
    transform: translateY(-2px);
    transition: all 0.3s;
}

.mobile-menu-toggle {
    display: none;
}

/* Hide nav menu in desktop by default */
@media (min-width: 601px) {
    .nav-menu {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* =========================
   FLOATING AUDIO BUTTON
========================= */
.audio-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fire-orange), var(--fire-dark));
    border: 3px solid var(--toxic-green);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 20px rgba(196, 87, 27, 0.6),
        0 0 40px rgba(107, 143, 26, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    animation: audioButtonPulse 2s ease-in-out infinite;
}

@keyframes audioButtonPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(196, 87, 27, 0.6),
            0 0 40px rgba(107, 143, 26, 0.4),
            0 5px 15px rgba(0, 0, 0, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(196, 87, 27, 0.9),
            0 0 60px rgba(107, 143, 26, 0.6),
            0 8px 20px rgba(0, 0, 0, 0.6);
        transform: scale(1.05);
    }
}

.audio-toggle-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 0 40px rgba(196, 87, 27, 1),
        0 0 80px rgba(107, 143, 26, 0.8),
        0 10px 25px rgba(0, 0, 0, 0.7);
    border-color: var(--fire-orange);
    background: linear-gradient(135deg, var(--toxic-green), var(--fire-orange));
}

.audio-toggle-btn:active {
    transform: scale(1.1) rotate(-5deg);
}

.audio-toggle-btn.muted {
    background: linear-gradient(135deg, #666, #333);
    border-color: #888;
    animation: none;
}

.audio-toggle-btn.muted:hover {
    background: linear-gradient(135deg, #888, #555);
    border-color: #aaa;
}

.audio-icon {
    display: block;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.8));
}

/* =========================
   HERO
========================= */
.hero {
    height: 100vh;
    background: url('assets/cover.jpg') center / cover no-repeat;
    position: relative;
}



.hero-overlay {
    background: radial-gradient(circle, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 420px;
    width: 90%;
    margin-bottom: 20px;
    opacity: 0;
    animation: heroLogoFadeIn 2s ease-out forwards;
}

@keyframes heroLogoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.95) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-subtitle {
    color: var(--fire-orange);
    font-size: 18px;
    letter-spacing: 3px;
}

/* =========================
   SECTIONS
========================= */
.section {
    padding: 100px 15%;
    will-change: opacity, transform;
}

.section.dark {
    background: linear-gradient(180deg, var(--black), var(--toxic-dark));
}

.section h2 {
    font-family: 'Metal Mania', cursive;
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--fire-orange);
}

.section p {
    margin-bottom: 20px;
    max-width: 900px;
}


.band-bio {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    padding: 100px 8%;
    background: var(--black);
    align-items: center;
}
.bio-text h2 {
    font-family: 'Metal Mania', cursive;
    font-size: 44px;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.bio-text p {
    color: #888;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.bio-text strong {
    color: var(--white);
    font-weight: 600;
}

.bio-art img {
    width: 100%;
    max-height: 720px;
    object-fit: cover;

    /* bordes */
    border-radius: 12px;

    /* integración oscura */
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.02),
        0 25px 80px rgba(0,0,0,0.9);

    filter: contrast(115%) saturate(105%);
}



@media (max-width: 900px) {
    .bio-art img {
        max-height: 520px;

        -webkit-mask-image: linear-gradient(
            to bottom,
            rgba(0,0,0,1) 85%,
            rgba(0,0,0,0) 100%
        );

        mask-image: linear-gradient(
            to bottom,
            rgba(0,0,0,1) 85%,
            rgba(0,0,0,0) 100%
        );
    }
}



#music {
    background: #050505;
}

#music h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--fire-orange);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* layout */
.album {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

/* portada */
.album-cover img {
    width: 100%;
    border-radius: 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 30px 90px rgba(0,0,0,0.95);
}

/* info */
.album-title {
    font-size: 1.8rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.album-year {
    display: block;
    margin-bottom: 30px;
    color: #888;
    font-size: 0.9rem;
}

/* tracklist */
.tracklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.track-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.track-number {
    grid-row: span 2;
    font-weight: 700;
    color: var(--fire-orange);
    opacity: 0.7;
}

.track-name {
    font-weight: 600;
    letter-spacing: 1px;
}

.track-item audio {
    grid-column: 2;
}

/* Spotify Button Container */
.spotify-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Spotify Button */
.spotify-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    background: #1DB954;
    border: 2px solid #1DB954;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.3);
    width: fit-content;
}

.spotify-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(29, 185, 84, 0.5);
    background: #1ed760;
    border-color: #1ed760;
}

.spotify-button svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}



#events {
    background: #050505;
}

#events h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--fire-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    justify-items: center;
}

.event-card {
    max-width: 380px;
    width: 100%;
    background: #0b0b0b;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.035),
        0 35px 90px rgba(0,0,0,0.98);

    transition: transform 0.35s ease;
}

.event-card:hover {
    transform: translateY(-6px);
}

.event-flyer {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #050505;

    display: flex;
    align-items: center;
    justify-content: center;
}

.event-flyer img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 👈 CLAVE */
}


/* info */
.event-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 150px;
    justify-content: space-between;
}

.event-card {
    display: flex;
    flex-direction: column;
}

.event-date {
    display: block;
    color: var(--fire-orange);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.event-name {
    margin: 10px 0 6px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.event-place {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.event-contact-btn {
    width: 100%;
    margin-top: auto;
    padding: 12px 20px;
    background: linear-gradient(45deg, var(--fire-orange), var(--fire-dark));
    border: 2px solid var(--fire-orange);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(196, 87, 27, 0.3);
    flex-shrink: 0;
}

.event-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(196, 87, 27, 0.5);
    border-color: var(--toxic-green);
    background: linear-gradient(45deg, var(--toxic-green), var(--fire-orange));
}


/* =========================
   SURPRISE CODE SECTION
========================= */
.surprise-section {
    background: linear-gradient(180deg, var(--black), var(--toxic-dark));
    position: relative;
    overflow: hidden;
}

.surprise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(196, 87, 27, 0.15), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(107, 143, 26, 0.15), transparent 50%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.surprise-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Simple skeleton container - no card, no acid, no animation */
.skeleton-container-simple {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skeleton-image-simple {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(107, 143, 26, 0.5));
}

/* Remove old surprise card styles - keeping for reference but not used */

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-0.3deg);
    }
    50% { 
        transform: translateY(-10px) rotate(0.5deg);
    }
    75% {
        transform: translateY(-5px) rotate(0.3deg);
    }
}

.surprise-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: 
        0 0 0 2px rgba(107, 143, 26, 0.6),
        0 12px 48px rgba(0, 0, 0, 0.9),
        0 0 80px rgba(107, 143, 26, 0.4),
        inset 0 0 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(107, 143, 26, 0.7);
}

/* Acid Drops Animation */
.acid-drops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.acid-drop {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--toxic-green);
    border-radius: 50% 50% 50% 0;
    opacity: 0.8;
    box-shadow: 
        0 0 10px var(--toxic-green),
        0 0 20px var(--toxic-green);
    animation: acidDrip 2.5s ease-in-out infinite;
}

.acid-drop:nth-child(1) {
    top: -10px;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 2s;
}

.acid-drop:nth-child(2) {
    top: -10px;
    left: 35%;
    animation-delay: 0.3s;
    animation-duration: 2.2s;
    width: 6px;
    height: 6px;
}

.acid-drop:nth-child(3) {
    top: -10px;
    left: 55%;
    animation-delay: 0.6s;
    animation-duration: 1.8s;
    width: 10px;
    height: 10px;
}

.acid-drop:nth-child(4) {
    top: -10px;
    left: 75%;
    animation-delay: 0.1s;
    animation-duration: 2.3s;
    width: 7px;
    height: 7px;
}

.acid-drop:nth-child(5) {
    top: -10px;
    left: 90%;
    animation-delay: 0.4s;
    animation-duration: 2.1s;
    width: 5px;
    height: 5px;
}

@keyframes acidDrip {
    0% {
        top: -10px;
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
    }
    10% {
        opacity: 1;
        transform: scale(1.3) rotate(5deg);
    }
    30% {
        top: 30%;
        opacity: 0.9;
        transform: scale(1.1) rotate(-3deg);
    }
    50% {
        top: 50%;
        opacity: 0.7;
        transform: scale(0.9) rotate(4deg);
    }
    70% {
        top: 70%;
        opacity: 0.5;
        transform: scale(0.7) rotate(-2deg);
    }
    90% {
        top: 95%;
        opacity: 0.3;
        transform: scale(0.5) rotate(3deg);
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: scale(0.3) rotate(0deg);
    }
}

/* Card Content */
.card-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 20px;
    overflow: hidden;
}

.skeleton-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.skeleton-image {
    max-width: 85%;
    max-height: 85%;
    width: auto;
    height: auto;
    min-width: 280px;
    min-height: 180px;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(107, 143, 26, 0.5));
    animation: giveBeer 2s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes giveBeer {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
    }
    10% {
        transform: translateX(8px) translateY(-5px) rotate(1deg) scale(1.01);
    }
    20% {
        transform: translateX(20px) translateY(-12px) rotate(3deg) scale(1.03);
    }
    30% {
        transform: translateX(35px) translateY(-18px) rotate(5deg) scale(1.06);
    }
    40% {
        transform: translateX(30px) translateY(-15px) rotate(4deg) scale(1.05);
    }
    50% {
        transform: translateX(40px) translateY(-20px) rotate(6deg) scale(1.08);
    }
    60% {
        transform: translateX(30px) translateY(-15px) rotate(4deg) scale(1.05);
    }
    70% {
        transform: translateX(20px) translateY(-10px) rotate(2deg) scale(1.03);
    }
    80% {
        transform: translateX(10px) translateY(-5px) rotate(1deg) scale(1.01);
    }
    90% {
        transform: translateX(5px) translateY(-2px) rotate(0.5deg) scale(1.005);
    }
}

.surprise-card:hover .skeleton-image {
    animation: giveBeerHover 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(107, 143, 26, 1)) 
            drop-shadow(0 0 60px rgba(196, 87, 27, 0.7))
            drop-shadow(0 0 80px rgba(107, 143, 26, 0.5));
}

@keyframes giveBeerHover {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1.05);
    }
    12.5% {
        transform: translateX(15px) translateY(-10px) rotate(2deg) scale(1.07);
    }
    25% {
        transform: translateX(30px) translateY(-18px) rotate(4deg) scale(1.09);
    }
    37.5% {
        transform: translateX(45px) translateY(-25px) rotate(7deg) scale(1.12);
    }
    50% {
        transform: translateX(50px) translateY(-28px) rotate(8deg) scale(1.15);
    }
    62.5% {
        transform: translateX(40px) translateY(-22px) rotate(6deg) scale(1.11);
    }
    75% {
        transform: translateX(25px) translateY(-15px) rotate(3deg) scale(1.08);
    }
    87.5% {
        transform: translateX(10px) translateY(-8px) rotate(1deg) scale(1.06);
    }
}

.beer-glow {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(
        circle,
        rgba(255, 215, 0, 0.6) 0%,
        rgba(255, 165, 0, 0.4) 30%,
        rgba(107, 143, 26, 0.2) 60%,
        transparent 100%
    );
    border-radius: 50%;
    z-index: 1;
    animation: beerGlow 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes beerGlow {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3) translate(-10px, -10px);
        opacity: 0.9;
    }
}

.surprise-card:hover .beer-glow {
    animation: beerGlowHover 1.5s ease-in-out infinite;
}

@keyframes beerGlowHover {
    0%, 100% {
        transform: scale(1.2) translate(-5px, -5px);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.5) translate(-15px, -15px);
        opacity: 1;
    }
}

/* Border Glow Effect */
.card-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(
        45deg,
        var(--toxic-green),
        var(--fire-orange),
        var(--toxic-green)
    );
    background-size: 200% 200%;
    opacity: 0.3;
    z-index: -1;
    animation: borderGlow 2s ease-in-out infinite;
    filter: blur(8px);
}

@keyframes borderGlow {
    0%, 100% { 
        background-position: 0% 50%;
        opacity: 0.3;
    }
    25% {
        background-position: 50% 0%;
        opacity: 0.4;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 0.6;
    }
    75% {
        background-position: 50% 100%;
        opacity: 0.4;
    }
}

.surprise-title {
    font-family: 'Metal Mania', cursive;
    font-size: 48px;
    color: var(--fire-orange);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 
        0 0 10px rgba(196, 87, 27, 0.8),
        0 0 20px rgba(196, 87, 27, 0.5),
        0 0 30px rgba(196, 87, 27, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px rgba(196, 87, 27, 0.8),
            0 0 20px rgba(196, 87, 27, 0.5),
            0 0 30px rgba(196, 87, 27, 0.3);
    }
    50% { 
        text-shadow: 
            0 0 15px rgba(196, 87, 27, 1),
            0 0 30px rgba(196, 87, 27, 0.8),
            0 0 45px rgba(196, 87, 27, 0.5);
    }
}

.surprise-subtitle {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.code-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.code-input-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.code-input-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--fire-orange), var(--toxic-green), var(--fire-orange));
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.code-box input {
    width: 100%;
    padding: 18px 24px;
    background: rgba(5, 5, 5, 0.9);
    border: 2px solid var(--fire-orange);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.code-box input::placeholder {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.7;
}

.code-box input:focus {
    outline: none;
    border-color: var(--toxic-green);
    box-shadow: 
        0 0 20px rgba(196, 87, 27, 0.5),
        0 0 40px rgba(196, 87, 27, 0.3),
        inset 0 0 20px rgba(196, 87, 27, 0.1);
    transform: scale(1.02);
}

.code-box input::placeholder {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.7;
}

.code-input-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(196, 87, 27, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: 8px;
}

.code-box input:focus + .code-input-glow {
    opacity: 1;
}

.code-submit-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(45deg, var(--fire-orange), var(--fire-dark));
    border: 2px solid var(--fire-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 
        0 0 20px rgba(196, 87, 27, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.5);
}

.code-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.code-submit-btn:hover::before {
    left: 100%;
}

.code-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(196, 87, 27, 0.7),
        0 8px 25px rgba(0, 0, 0, 0.6);
    border-color: var(--toxic-green);
    background: linear-gradient(45deg, var(--toxic-green), var(--fire-orange));
}

.code-submit-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 0 15px rgba(196, 87, 27, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 50%;
    transition: width 0.5s, height 0.5s;
    pointer-events: none;
}

.code-submit-btn:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.code-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.code-message:empty {
    display: none;
}

/* Responsive */
@media (max-width: 600px) {
    .audio-toggle-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .skeleton-container-simple {
        max-width: 90%;
    }
    
    .skeleton-image-simple {
        max-width: 100%;
        max-height: 300px;
    }
    
    @keyframes giveBeer {
        0%, 100% {
            transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        }
        25% {
            transform: translateX(10px) translateY(-5px) rotate(1.5deg) scale(1.02);
        }
        50% {
            transform: translateX(15px) translateY(-8px) rotate(2deg) scale(1.03);
        }
        75% {
            transform: translateX(10px) translateY(-5px) rotate(1.5deg) scale(1.02);
        }
    }
    
    .surprise-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .surprise-subtitle {
        font-size: 1rem;
    }
    
    .code-box input,
    .code-submit-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* =========================
   FOOTER
========================= */
.footer {
    background: var(--black);
    padding: 40px 30px;
    text-align: center;
    border-top: 2px solid var(--toxic-green);
}

.footer-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(107, 143, 26, 0.6));
    transition: all 0.3s;
}

.footer-logo img:hover {
    filter: drop-shadow(0 0 20px rgba(107, 143, 26, 0.9));
    transform: scale(1.05);
}

.footer p {
    margin-bottom: 20px;
    color: #888;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--toxic-green);
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 50%;
    background: rgba(107, 143, 26, 0.1);
    border: 1px solid rgba(107, 143, 26, 0.3);
}

.socials a:hover {
    color: var(--fire-orange);
    background: rgba(196, 87, 27, 0.2);
    border-color: var(--fire-orange);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(196, 87, 27, 0.4);
}

.socials a svg {
    width: 20px;
    height: 20px;
}

/* =========================
   RESPONSIVE - COMPLETE SYSTEM
========================= */

/* =========================
   TABLET (601px - 900px)
========================= */
@media (max-width: 900px) {
    /* Sections */
    .section {
        padding: 80px 8%;
    }

    /* Navbar */
    .navbar {
        padding: 0 25px;
    }

    .navbar ul {
        gap: 15px;
        font-size: 0.9rem;
    }

    .navbar-logo {
        height: 40px;
    }

    .logo-text {
        font-size: 22px;
    }

    /* Hero */
    .hero-logo {
        max-width: 350px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* Bio */
    .band-bio {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 5%;
    }

    .bio-text h2 {
        font-size: 38px;
    }

    .bio-art img {
        max-height: 500px;
    }

    /* Music */
    .album {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

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

    /* Events */
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Contact & Merchandise */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .merchandise-container {
        max-width: 95%;
    }
    
    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Surprise Card */
    .surprise-card {
        width: 90%;
        max-width: 450px;
        height: 270px;
    }

    .skeleton-image {
        min-width: 250px;
        min-height: 160px;
    }
}

/* =========================
   MOBILE (up to 600px)
========================= */
@media (max-width: 600px) {
    /* Navbar */
    .navbar {
        padding: 0 15px;
        height: 60px;
        flex-wrap: wrap;
    }

    .navbar-logo-container {
        gap: 8px;
    }

    .navbar-logo {
        height: 32px;
    }

    .logo-text {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .nav-menu {
        display: none !important;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 2px solid var(--toxic-green);
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 999;
        transform: translateY(-20px);
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.active {
        display: flex !important;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar ul li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(107, 143, 26, 0.2);
    }

    .navbar ul li:last-child {
        border-bottom: none;
    }

    .navbar ul li a {
        display: block;
        padding: 10px;
        font-size: 1rem;
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        order: 2;
    }

    .mobile-menu-toggle span {
        width: 100%;
        height: 3px;
        background: var(--white);
        border-radius: 3px;
        transition: all 0.3s;
        transform-origin: center;
    }

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

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

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

    .mobile-menu-toggle:hover span {
        background: var(--toxic-green);
    }

    /* Hero */
    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero-logo {
        max-width: 280px;
        width: 85%;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    /* Sections */
    .section {
        padding: 60px 5%;
    }

    .section h2 {
        font-size: 28px;
        margin-bottom: 25px;
        letter-spacing: 2px;
    }

    /* Bio */
    .band-bio {
        padding: 60px 4%;
        gap: 30px;
    }

    .bio-text h2 {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .bio-text p {
        font-size: 15px;
        line-height: 1.8;
    }

    .bio-art img {
        max-height: 400px;
    }

    /* Music */
    .album {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .album-cover {
        max-width: 300px;
        margin: 0 auto;
    }

    .album-title {
        font-size: 1.3rem;
        text-align: center;
    }

    .album-year {
        text-align: center;
    }

    .track-item {
        grid-template-columns: 35px 1fr;
        gap: 8px 15px;
        padding: 15px 0;
    }

    .track-item audio {
        width: 100%;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-grid img {
        aspect-ratio: 9 / 16;
    }

    /* Events */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .event-card {
        max-width: 100%;
    }

    .event-info {
        padding: 15px;
    }

    .event-name {
        font-size: 1.1rem;
    }

    /* Merchandise */
    .merchandise-container {
        max-width: 95%;
    }
    
    .merchandise-image-wrapper {
        margin-bottom: 25px;
    }
    
    .merchandise-contact-btn {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-option {
        padding: 25px 15px;
    }

    /* Contact */
    .contact-container {
        gap: 30px;
    }

    .contact-form,
    .contact-info {
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .form-submit-btn {
        padding: 14px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    /* Surprise Section */
    .surprise-card {
        width: 95%;
        height: 200px;
    }

    .skeleton-image {
        max-width: 95%;
        max-height: 95%;
        min-width: 200px;
        min-height: 150px;
    }

    .beer-glow {
        width: 40px;
        height: 40px;
        top: 12%;
        right: 8%;
    }

    .surprise-title {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .surprise-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .code-box {
        max-width: 100%;
    }

    .code-box input,
    .code-submit-btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 25px 15px;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .socials {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }

    .socials a {
        margin: 0;
        font-size: 0.95rem;
    }

    /* Audio Button */
    .audio-toggle-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
        border-width: 2px;
    }

    /* Form Modal */
    .form-modal-content {
        padding: 25px 15px;
        max-width: 95%;
    }

    .form-modal-content h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
}

/* =========================
   SMALL MOBILE (up to 400px)
========================= */
@media (max-width: 400px) {
    .section {
        padding: 50px 4%;
    }

    .section h2 {
        font-size: 24px;
    }

    .hero-logo {
        max-width: 240px;
    }

    .bio-text h2 {
        font-size: 28px;
    }

    .surprise-title {
        font-size: 28px;
    }

    .code-box input,
    .code-submit-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .audio-toggle-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 18px;
    }
}

/* =========================
   LARGE DESKTOP (1200px+)
========================= */
@media (min-width: 1200px) {
    .section {
        padding: 120px 12%;
    }

    .band-bio {
        padding: 120px 10%;
    }

    .album {
        gap: 80px;
    }

    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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





/* =========================
   GALLERY (VERTICAL)
========================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 3 / 4; /* formato vertical tipo celular */
    object-fit: cover;
    cursor: pointer;
    border: 2px solid var(--toxic-green);
    filter: grayscale(20%) contrast(115%);
    transition: transform 0.3s, filter 0.3s, box-shadow 0.3s;
    background: #000;
}

.gallery-grid img:hover {
    transform: scale(1.06);
    filter: grayscale(0%) contrast(135%);
    box-shadow: 0 0 25px rgba(26,255,0,0.4);
}

/* =========================
   LIGHTBOX (AJUSTE)
========================= */
.lightbox img {
    max-width: 85%;
    max-height: 90%;
    object-fit: contain;
    border: 3px solid var(--toxic-green);
    box-shadow: 0 0 40px var(--toxic-green);
}

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

/* MOBILE */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid img {
        aspect-ratio: 9 / 16; /* celular puro */
    }
}

/* TABLET */
@media (min-width: 601px) and (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .gallery-grid img {
        aspect-ratio: 3 / 4;
    }
}

/* DESKTOP */
@media (min-width: 901px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}
/* =========================
   IMAGE MODAL
========================= */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 3px solid var(--toxic-green);
    box-shadow: 0 0 50px rgba(26,255,0,0.6);
}

/* CLOSE BUTTON */
.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: var(--fire-orange);
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, color 0.2s;
}

.modal-close:hover {
    color: var(--toxic-green);
    transform: scale(1.2);
}

/* MOBILE ADJUST */
@media (max-width: 600px) {
    .modal img {
        max-width: 95%;
        max-height: 85%;
    }
}

/* =========================
   MERCHANDISE SECTION
========================= */
#merchandise {
    background: #050505;
}

#merchandise h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--fire-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-intro {
    text-align: center;
    color: #888;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* =========================
   MERCHANDISE SECTION
========================= */
.merchandise-container {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.merchandise-image-wrapper {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255,255,255,0.05),
        0 20px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s, box-shadow 0.3s;
}

.merchandise-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 0 1px rgba(196, 87, 27, 0.3),
        0 25px 80px rgba(196, 87, 27, 0.3);
}

.merchandise-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.merchandise-contact-btn {
    padding: 18px 40px;
    background: linear-gradient(45deg, var(--fire-orange), var(--fire-dark));
    border: 2px solid var(--fire-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 
        0 0 20px rgba(196, 87, 27, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.5);
}

.merchandise-contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(196, 87, 27, 0.7),
        0 8px 25px rgba(0, 0, 0, 0.6);
    border-color: var(--toxic-green);
    background: linear-gradient(45deg, var(--toxic-green), var(--fire-orange));
}

.merchandise-contact-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Contact Options Modal */
.contact-options-modal {
    max-width: 700px;
}

.contact-options-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.contact-option {
    background: #0b0b0b;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-option:hover {
    transform: translateY(-5px);
    border-color: var(--fire-orange);
    box-shadow: 0 10px 30px rgba(196, 87, 27, 0.3);
    background: rgba(196, 87, 27, 0.05);
}

.contact-option-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(107, 143, 26, 0.2);
    border: 2px solid var(--toxic-green);
    transition: all 0.3s;
}

.contact-option:hover .contact-option-icon {
    background: rgba(196, 87, 27, 0.2);
    border-color: var(--fire-orange);
    transform: scale(1.1);
}

.contact-option-icon svg {
    width: 32px;
    height: 32px;
    color: var(--toxic-green);
    transition: color 0.3s;
}

.contact-option:hover .contact-option-icon svg {
    color: var(--fire-orange);
}

.whatsapp-option:hover .contact-option-icon {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
}

.whatsapp-option:hover .contact-option-icon svg {
    color: #25d366;
}

.email-option:hover .contact-option-icon {
    background: rgba(196, 87, 27, 0.2);
    border-color: var(--fire-orange);
}

.email-option:hover .contact-option-icon svg {
    color: var(--fire-orange);
}

.form-option:hover .contact-option-icon {
    background: rgba(107, 143, 26, 0.2);
    border-color: var(--toxic-green);
}

.form-option:hover .contact-option-icon svg {
    color: var(--toxic-green);
}

.contact-option h4 {
    margin: 0;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.contact-option p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

/* =========================
   CONTACT SECTION
========================= */
#contact {
    background: #050505;
}

#contact h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--fire-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form {
    background: #0b0b0b;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-info {
    background: #0b0b0b;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-info h3 {
    color: var(--fire-orange);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #888;
}

.contact-info strong {
    color: var(--white);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #0b0b0b;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.social-links a:hover {
    transform: translateX(5px);
    border-color: var(--fire-orange);
    background: rgba(196, 87, 27, 0.1);
    color: var(--fire-orange);
}

.social-links a.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.social-links a.instagram:hover {
    border-color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
    color: #E4405F;
}

.social-links a.tiktok:hover {
    border-color: #000;
    background: rgba(0, 0, 0, 0.2);
    color: #000;
}

.social-links a.spotify:hover {
    border-color: #1DB954;
    background: rgba(29, 185, 84, 0.1);
    color: #1DB954;
}

.social-links a svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* =========================
   FORM STYLES
========================= */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--fire-orange);
    box-shadow: 0 0 0 3px rgba(196, 87, 27, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group select {
    cursor: pointer;
}

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

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, var(--fire-orange), var(--fire-dark));
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: opacity 0.3s, transform 0.3s;
    margin-top: 10px;
}

.form-submit-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* =========================
   FORM MODAL
========================= */
.form-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.form-modal-content {
    background: #0b0b0b;
    padding: 30px 25px 25px;
    border-radius: 16px;
    border: 2px solid var(--fire-orange);
    max-width: 500px;
    width: 90%;
    max-width: min(500px, 90vw);
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    box-shadow: 0 0 50px rgba(196, 87, 27, 0.3);
    box-sizing: border-box;
    margin: 20px;
}

/* Smaller form for merchandise */
#merchFormModal .form-modal-content {
    max-width: 450px;
    max-width: min(450px, 90vw);
    padding: 25px 20px 20px;
    max-height: 80vh;
}

.form-modal-content h3 {
    color: var(--fire-orange);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.form-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: var(--fire-orange);
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, color 0.2s;
    line-height: 1;
    z-index: 10;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    border: 2px solid var(--fire-orange);
}

.form-close:hover {
    color: var(--toxic-green);
    transform: scale(1.1) rotate(90deg);
    border-color: var(--toxic-green);
    background: rgba(107, 143, 26, 0.3);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(107, 143, 26, 0.2);
    border: 1px solid var(--toxic-green);
    color: var(--toxic-green);
}

.form-message.error {
    background: rgba(196, 87, 27, 0.2);
    border: 1px solid var(--fire-orange);
    color: var(--fire-orange);
}

/* =========================
   RESPONSIVE FORMS
========================= */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 600px) {
    .contact-form,
    .contact-info {
        padding: 25px;
    }

    .form-modal-content {
        padding: 30px 20px;
    }

    .merchandise-container {
        max-width: 95%;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
}