/* RESET Y VARIABLES */
        :root {
            --primary: #ff0055;
            --secondary: #9c27b0;
            --accent: #00ccff;
            --dark: #0a0a14;
            --darker: #05050a;
            --light: #f5f5f5;
            --gray: #33334a;
            --gray-light: #44445a;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --gradient-accent: linear-gradient(135deg, var(--accent), var(--secondary));
            --shadow: 0 10px 30px rgba(255, 0, 85, 0.15);
            --shadow-heavy: 0 15px 40px rgba(255, 0, 85, 0.25);
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 0, 85, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(156, 39, 176, 0.05) 0%, transparent 20%);
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER Y NAVEGACIÓN */
        header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 0, 85, 0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .logo i {
            font-size: 2rem;
        }

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

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

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

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

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* HERO SECTION */
        .hero {
            padding: 180px 0 100px;
            text-align: center;
            background: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?q=80&w=2070') center/cover no-repeat;
            background-attachment: fixed;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(10, 10, 20, 0.8), rgba(10, 10, 20, 0.95));
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #ccccdd;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
            font-size: 1rem;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }

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

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* SECTION STYLES */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        /* ABOUT SECTION */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 20px;
            color: #ccccdd;
        }

        .viral-highlights {
            background: rgba(51, 51, 74, 0.3);
            border-radius: 15px;
            padding: 25px;
            margin-top: 30px;
            border-left: 4px solid var(--primary);
        }

        .viral-highlights h3 {
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .viral-highlights ul {
            list-style-position: inside;
        }

        .viral-highlights li {
            margin-bottom: 10px;
            color: #ccccdd;
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        /* MEMBERS SECTION */
        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .member-card {
            background: rgba(51, 51, 74, 0.3);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .member-card:hover {
            
            box-shadow: var(--shadow-heavy);
            border-color: rgba(255, 0, 85, 0.3);
        }

        .member-img {
            height: 250px;
            overflow: hidden;
        }

        .member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .member-info {
            padding: 20px;
        }

        .member-info h3 {
            color: var(--primary);
            font-size: 1.4rem;
        }

        .member-info p {
            color: #aaaaaa;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .member-social {
    transform: none !important;
    transition: none !important;

            display: flex;
            gap: 10px;
        }

        .member-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .member-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        /* VOTING SECTION */
        .voting-section {
            background: rgba(5, 5, 10, 0.8);
        }

        .voting-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .voting-form {
            background: rgba(51, 51, 74, 0.3);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 0, 85, 0.2);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #ccccdd;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 0, 85, 0.1);
        }

        .radio-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .radio-option {
            position: relative;
        }

        .radio-option input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .radio-option label {
            display: block;
            padding: 15px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .radio-option input:checked + label {
            background: rgba(255, 0, 85, 0.15);
            border-color: var(--primary);
            color: var(--primary);
            font-weight: 600;
        }

        .radio-option label:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .voting-results {
            background: rgba(51, 51, 74, 0.3);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255, 0, 85, 0.2);
        }

        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .results-header h3 {
            color: var(--accent);
        }

        .results-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .result-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .result-name {
            width: 150px;
            font-weight: 500;
        }

        .result-bar-container {
            flex: 1;
            height: 20px;
            background: rgba(255, 255, 255, 0.07);
            border-radius: 10px;
            overflow: hidden;
        }

        .result-bar {
            height: 100%;
            background: var(--gradient);
            border-radius: 10px;
            width: 0%;
            transition: width 1s ease-out;
        }

        .result-count {
            width: 50px;
            text-align: right;
            font-weight: 600;
            color: var(--primary);
        }

        /* GALLERY SECTION */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
            position: relative;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 20px;
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        /* VIDEOS SECTION */
        .videos-section {
            background: rgba(5, 5, 10, 0.8);
        }

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

        .video-item {
            background: rgba(51, 51, 74, 0.3);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-info {
            padding: 20px;
        }

        .video-info h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .video-info p {
    display: -webkit-box;
    -webkit-line-clamp: 5;     /* 👈 número de líneas visibles */
    -webkit-box-orient: vertical;
    overflow: hidden;

    line-height: 1.4em;
    max-height: calc(1.4em * 5);
}


        /* SOCIAL SECTION */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: var(--shadow-heavy);
        }

        /* FOOTER */
        footer {
            background: var(--darker);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 0, 85, 0.2);
        }

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

        .footer-column h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 20px;
        }

        .footer-column p {
            color: #aaaaaa;
            margin-bottom: 15px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #aaaaaa;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #777777;
            font-size: 0.9rem;
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .about-content, .voting-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .members-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 20, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                border-bottom: 1px solid rgba(255, 0, 85, 0.2);
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-links a {
                padding: 15px;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .radio-group {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .members-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }

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

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

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

        .popup-content {
            background: var(--dark);
            border-radius: 15px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            transform: scale(0.9);
            transition: var(--transition);
            border: 1px solid var(--primary);
            box-shadow: var(--shadow-heavy);
        }

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

        .popup h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .popup p {
            margin-bottom: 25px;
            color: #ccccdd;
        }

        .close-popup {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: #ccccdd;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-popup:hover {
            color: var(--primary);
        }
        .form-block {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
}

.form-block h4 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    font-weight: 600;
}

/* BLOQUE NOMBRE */
.name-block {
    background: rgba(255, 0, 85, 0.08);
    border-left: 4px solid var(--primary);
}

/* BLOQUE EMAIL */
.email-block {
    background: rgba(0, 204, 255, 0.08);
    border-left: 4px solid var(--accent);
}

/* =========================
   HERO VOTE CIRCLES
========================= */
.hero-circles {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.vote-circle {
    width: 90px;
    height: 90px;
    position: relative;
    text-align: center;
    color: white;
}

.vote-circle svg {
    transform: rotate(-90deg);
    width: 90px;
    height: 90px;
}

.vote-circle circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.vote-circle .bg {
    stroke: rgba(255,255,255,0.15);
}

.vote-circle .progress {
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    transition: stroke-dashoffset 1s ease;
    filter: drop-shadow(0 0 6px currentColor);
    stroke: currentColor; /* 👈 ESTA */
}

.vote-circle .percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 700;
}

.vote-circle .name {
    margin-top: 8px;
    font-size: 0.75rem;
    opacity: 0.85;
}

/* Colores individuales */
.vote-circle.color-1 { color: #ff0055; }
.vote-circle.color-2 { color: #9c27b0; }
.vote-circle.color-3 { color: #00ccff; }
.vote-circle.color-4 { color: #ff9800; }
.vote-circle.color-5 { color: #4caf50; }

@media (max-width: 480px) {
    .vote-circle {
        width: 70px;
        height: 70px;
    }
    .vote-circle svg {
        width: 70px;
        height: 70px;
    }
}

 /* =========================
   MINI CIRCULO % EN INTEGRANTES
========================= */
.vote-mini {
    width: 56px;
    height: 56px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vote-mini svg {
    width: 56px;
    height: 56px;
    transform: rotate(-90deg);
}

.vote-mini circle {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
}

.vote-mini .bg {
    stroke: rgba(255,255,255,0.15);
}

.vote-mini .progress {
    stroke: var(--primary);
    stroke-dasharray: 94;
    stroke-dashoffset: 94;
    transition: stroke-dashoffset .8s ease;
}

.vote-mini::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
    pointer-events: none;
}

.vote-mini .percent {
    position: absolute;
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary);
}

/* Alinear con redes */
.member-social {
    transform: none !important;
    transition: none !important;

    align-items: center;
}
  /* PLAY + VOTE ICONS */
.audio-play,
.vote-btn {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all .25s ease;
}

.audio-play:hover {
    background: var(--accent);
    transform: scale(1.15);
}

.vote-btn:hover {
    background: var(--primary);
    transform: scale(1.15);
}

/* mantener todo alineado */
.member-social {
    transform: none !important;
    transition: none !important;

    display: flex;
    align-items: center;
    gap: 10px;
}
   /* =========================
   MENU PLAY BUTTON
========================= */
.menu-audio-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    color: white !important;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    transition: all .25s ease;
}

.menu-audio-play:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-heavy);
}

.menu-audio-play.playing {
    background: var(--gradient-accent);
}
  /* =========================
   LINEA INFERIOR % COLORES
========================= */
.member-percent-line {
    transform: none !important;
    transition: none !important;

    transform: none !important;
    transition: none !important;

    display: flex;
    gap: 32px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.mini-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.9;
    box-shadow: 0 0 8px currentColor;
}

/* mismos colores del HERO */
.mini-circle.color-1 { color: #ff0055; }
.mini-circle.color-2 { color: #9c27b0; }
.mini-circle.color-3 { color: #00ccff; }
.mini-circle.color-4 { color: #ff9800; }
.mini-circle.color-5 { color: #4caf50; }


/* =========================
   LINEA INFERIOR - CIRCULOS IGUAL HERO
========================= */
.member-percent-line {
    transform: none !important;
    transition: none !important;

    transform: none !important;
    transition: none !important;

    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

/* versión mini del hero */
.vote-circle.mini {
    width: 36px;
    height: 36px;
}

.vote-circle.mini svg {
    width: 36px;
    height: 36px;
}

.vote-circle.mini circle {
    stroke-width: 4;
}

.vote-circle.mini .percent {
    font-size: 0.65rem;
    font-weight: 700;
}



.vote-circle,
.vote-circle.mini,
.vote-mini {
    overflow: visible;
}

.member-card {
    contain: paint;
}
.vote-circle,
.vote-circle.mini {
    position: relative;
}

.vote-circle::after,
.vote-circle.mini::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    box-shadow: 0 0 12px currentColor;
    opacity: .85;
    pointer-events: none;
}

/* 🔒 FIX DEFINITIVO MEMBER-PERCENT-LINE */
.member-percent-line {
    display: flex !important;
    gap: 23px !important;
    margin-top: 23px !important;
    flex-wrap: wrap !important;

    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* =========================
   NEON PURO – SIN MOVIMIENTO
========================= */

/* nada se mueve */
.vote-circle,
.vote-circle *,
.vote-circle.mini,
.vote-circle.mini * {
    transform: none !important;
    transition: none !important;
}

/* brillo neon SOLO visual */
.vote-circle::after,
.vote-circle.mini::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    box-shadow: 0 0 14px currentColor;
    opacity: .85;
    pointer-events: none;

    /* pulso SUAVE solo de brillo */
    animation: none !important;
}

/* animación SOLO de opacidad y sombra */
@keyframes neonPulse {
    0% {
        opacity: .6;
        box-shadow: 0 0 8px currentColor;
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 18px currentColor;
    }
    100% {
        opacity: .6;
        box-shadow: 0 0 8px currentColor;
    }
}

/* % SIEMPRE centrado */
.vote-circle .percent,
.vote-circle.mini .percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    pointer-events: none;
}
/* =========================
   NEON PURO – SIN MOVIMIENTO
========================= */

/* nada se mueve */
.vote-circle,
.vote-circle *,
.vote-circle.mini,
.vote-circle.mini * {
    transform: none !important;
    transition: none !important;
}

/* brillo neon SOLO visual */
.vote-circle::after,
.vote-circle.mini::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    box-shadow: 0 0 14px currentColor;
    opacity: .85;
    pointer-events: none;

    /* pulso SUAVE solo de brillo */
    animation: none !important;
}

/* animación SOLO de opacidad y sombra */
@keyframes neonPulse {
    0% {
        opacity: .6;
        box-shadow: 0 0 8px currentColor;
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 18px currentColor;
    }
    100% {
        opacity: .6;
        box-shadow: 0 0 8px currentColor;
    }
}

/* % SIEMPRE centrado */
.vote-circle .percent,
.vote-circle.mini .percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    pointer-events: none;
}
.vote-mini.audio-reactive {
    box-shadow: none !important;
}

.vote-mini.audio-reactive::after {
    box-shadow: none !important;
    opacity: 0 !important;
}


.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.tiktok-section blockquote {
    margin: 0 auto;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.tiktok-section blockquote {
    margin: 0 auto;
}


/* =========================
   INSTAGRAM SECTION
========================= */
.instagram-section{
    background:rgba(5,5,10,.85);
}

.instagram-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:24px;
}

.ig-card{
    background:rgba(20,20,30,.9);
    border-radius:16px;
    padding:12px;
    box-shadow:0 12px 35px rgba(0,0,0,.6),0 0 18px rgba(255,0,85,.25);
    transition:.35s ease;
}

.ig-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 55px rgba(0,0,0,.8),0 0 28px rgba(255,0,85,.45);
}

.ig-card iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 14px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .ig-card iframe {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .ig-card iframe {
        height: 400px;
    }
}
 
 /* TIKTOK SECTION STYLES */
.tiktok-section {
    background: rgba(10, 10, 20, 0.9);
}

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

.tiktok-card {
    background: rgba(30, 30, 45, 0.8);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 85, 0.1);
}

.tiktok-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 85, 0.25);
    border-color: rgba(255, 0, 85, 0.3);
}

