/* ============================================
   EL CABALLO JG - STYLES
   Reggaeton & Electro Latino Landing Page
   ============================================ */

:root {
    --color-bg: #0a0a0f;
    --color-bg-alt: #12121a;
    --color-primary: #ff00ff;
    --color-secondary: #00ffff;
    --color-accent: #ff6b00;
    --color-text: #ffffff;
    --color-text-muted: #8888aa;
    --gradient-neon: linear-gradient(135deg, #ff00ff 0%, #00ffff 50%, #ff6b00 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --glow-primary: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    --glow-secondary: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body { cursor: auto; }
}

/* Logo Background - Difuminado */
.logo-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('logo.jpeg');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    filter: blur(2px);
    pointer-events: none;
    z-index: 0;
    animation: logoFloat 20s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.03;
    }
    25% {
        transform: scale(1.05) rotate(1deg);
        opacity: 0.04;
    }
    50% {
        transform: scale(1.1) rotate(0deg);
        opacity: 0.05;
    }
    75% {
        transform: scale(1.05) rotate(-1deg);
        opacity: 0.04;
    }
}

/* Logo adicional en secciones específicas */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('logo.jpeg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.06;
    filter: blur(8px);
    pointer-events: none;
    z-index: 0;
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% {
        opacity: 0.04;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.08;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@media (max-width: 768px) {
    .logo-background {
        background-size: 80%;
        opacity: 0.02;
    }

    .hero::before {
        width: 300px;
        height: 300px;
        opacity: 0.04;
    }
}

/* Custom Cursor */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--gradient-neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
    filter: blur(5px);
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    mix-blend-mode: screen;
}

.cursor-glow.active {
    width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .cursor-glow { display: none; }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--color-text);
}

.logo-jg {
    font-family: var(--font-display);
    font-size: 2.2rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
    }

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        var(--gradient-dark);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 100px 50px, rgba(255, 0, 255, 0.8), transparent),
        radial-gradient(2px 2px at 400px 150px, rgba(0, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 200px 250px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 600px 300px, rgba(255, 107, 0, 0.8), transparent),
        radial-gradient(1px 1px at 800px 400px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 300px 500px, rgba(255, 0, 255, 0.6), transparent),
        radial-gradient(1px 1px at 700px 200px, rgba(0, 255, 255, 0.6), transparent);
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line:first-child {
    font-size: clamp(2rem, 8vw, 5rem);
    color: var(--color-text-muted);
    letter-spacing: 10px;
}

.title-main {
    font-size: clamp(4rem, 18vw, 12rem);
    letter-spacing: 5px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5));
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 0, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(0, 255, 255, 0.8)); }
}

.title-accent {
    font-size: clamp(3rem, 12vw, 8rem);
    color: var(--color-secondary);
    letter-spacing: 15px;
    text-shadow: var(--glow-secondary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-neon);
    color: var(--color-bg);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.7), 0 0 60px rgba(0, 255, 255, 0.5);
}

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

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-muted);
    font-size: 0.7rem;
    letter-spacing: 3px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--color-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { height: 50px; opacity: 1; }
    50% { height: 70px; opacity: 0.5; }
}

/* Section Styles */
section {
    padding: 6rem 4rem;
}

@media (max-width: 768px) {
    section { padding: 4rem 1.5rem; }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

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

.section-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Videos Section */
.videos {
    background: var(--gradient-dark);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 255, 0.3);
}

.video-featured {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 900px) {
    .video-featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

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

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

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

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--gradient-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-featured .play-btn {
    width: 100px;
    height: 100px;
}

.play-btn svg {
    width: 25px;
    height: 25px;
    color: var(--color-bg);
    margin-left: 5px;
}

.video-featured .play-btn svg {
    width: 35px;
    height: 35px;
}

.video-card:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
}

.video-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 0, 0.5); }
    50% { box-shadow: 0 0 25px rgba(255, 107, 0, 0.8); }
}

.video-info {
    padding: 1.5rem;
    background: var(--color-bg-alt);
}

