/* ===================================
   VARIABLES Y RESET GLOBAL
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f0f0f;
    --secondary-dark: #1a1a1a;
    --tertiary-dark: #2d2d2d;
    --accent-color: #bcf5ff;
    --accent-secondary: #00d9ff;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* ===================================
   BARRA DE NAVEGACIÓN
   =================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
  
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 10px;
}

.logo-link:hover {
    color: var(--accent-color);
    transform: scale(1.08);
 
}

.logo-icon {
    font-size: 2.2rem;
    animation: bounce 2s infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(255, 0, 110, 0.2));
    border-radius: 50%;
    border: 2px solid var(--accent-secondary);
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   CONTENEDOR PRINCIPAL
   =================================== */

.app-container {
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SECCIÓN HERO
   =================================== */

.hero-section {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

/* CARRUSEL DE IMÁGENES */
.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.7) 0%, 
        rgba(42, 42, 42, 0.6) 100%);
    z-index: 1;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 0, 110, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: rgba(255, 0, 110, 0.8);
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: slideUp 0.8s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-color), #ff4081);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
}

/* ===================================
   SECCIONES DE CARACTERÍSTICAS
   =================================== */

.features-section {
    margin-bottom: 4rem;
}

.features-section h2,
.artists-preview h2,
.team-section h1,
.artists-section h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background: rgba(255, 0, 110, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================
   SECCIÓN DE LOGROS
   =================================== */

.achievements-section {
    margin-bottom: 4rem;
}

.achievements-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.achievement-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    background: rgba(255, 0, 110, 0.05);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.achievement-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.achievement-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===================================
   VISTA PREVIA DE ARTISTAS
   =================================== */

.artists-preview-grid,
.team-grid,
.artists-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.artist-card {
    background: var(--secondary-dark);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.2);
}

.artist-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.artist-info {
    padding: 1.5rem;
}

.artist-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-secondary);
}