.tiktok-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 !important;
}
 
 /* SPOTIFY SECTION STYLES */
.spotify-section {
    background: rgba(10, 10, 25, 0.95);
    border-top: 1px solid rgba(29, 185, 84, 0.2);
}

.spotify-featured {
    margin-bottom: 50px;
}

.spotify-featured h3, .spotify-tracks h3 {
    color: #1DB954; /* Verde Spotify */
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.spotify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.spotify-card {
    background: rgba(30, 30, 50, 0.7);
    border-radius: 16px;
    padding: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 185, 84, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.spotify-card.large {
    grid-column: 1 / -1; /* Ocupa todo el ancho */
    max-width: 800px;
    margin: 0 auto;
}

.spotify-card:hover {
    transform: translateY(-5px);
    border-color: rgba(29, 185, 84, 0.4);
    box-shadow: 0 15px 35px rgba(29, 185, 84, 0.15);
}

.track-title {
    text-align: center;
    margin-top: 12px;
    font-weight: 600;
    color: #f0f0f0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .spotify-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .spotify-card iframe {
        height: 152px;
    }
    
    .spotify-card.large iframe {
        height: 300px;
    }
}
 
 /* CHAT SECTION */
        .chat-section {
            background: rgba(5, 5, 10, 0.9);
        }

        .chat-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .chat-box {
            background: rgba(51, 51, 74, 0.3);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 0, 85, 0.2);
            height: 500px;
            display: flex;
            flex-direction: column;
        }

        .chat-header {
            padding: 20px;
            background: rgba(255, 0, 85, 0.1);
            border-bottom: 1px solid rgba(255, 0, 85, 0.2);
        }

        .chat-header h3 {
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .message {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 10px;
            max-width: 80%;
            animation: fadeIn 0.3s ease-out;
        }

        .message.user {
            background: rgba(255, 0, 85, 0.1);
            align-self: flex-end;
            border-right: 3px solid var(--primary);
        }

        .message.other {
            background: rgba(0, 204, 255, 0.1);
            align-self: flex-start;
            border-left: 3px solid var(--accent);
        }

        .message-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }

        .message-user {
            font-weight: 600;
            color: var(--primary);
        }

        .message-time {
            font-size: 0.8rem;
            color: #8888aa;
        }

        .message-text {
            color: #ccccdd;
        }

        .chat-input {
            padding: 20px;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            gap: 10px;
        }

        .chat-input input {
            flex: 1;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
        }

        .chat-input input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .chat-input button {
            padding: 14px 24px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .chat-input button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
 
 
 /* =========================
   MENU WIDE
========================= */
.container-wide {
    max-width: 1600px;
    padding: 0 30px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

/* divisor visual */
.nav-separator {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.15);
    margin: 0 10px;
}

/* auth buttons */
.nav-auth {
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-auth.login {
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}

.nav-auth.login:hover {
    background: rgba(255,255,255,0.1);
}

.nav-auth.register {
    background: var(--gradient);
    color: #fff;
}

.nav-auth.register:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-2px);
}

/* =========================
   AUTH MENU (LOGIN / USER)
========================= */

.auth-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-guest,
.auth-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-user .user-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--light);
    font-weight: 600;
}

.auth-user .user-icon i {
    font-size: 1.2rem;
}

.auth-area .btn.small {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Mobile fix */
@media (max-width: 768px) {
    .auth-area {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .auth-guest,
    .auth-user {
        width: 100%;
        justify-content: center;
    }
}
/* =========================
   HEADER WIDE (FULL WIDTH)
========================= */

/* Header ocupa todo el ancho */
header {
    width: 100%;
    left: 0;
    right: 0;
}

/* El contenedor del header ahora es wide */
header .container {
    max-width: 1400px;   /* puedes subir a 1600px si quieres */
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
}

/* Nav usa todo el ancho */
header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Links del menú en una sola línea */
.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;      /* CLAVE: no se baja */
}

/* Evita que los links se rompan */
.nav-links a {
    white-space: nowrap;
}

/* Área de login compacta */
.auth-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Botones auth más compactos */
.auth-area .btn.small {
    padding: 6px 10px;
    font-size: 0.8rem;
}
@media (max-width: 992px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .auth-area {
        margin-top: 10px;
    }
}