.video-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.video-views {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Gallery Section */
.gallery {
    background: var(--color-bg);
}

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

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.gallery-item-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .gallery-item-lg,
    .gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 0, 255, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Contact Section */
.contact {
    background: var(--gradient-dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

@media (max-width: 900px) {
    .contact {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.contact-desc {
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .social-links {
        justify-content: center;
    }
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.social-instagram:hover {
    background: linear-gradient(45deg, rgba(131, 58, 180, 0.3), rgba(253, 29, 29, 0.3), rgba(252, 176, 69, 0.3));
    border-color: #e1306c;
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
}

.social-tiktok:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: #69c9d0;
    box-shadow: 0 10px 30px rgba(105, 201, 208, 0.3);
}

.social-spotify:hover {
    background: rgba(30, 215, 96, 0.2);
    border-color: #1ed760;
    box-shadow: 0 10px 30px rgba(30, 215, 96, 0.3);
}

.social-email:hover {
    background: rgba(255, 107, 0, 0.2);
    border-color: #ff6b00;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

/* ============================================
   SPOTIFY SECTION
   ============================================ */

.spotify {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0d1a0d 50%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.spotify::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 215, 96, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.spotify-embeds {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.spotify-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(30, 215, 96, 0.2);
    transition: all 0.3s ease;
}

.spotify-embed:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(30, 215, 96, 0.3);
}

.spotify-embed iframe {
    border-radius: 12px;
    display: block;
}

.spotify-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1ed760, #1db954);
    border: none;
    border-radius: 50px;
    color: white;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(30, 215, 96, 0.4);
}

.spotify-follow-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(30, 215, 96, 0.5);
}

.spotify-follow-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .spotify-embeds {
        gap: 1rem;
    }

    .spotify-follow-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .track-play {
        width: 38px;
        height: 38px;
    }
}

.contact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vinyl-record {
    width: 300px;
    height: 300px;
    background:
        repeating-radial-gradient(circle at center,
            transparent 0px, transparent 2px,
            rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px
        ),
        radial-gradient(circle, #1a1a2e 30%, #0a0a0f 100%);
    border-radius: 50%;
    position: relative;
    animation: vinylSpin 10s linear infinite;
    box-shadow:
        0 0 50px rgba(255, 0, 255, 0.3),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-neon);
    border-radius: 50%;
    box-shadow: var(--glow-primary);
}

.vinyl-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--color-bg);
    border-radius: 50%;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .vinyl-record {
        width: 200px;
        height: 200px;
    }

    .vinyl-center {
        width: 50px;
        height: 50px;
    }
}

/* Footer */
.footer {
    background: var(--color-bg);
    padding: 3rem 4rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
}

.footer-logo .logo-jg {
    font-size: 1.5rem;
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    transform: rotate(180deg);
    color: var(--color-bg-alt);
    opacity: 0.3;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--color-text);
}

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

.modal-video {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.3);
}

.modal-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.modal-image-content {
    max-width: 80vw;
    max-height: 80vh;
}

.modal-image-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge { animation-delay: 0.2s; }
.hero-title { animation-delay: 0.4s; }
.hero-subtitle { animation-delay: 0.6s; }
.hero-cta { animation-delay: 0.8s; }

/* Glitch Effect for Title (optional hover) */
.title-main:hover {
    animation: glitch 0.5s ease;
}

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

/* Selection Color */
::selection {
    background: var(--color-primary);
    color: var(--color-bg);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-neon);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ============================================
   NUEVOS ESTILOS BRUTALES
   ============================================ */

/* Cursor Trail - Estela del cursor */
.cursor-trail {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

.cursor-trail.active {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.4) 0%, transparent 70%);
}

@media (max-width: 768px) {
    .cursor-trail { display: none; }
}

/* Gallery Content - Texto brutal */
.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--gradient-neon);
    color: var(--color-bg);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 3px;
    margin-bottom: 0.5rem;
    animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.8); }
}