.artist-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.artist-video-count {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.artist-card-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.artist-card-btn {
    padding: 0.7rem;
    background: linear-gradient(135deg, var(--accent-color), #ff4081);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    font-size: 0.9rem;
}

.artist-card-btn.btn-perfil {
    background: linear-gradient(135deg, #00d9ff, #00a8cc);
}

.artist-card-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* ===================================
   EQUIPO
   =================================== */

.team-member {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.member-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-member h3 {
    padding: 1.5rem 1.5rem 0;
    font-size: 1.3rem;
}

.role {
    color: var(--accent-secondary);
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.bio {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ===================================
   REPRODUCTOR MODAL
   =================================== */

.player-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
}

.player-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-modal-content {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--tertiary-dark) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(10px);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    transform: rotate(90deg);
}

.player-container {
    padding: 2rem;
}

/* ===================================
   YOUTUBE IFRAME
   =================================== */

.youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===================================
   MODO AUDIO
   =================================== */

.player-audio-mode {
    min-height: 400px;
    background: linear-gradient(135deg, 
        rgba(255, 0, 110, 0.1) 0%, 
        rgba(0, 217, 255, 0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.audio-player-bg {
    text-align: center;
    width: 100%;
    padding: 3rem;
}

.blunark-logo {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

#audioTitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-secondary);
}

.audio-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.audio-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #ff4081);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.audio-btn:hover {
    transform: scale(1.1);
}

.audio-progress {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: var(--tertiary-dark);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    width: 0%;
    transition: width 0.1s linear;
}

.audio-time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================================
   CONTROLES DEL REPRODUCTOR
   =================================== */

.player-controls {
    background: var(--tertiary-dark);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.control-left h3 {
    color: var(--accent-secondary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.control-left p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.control-middle {
    flex: 1;
}

.mode-toggle {
    background: linear-gradient(135deg, var(--accent-color), #ff4081);
    border: none;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.mode-toggle:hover {
    transform: scale(1.05);
}

.control-right {
    display: flex;
    gap: 1rem;
}

.player-btn {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--accent-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.player-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.1);
}

.player-btn.active {
    border-color: var(--accent-color);
    background: rgba(255, 0, 110, 0.2);
    color: var(--accent-color);
}

/* ===================================
   PLAYLIST
   =================================== */

.playlist-container {
    background: var(--tertiary-dark);
    border-radius: 15px;
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.playlist-container h4 {
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.playlist {
    list-style: none;
}

.playlist li {
    padding: 0.8rem;
    border-bottom: 1px solid var(--glass-border);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

.playlist li:hover {
    background: rgba(255, 0, 110, 0.1);
    padding-left: 1.2rem;
    color: var(--accent-secondary);
}

.playlist li.active {
    background: rgba(255, 0, 110, 0.2);
    color: var(--accent-color);
    font-weight: bold;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-logo h4 {
    margin: 0;
    padding: 0;
    line-height: 1;
    color: var(--accent-secondary);
    font-size: 1.1rem;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-section h4 {
    color: var(--accent-secondary);
    margin: 1rem 0 1rem 0;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent-color);
    transition: var(--transition);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    display: inline-block;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
}

.footer-section ul li a:hover {
    border-bottom-color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 0.11rem;
    flex-wrap: wrap;
}

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
   
    border-radius: 50%;
}

.social-links a:hover {
    transform: scale(1.15) translateY(-3px);
   
}

/* Colores específicos para redes sociales */
.social-links a[title="youtube"]:hover {
   
}

.social-links a[title="instagram"]:hover {
    
}

.social-links a[title="spotify"]:hover {
   
}

.social-links a[title="twitter"]:hover {
    
}

.social-links a[title="tiktok"]:hover {
    
}

.social-links a[title="website"]:hover {
    
}

/* Iconos PNG de redes sociales */
.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
   
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon-link:hover {
    transform: scale(1.15) translateY(-3px);
    
}

.social-icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(1.2) drop-shadow(0 0 2px rgba(0, 217, 255, 0.3));
}

.contact-link {
    display: inline-block;
    padding: 0.5rem 1rem;
   
    border-radius: 8px;
    transition: var(--transition);
}

.contact-link:hover {
    background: rgba(0, 217, 255, 0.2);
    border-color: var(--accent-secondary);
}

/* Colores hover específicos para iconos PNG por red social */
.social-icon-link[title="youtube"]:hover {
   
}

.social-icon-link[title="instagram"]:hover {
   
}

.social-icon-link[title="spotify"]:hover {
    
}

.social-icon-link[title="twitter"]:hover {
    
}

.social-icon-link[title="tiktok"]:hover {
    
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================================
   PERFIL DEL ARTISTA - REDES SOCIALES
   =================================== */

.redes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.red-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.red-link:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    background: rgba(255, 0, 110, 0.05);
    box-shadow: 0 10px 25px rgba(255, 0, 110, 0.15);
}

.red-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
   
    filter: brightness(1.1) drop-shadow(0 0 3px rgba(0, 217, 255, 0.4));
    transition: var(--transition);
}

.red-link:hover .red-icon-img {
    filter: brightness(1.3) drop-shadow(0 0 8px rgba(255, 0, 110, 0.6));
    transform: scale(1.1);
}

.red-nombre {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.red-link:hover .red-nombre {
    color: var(--accent-color);
}

/* ===================================
   MENÚ DEL REPRODUCTOR
   =================================== */

/* Botón flotante FAB */
.player-fab-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
}

.fab-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #ff4081);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.6);
}

.fab-icon {
    animation: bounce 2s infinite;
}

/* Modal del Menú del Reproductor */
.player-menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1900;
    overflow-y: auto;
    padding: 2rem;
}

.player-menu-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-menu-content {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--tertiary-dark) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.player-menu-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.player-menu-header h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.player-menu-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.player-menu-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.menu-option:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
    background: rgba(255, 0, 110, 0.1);
    box-shadow: 0 10px 25px rgba(255, 0, 110, 0.15);
}

.option-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.option-info {
    flex: 1;
}

.option-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 0.25rem;
}

.option-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.option-arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    opacity: 0.6;
    transition: var(--transition);
}

.menu-option:hover .option-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Selector de Artistas */
.artist-selector {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.artist-selector h3 {
    color: var(--accent-secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.artist-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.artist-selector-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.artist-selector-option:hover {
    transform: scale(1.08) translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(255, 0, 110, 0.1);
    box-shadow: 0 10px 25px rgba(255, 0, 110, 0.2);
}

.artist-selector-emoji {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.artist-selector-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    color: var(--accent-secondary);
}

.artist-selector-genre {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.25rem;
}

/* ===================================
   RESPONSIVO
   =================================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--secondary-dark);
        gap: 0;
        padding: 1rem;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--glass-border);
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        height: auto;
        padding: 3rem 2rem;
        min-height: 40vh;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .artists-preview-grid,
    .team-grid,
    .artists-list {
        grid-template-columns: 1fr;
    }

    .player-modal-content {
        max-height: 100vh;
        border-radius: 10px;
    }

    .player-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .control-right {
        width: 100%;
        justify-content: center;
    }

    .youtube-container {
        padding-bottom: 56.25%;
    }

    .app-container {
        padding: 1rem;
    }

    .player-fab-button {
        bottom: 1rem;
        right: 1rem;
    }

    .fab-btn {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .player-menu-content {
        max-width: 90%;
        padding: 2rem;
    }

    .artist-selector-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-section h2,
    .artists-preview h2,
    .team-section h1,
    .artists-section h1 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .player-modal {
        padding: 0;
    }

    .player-container {
        padding: 1rem;
    }

    .blunark-logo {
        font-size: 4rem;
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}