.gallery-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 3px;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    background: linear-gradient(90deg, #fff 0%, #00ffff 50%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Gallery Corners - Efectos de esquina */
.gallery-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-secondary);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.gallery-corner-tl {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.gallery-corner-br {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.gallery-item:hover .gallery-corner {
    opacity: 1;
    box-shadow: var(--glow-secondary);
}

.gallery-item:hover .gallery-corner-tl {
    top: 10px;
    left: 10px;
}

.gallery-item:hover .gallery-corner-br {
    bottom: 10px;
    right: 10px;
}

/* Gallery Glitch Effect */
.gallery-item.glitch {
    animation: galleryGlitch 0.2s ease;
}

@keyframes galleryGlitch {
    0% { transform: translate(0); filter: hue-rotate(0deg); }
    25% { transform: translate(-5px, 5px); filter: hue-rotate(90deg); }
    50% { transform: translate(5px, -5px); filter: hue-rotate(180deg); }
    75% { transform: translate(-5px, -5px); filter: hue-rotate(270deg); }
    100% { transform: translate(0); filter: hue-rotate(360deg); }
}

/* Gallery Hover Enhanced */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
        transparent 0%,
        rgba(255, 0, 255, 0.1) 25%,
        rgba(0, 255, 255, 0.1) 50%,
        rgba(255, 107, 0, 0.1) 75%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

.gallery-item:hover::before {
    opacity: 1;
}

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

/* Vinyl Music Indicator */
.music-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.music-bars {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 30px;
}

.music-bars span {
    width: 4px;
    background: var(--gradient-neon);
    border-radius: 2px;
    animation: musicBar 0.8s ease-in-out infinite;
}

.music-bars span:nth-child(1) { height: 10px; animation-delay: 0s; }
.music-bars span:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.music-bars span:nth-child(3) { height: 15px; animation-delay: 0.2s; }
.music-bars span:nth-child(4) { height: 25px; animation-delay: 0.3s; }
.music-bars span:nth-child(5) { height: 12px; animation-delay: 0.4s; }

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

.vinyl-record:not(.playing) .music-bars span {
    animation: none;
    opacity: 0.3;
}

.vinyl-record.playing .music-bars span {
    animation: musicBar 0.4s ease-in-out infinite;
}

.music-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-text);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.music-track {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-top: 0.3rem;
    opacity: 0.8;
}

/* Vinyl Playing State */
.vinyl-record.playing {
    animation: vinylSpin 2s linear infinite;
    box-shadow:
        0 0 80px rgba(255, 0, 255, 0.6),
        0 0 120px rgba(0, 255, 255, 0.4),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.vinyl-record.playing .vinyl-center {
    animation: centerPulse 1s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% { box-shadow: var(--glow-primary); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.6); }
}

/* Vinyl Hover Enhancement */
.vinyl-record {
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.vinyl-record:hover:not(.playing) {
    box-shadow:
        0 0 60px rgba(255, 0, 255, 0.5),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Gallery Item Enhanced Border */
.gallery-item {
    border: 1px solid transparent;
    transition: all 0.4s ease, border-color 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(255, 0, 255, 0.5);
    box-shadow:
        0 0 30px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
}

/* Scan Line Effect on Gallery */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
    animation: scanLine 2s linear infinite;
}

.gallery-item:hover::after {
    opacity: 0.7;
}

@keyframes scanLine {
    0% { top: 0; }
    100% { top: 100%; }
}

/* ============================================
   VIDEOS ESPECIALES - WHATSAPP & SEÑORITA
   ============================================ */

.video-special {
    position: relative;
}

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

.video-custom-bg {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* WHATSAPP Theme */
.video-whatsapp {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 30%, #25d366 70%, #dcf8c6 100%);
    animation: whatsappPulse 3s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        background: linear-gradient(135deg, #075e54 0%, #128c7e 30%, #25d366 70%, #dcf8c6 100%);
    }
    50% {
        background: linear-gradient(135deg, #128c7e 0%, #25d366 30%, #075e54 70%, #dcf8c6 100%);
    }
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    animation: iconFloat 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.whatsapp-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.video-custom-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 5px;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
    z-index: 2;
}

/* Chat Bubbles Animation */
.chat-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px 20px 20px 5px;
    animation: bubbleFloat 4s ease-in-out infinite;
}

.bubble-1 {
    width: 60px;
    height: 25px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 80px;
    height: 30px;
    top: 60%;
    right: 15%;
    border-radius: 20px 20px 5px 20px;
    animation-delay: 1s;
}

.bubble-3 {
    width: 50px;
    height: 20px;
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes bubbleFloat {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-15px) scale(1.1);
    }
}

/* SEÑORITA Theme */
.video-senorita {
    background: linear-gradient(135deg, #1a0a1e 0%, #4a1942 25%, #ff1493 50%, #ff69b4 75%, #ffb6c1 100%);
    animation: senoritaGlow 4s ease-in-out infinite;
}

@keyframes senoritaGlow {
    0%, 100% {
        background: linear-gradient(135deg, #1a0a1e 0%, #4a1942 25%, #ff1493 50%, #ff69b4 75%, #ffb6c1 100%);
    }
    50% {
        background: linear-gradient(135deg, #2d0a2d 0%, #8b1874 25%, #ff69b4 50%, #ff1493 75%, #ffc0cb 100%);
    }
}

.senorita-silhouette {
    width: 100px;
    height: 100px;
    background:
        radial-gradient(ellipse 30px 40px at 50% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
        radial-gradient(ellipse 50px 60px at 50% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    position: relative;
    margin-bottom: 0.5rem;
    animation: silhouetteGlow 2s ease-in-out infinite;
}

.senorita-silhouette::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
}

.senorita-silhouette::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(255, 255, 255, 0.3);
}

@keyframes silhouetteGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 20, 147, 0.8)); }
}

/* Sparkles Animation */
.sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkleAnim 2s ease-in-out infinite;
}

.sparkle-1 { top: 15%; left: 20%; animation-delay: 0s; }
.sparkle-2 { top: 25%; right: 25%; animation-delay: 0.5s; }
.sparkle-3 { bottom: 30%; left: 15%; animation-delay: 1s; }
.sparkle-4 { bottom: 20%; right: 20%; animation-delay: 1.5s; }

@keyframes sparkleAnim {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

/* Video Badge Variants */
.video-badge-new {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: badgePulseGreen 2s ease-in-out infinite;
}

@keyframes badgePulseGreen {
    0%, 100% { box-shadow: 0 0 10px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 25px rgba(37, 211, 102, 0.8); }
}

.video-badge-hot {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    animation: badgePulseHot 2s ease-in-out infinite;
}

@keyframes badgePulseHot {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 20, 147, 0.5); }
    50% { box-shadow: 0 0 25px rgba(255, 20, 147, 0.8); }
}

/* Hover Effects for Special Videos */
.video-special:hover .video-whatsapp {
    animation: whatsappHover 0.5s ease forwards;
}

@keyframes whatsappHover {
    to {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 50%, #075e54 100%);
        box-shadow: inset 0 0 50px rgba(37, 211, 102, 0.3);
    }
}

.video-special:hover .video-senorita {
    animation: senoritaHover 0.5s ease forwards;
}

@keyframes senoritaHover {
    to {
        background: linear-gradient(135deg, #ff1493 0%, #ff69b4 50%, #ffb6c1 100%);
        box-shadow: inset 0 0 50px rgba(255, 20, 147, 0.3);
    }
}

.video-special:hover .whatsapp-icon {
    animation: iconPop 0.3s ease forwards;
}

.video-special:hover .senorita-silhouette {
    animation: silhouettePop 0.3s ease forwards;
}

@keyframes iconPop {
    to { transform: scale(1.2); }
}

@keyframes silhouettePop {
    to { transform: scale(1.15); filter: drop-shadow(0 0 30px rgba(255, 105, 180, 1)); }
}
