/* 
   Visual no Yume 2.1 - Responsive Design System
   Consolidated Stylesheet
*/

:root {
    --accent: #ffffff;
    --accent-glow: rgba(255, 255, 255, 0.2);
    --bg: #000000;
    --card-h: 350px;
    --radius: 12px;
    --gap: 20px;
    --white: #ffffff;
    --muted: #888888;
    --black: #000000;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding-top: 140px;
    /* Compensa el header fixed en Desktop */
    line-height: 1.6;
    overflow-x: hidden;
}

.container,
.artist-header,
.discography-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.discography-wrap {
    max-width: 800px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

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

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.video-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumb:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-thumb img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-thumb:hover .video-thumb-overlay {
    opacity: 1;
}

.video-thumb-overlay i {
    font-size: 48px;
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.video-thumb-title {
    padding: 12px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Video Pagination */
.video-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0 30px;
    padding: 15px 0;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s;
}

.page-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-info {
    color: #888;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

/* Header & Nav Structure - Desktop 2 Rows (Updated) */
header.main-header {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 30px 10px;

    /* Grid Layout for Desktop */
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "social logo login"
        ". menu search";
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    gap: 15px 20px;
    transition: padding 0.3s ease, gap 0.3s ease;
}

/* Header contraído al hacer scroll */
header.main-header.scrolled {
    padding: 5px 30px 3px;
    gap: 0 12px;
}

/* Logo - Top Center */
.logo {
    grid-area: logo;
    justify-self: center;
}

.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    transition: none !important;
    transform: none !important;
}

.logo a:hover {
    transform: none !important;
    opacity: 1 !important;
}

.site-logo {
    height: 60px;
    width: auto;
    filter: none !important;
    box-shadow: none !important;
    transition: height 0.3s ease !important;
    transform: none !important;
    display: block;
}

header.main-header.scrolled .site-logo {
    height: 45px;
}

.site-logo:hover,
.logo:hover .site-logo,
.logo a:hover .site-logo {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    scale: 1 !important;
}

/* Social Bar - Top Left */
.social-bar {
    grid-area: social;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: gap 0.3s ease;
}

header.main-header.scrolled .social-bar {
    gap: 8px;
}

.social-bar a {
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    text-decoration: none;
}

header.main-header.scrolled .social-bar a {
    width: 28px;
    height: 28px;
    font-size: 14px;
}

/* Default hover (fallback) */
.social-bar a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: none;
}

/* Facebook (Blue) */
.social-bar a[aria-label="Facebook"]:hover {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877F2;
    box-shadow: 0 0 10px rgba(24, 119, 242, 0.4);
}

/* X / Twitter (White/Black - using bright white/silver for dark mode) */
.social-bar a[aria-label="X (Twitter)"]:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* YouTube (Red) */
.social-bar a[aria-label="YouTube"]:hover {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

/* Navigation - Second Row, Center */
nav.main-nav {
    grid-area: menu;
    justify-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding 0.3s ease;
}

header.main-header.scrolled nav.main-nav {
    padding-top: 5px;
}

nav.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
    transition: gap 0.3s ease;
}

header.main-header.scrolled nav.main-nav ul {
    gap: 25px;
}

nav.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
    letter-spacing: 1px;
    padding: 8px 0;
    display: inline-block;
}

header.main-header.scrolled nav.main-nav a {
    font-size: 13px;
    padding: 5px 0;
}

nav.main-nav a:hover {
    color: #40E0D0;
    text-shadow: 0 0 10px rgba(64, 224, 208, 0.4);
}

/* Search Box - Second Row, Right */
.search-box {
    grid-area: search;
    justify-self: end;
    width: 280px;
    position: relative;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

header.main-header.scrolled .search-box {
    width: 240px;
    padding-top: 5px;
}

.search-box form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    background: #111;
    border: 1px solid #333;
    color: white;
    padding: 8px 35px 8px 15px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    width: 100%;
    transition: all 0.3s;
}

header.main-header.scrolled .search-box input {
    padding: 6px 30px 6px 12px;
    font-size: 12px;
}

/* Right Side Container - Top Right (Login) */
.header-right {
    grid-area: login;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.search-box .search-submit {
    position: absolute;
    right: 5px;
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    transition: color 0.3s;
}

.search-box .search-submit:hover {
    color: var(--accent);
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 0 0 10px 10px;
    z-index: 1001;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: background 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.search-result-thumb {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
    margin-right: 15px;
}

.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-result-name {
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

.search-result-type {
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
}

.no-results {
    padding: 15px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: var(--accent);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: bold;
    transition: all 0.3s;
    letter-spacing: 1px;
    white-space: nowrap;
}

header.main-header.scrolled .login-btn {
    padding: 6px 14px;
    font-size: 12px;
    gap: 6px;
}

.login-btn:hover {
    background: var(--accent);
    color: var(--black);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* Main Content Spacing */
main,
.home-slider-wrap,
.home-videos,
.latest-artists,
.container {
    padding-top: 25px;
}

.home-slider-wrap:first-child,
.home-videos:first-child,
.latest-artists:first-child {
    padding-top: 0;
}

/* Titles */
.main-title-disc {
    margin: 30px 0 20px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    scroll-margin-top: 115px;
    /* Ajuste persistente para ocultar la sección anterior */
}

.main-title-disc:first-child,
.title-share-row:first-child .main-title-disc {
    margin-top: 5px !important;
}

.main-title-disc::after {
    content: '';
    display: block;
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #40E0D0, transparent);
    margin: 15px auto 0;
}

/* Slider */
.custom-slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.custom-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 980px;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    /* border: 1px solid var(--glass-border); */
}

.custom-slider-slides {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-slider-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 100%;
    padding: 60px 40px;
    gap: 40px;
}

.custom-slider-slide.reverse {
    flex-direction: row-reverse;
}

.custom-slider-text-content {
    flex: 1;
}

.custom-slider-slide-title {
    font-size: 36px;
    font-family: 'Orbitron', sans-serif;
    color: #f5f5f5;
    margin-bottom: 20px;
    line-height: 1.2;
}

.custom-slider-slide-description {
    font-size: 18px;
    color: #bbb;
    line-height: 1.6;
}

.custom-slider-slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.custom-slider-slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.custom-slider-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.custom-slider-nav-button:hover {
    background: #40E0D0;
    color: var(--black);
    box-shadow: 0 0 10px rgba(64, 224, 208, 0.4);
}

.custom-slider-prev {
    left: 20px;
}

.custom-slider-next {
    right: 20px;
}

.custom-slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.custom-slider-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-slider-dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    width: 25px;
    border-radius: 5px;
}

/* Album Grid */
.album-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 50px;
    justify-content: center;
}

.album-card {
    position: relative;
    flex: 0 1 350px;
    /* Ancho base para que quepan 2 */
    /* width: 100% eliminado del código para permitir filas de 2 */
    border-radius: var(--radius);
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
    aspect-ratio: 1/1;
    scroll-margin-top: 120px;
    isolation: isolate;
    /* evita conflictos de stacking context con transform/position del header */
}

.album-cover-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Mostrar la imagen completa sin recortar */
    object-position: center center;
    /* Centrar la imagen */
    background: #000;
    /* Fondo negro para evitar espacios blancos alrededor */
    display: block;
    position: relative;
    z-index: 0;
    /* por debajo del overlay y caption */
}

/* Restaurar caption translúcida con blur; eliminar overlay que bloqueaba la transparencia */
.album-card .album-caption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    border-radius: 12px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Fila inferior: info a la izquierda, descarga a la derecha */
.album-caption-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 12px;*/
    width: 100%;
}

.album-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    min-width: 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.album-meta .album-format,
.album-meta .album-release {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-meta .album-label {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.album-meta .album-value {
    font-weight: 600;
    color: var(--white);
}

.album-meta i {
    color: #ffffff;
    font-size: 12px;
    width: 14px;
    text-align: center;
}

.album-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--white);
    color: var(--black);
    font-weight: 700;
    text-decoration: none !important;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.album-download:hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

.album-download i {
    font-size: 14px;
}

/* .album-card::after was removed because it blocked caption transparency and blur. */
/* If needed, a decorative overlay can be reintroduced with a more subtle gradient that doesn't prevent backdrop-filter. */

/* Artist Gallery */
.gallery-artist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    margin-top: 10px;
    justify-content: center;
}

.gallery-artist-item {
    flex: 0 0 calc((100% - 16px) / 3);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--black);
}

.gallery-artist-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-artist-item a {
    text-decoration: none;
    color: var(--white);
    /* Ensure no blue link inherit */
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-artist-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

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

.gallery-artist-item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.85);
    /* Barra negra siempre visible */
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: var(--white);
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    /* Toque premium extra */
}

.gallery-artist-item:hover .title {
    background: rgba(0, 0, 0, 0.95);
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.view-all-container .album-download {
    padding: 15px 40px;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(64, 224, 208, 0.1);
}

/* Artist Detail Page */
/* Artist Detail Page - Enhanced UI/UX */
.artist-img-container {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #050505;
    /* Premium Depth & Glow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.artist-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-img-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 40px 40px;
    /* Enhanced Gradient for Readability */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 40%,
            rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.artist-img-story {
    pointer-events: auto;
    margin: 0;
    font-size: 18px;
    /* Increased size */
    max-width: 900px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 500;
    /* Text Shadow for better contrast */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.artist-buttons-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin-bottom: 40px;
}

.artist-button {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s;
    font-weight: bold;
}

.artist-button i {
    font-size: 18px;
}

.artist-button:hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
}


/* AZ Nav */
.aznav-container {
    padding: 20px 0;
    position: relative;
}

.az-indicator {
    display: none;
    /* Oculto por defecto en desktop */
}

.aznav-block {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    /* Super tight gap */
    justify-content: center;
    align-items: center;
    background: var(--glass);
    padding: 8px 12px;
    /* Minimal padding */
    border-radius: 50px;
    /* Capsule shape */
    border: 1px solid var(--glass-border);
    max-width: 100%;
}

.aznav-block::-webkit-scrollbar {
    display: none;
}

.aznav-link {
    width: 28px;
    height: 28px;
    min-width: 28px;
    /* Ensure circular shape */
    flex-shrink: 0;
    /* Prevent squashing */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 11px;
    /* Smaller font */
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    box-sizing: border-box;
    padding: 0;
}

.aznav-link:hover:not(.disabled) {
    background: var(--accent);
    color: var(--black);
    transform: scale(1.1);
    border-radius: 50%;
}

.aznav-link.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* Alineación del título y botones de compartir en la misma línea (solo desktop) */
@media (min-width: 769px) {
    .artist-header .title-share-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .artist-header .title-share-row .main-title-disc {
        margin: 0;
        text-align: left;
        font-size: 30px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1 1 auto;
    }

    /* Asegura que las etiquetas de compartir no acaparen espacio excesivo */
    .vny-share-container {
        justify-content: flex-end;
        flex: 0 0 auto;
    }

    /* Alineación vertical del contenedor de compartir junto al título */
    .artist-header .vny-share-container {
        margin: 0 !important;
        /* elimina el margin:20px 0 definido en el componente */
        padding: 0 !important;
        /* quita padding superior que lo empuja hacia abajo */
        display: flex !important;
        align-items: center !important;
        /* centra verticalmente label y botones */
        gap: 10px !important;
        justify-content: flex-end !important;
    }

    .artist-header .vny-share-label {
        margin: 0 !important;
        /* evitar margen derecho excesivo */
        line-height: 1 !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .artist-header .vny-share-buttons {
        align-items: center !important;
    }

    /* Mostrar el subtítulo en una línea separada en desktop (igual que mobile) */
    .artist-header .title-share-row .main-title-disc .title-subtitle {
        display: block;
        margin-top: 6px;
        font-size: 0.6em;
        color: #40E0D0;
    }

    /* Alinear la barra decorativa DEL ARTISTA a la izquierda y hacer que la iluminación nazca desde la izquierda */
    .artist-header .title-share-row .main-title-disc::after {
        content: '';
        display: block;
        width: 220px;
        /* ancho de la barra decorativa en desktop */
        height: 3px;
        margin: 12px 0 0 0;
        /* alineada a la izquierda del título */
        background: linear-gradient(90deg, rgba(64, 224, 208, 0.95) 0%, rgba(64, 224, 208, 0.25) 30%, rgba(64, 224, 208, 0.0) 100%);
        transform-origin: left center;
        border-radius: 2px;
        box-shadow: 0 0 12px rgba(64, 224, 208, 0.18);
    }
}

/* ==========================================================================
   MOBILE NAVIGATION & HEADER RE-ENGINEERING
   ========================================================================== */

/* 1. Mobile-specific Toggles (Hidden on Desktop) */
.mobile-menu-toggle,
.mobile-search-toggle {
    display: none;
}

/* 2. Mobile Styles (Up to 768px) */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
        /* Space for fixed header */
    }

    /* Fixed Header Layout */
    header.main-header {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        padding: 5px 15px !important;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100% !important;
        z-index: 2000 !important;
        background: rgba(0, 0, 0, 0.98) !important;
        height: auto !important;
        min-height: 60px !important;
        gap: 0 !important;
        align-items: center !important;
        justify-content: space-between !important;
        backdrop-filter: blur(15px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .logo {
        flex: 1 !important;
        order: 1 !important;
        text-align: left !important;
        justify-self: flex-start !important;
    }

    .site-logo {
        height: 40px !important;
        width: auto !important;
        display: block !important;
    }

    .header-right {
        order: 2 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center !important;
        justify-self: flex-end !important;
    }

    /* Toggles */
    .mobile-menu-toggle,
    .mobile-search-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: none;
        border: none;
        color: white;
        font-size: 22px;
        cursor: pointer;
        z-index: 2010 !important;
    }

    /* DROPDOWN BLOCKS (The sections that "deploy") */
    .search-box,
    nav.main-nav,
    .social-bar {
        width: 100% !important;
        display: none !important;
        /* Initial State */
        background: #0a0a0a !important;
        padding: 15px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        animation: dropDownVNY 0.3s ease-out forwards !important;
    }

    /* Force visibility when active */
    .search-box.active,
    nav.main-nav.active,
    .social-bar.active {
        display: block !important;
    }

    /* Specific Layouts for Active Blocks */
    nav.main-nav.active {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .social-bar.active {
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
    }

    /* SEARCH BOX INTERNALS (MOBILE) */
    .search-box form {
        width: 100%;
        position: relative;
    }

    .search-box input {
        width: 100% !important;
        background: #1a1a1a !important;
        border: 1px solid #333 !important;
        color: #fff !important;
        padding: 12px 45px 12px 15px !important;
        border-radius: 12px !important;
        font-size: 16px !important;
    }

    .search-box .search-submit {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: none !important;
        color: var(--accent) !important;
        font-size: 18px !important;
    }

    /* NAV LINKS (MOBILE) */
    nav.main-nav ul {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    nav.main-nav ul li {
        width: 100% !important;
    }

    nav.main-nav ul li a {
        display: block !important;
        padding: 12px !important;
        text-align: center !important;
        width: 100% !important;
        font-size: 16px !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.03);
    }

    /* Ordering for Flexwrap */
    .search-box {
        order: 100 !important;
    }

    nav.main-nav {
        order: 101 !important;
    }

    .social-bar {
        order: 102 !important;
    }

    /* Login Button in Mobile (Icon Only) */
    .login-btn span {
        display: none !important;
    }

    .login-btn {
        border: none !important;
        font-size: 24px !important;
        padding: 0 5px !important;
        color: #fff !important;
    }

    /* Titles in Mobile */
    h1.main-title-disc {
        font-size: 22px !important;
        scroll-margin-top: 40px !important;
    }

    h1.main-title-disc .title-subtitle {
        display: block !important;
    }

    @keyframes dropDownVNY {
        from {
            opacity: 0;
            transform: translateY(-15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}


/* RESPONSIVE MEDIA QUERIES */

/* Tablet & Smaller */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .custom-slider-slide {
        padding: 40px 30px;
    }

    .custom-slider-slide-title {
        font-size: 28px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .artist-header .title-share-row {
        display: block;
        /* en mobile, mantener apilado para no forzar ancho */
    }

    .artist-header .title-share-row .main-title-disc {
        font-size: 24px;
        text-align: center;
        white-space: normal;
        margin-bottom: 5px;
        line-height: 1.2;
        display: block;
        /* Ensure block display for centering */
        width: 100%;
        /* Take full width */
    }

    .artist-header .title-share-row .main-title-disc .title-subtitle {
        display: block;
        font-size: 13px;
        color: #40E0D0;
        margin-top: 4px;
        text-align: center;
        /* Explicitly center subtitle */
        width: 100%;
        /* Ensure subtitle takes full width to center effectively */
    }

    .artist-header .title-share-row .main-title-disc::after {
        content: '';
        display: block;
        width: 150px;
        height: 2px;
        margin: 10px auto 15px auto;
        /* Auto margins center the block */
        background: linear-gradient(90deg, transparent, rgba(64, 224, 208, 0.8), transparent);
    }

    /* Quitar efectos de sombra/filtro del logo en ambos modos */
    .site-logo {
        filter: none !important;
        box-shadow: none !important;
    }

    /* Artist Gallery Mobile */
    .gallery-artist-item {
        flex: 0 1 90% !important;
        max-width: 360px !important;
    }

    .video-pagination {
        flex-direction: column;
        gap: 15px;
    }

    .page-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .custom-slider-slide {
        flex-direction: column !important;
        text-align: center !important;
        padding: 40px 20px 60px !important;
    }

    .custom-slider-slide-title {
        font-size: 24px !important;
    }

    .custom-slider-slide-description {
        font-size: 16px !important;
    }

    .album-grid {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .album-card {
        flex: 0 1 auto;
        max-width: 370px;
        width: 100%;
    }

    .artist-img-container {
        height: auto;
        max-height: 500px;
    }

    .artist-img-content {
        display: none !important;
    }

    .artist-img-container img {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 20px;
    }

    .artist-buttons-container {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .artist-button {
        flex: 0 0 auto !important;
        width: 45px !important;
        height: 45px !important;
        min-width: 0 !important;
        background: #ffffff !important;
        border: none !important;
        padding: 0 !important;
        font-size: 0 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        gap: 0 !important;
        text-decoration: none !important;
    }

    .artist-button i {
        font-size: 20px !important;
        color: #000000 !important;
        margin: 0 !important;
        width: auto !important;
        height: auto !important;
        line-height: 1 !important;
        display: block !important;
    }

    /* AZ Nav Mobile */
    .aznav-block {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px;
        gap: 10px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        scrollbar-width: none;
    }

    .aznav-link {
        flex: 0 0 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .aznav-container {
        position: relative;
    }

    .aznav-container::before,
    .aznav-container::after {
        content: "";
        position: absolute;
        top: 10px;
        bottom: 10px;
        width: 30px;
        z-index: 2;
        pointer-events: none;
        transition: opacity 0.3s;
        opacity: 0;
    }

    .aznav-container::before {
        left: 0;
        background: linear-gradient(to right, #000, transparent);
    }

    .aznav-container::after {
        right: 0;
        background: linear-gradient(to left, #000, transparent);
    }

    .aznav-container.can-scroll-left::before,
    .aznav-container.can-scroll-right::after {
        opacity: 1;
    }

    .az-indicator {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: var(--accent);
        z-index: 5;
        font-size: 10px;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .az-indicator.left {
        left: 5px;
    }

    .az-indicator.right {
        right: 5px;
    }

    .aznav-container.can-scroll-left .az-indicator.left,
    .aznav-container.can-scroll-right .az-indicator.right {
        opacity: 1;
        animation: pulseIndicator 1.5s infinite;
    }

    @keyframes pulseIndicator {

        0%,
        100% {
            opacity: 0.5;
            transform: translateY(-50%) scale(1);
        }

        50% {
            opacity: 1;
            transform: translateY(-50%) scale(1.2);
        }
    }
}



/* Small Phones */
@media (max-width: 480px) {
    nav.main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .artist-button {
        width: 100%;
    }

    h1.main-title-disc {
        font-size: 22px;
    }
}

/* Login Page */
.login-wrapper {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.login-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.login-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.login-header p {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
}

.login-form {
    text-align: left;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--muted);
    font-family: 'Orbitron', sans-serif;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #444;
    transition: color 0.3s;
}

.input-with-icon input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    padding: 12px 15px 12px 45px;
    border-radius: 10px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px var(--accent-glow);
}

.input-with-icon input:focus+i {
    color: var(--accent);
}

.login-form .album-download {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    cursor: pointer;
}

.login-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.login-footer a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.login-footer a:hover {
    color: var(--accent);
}

.alert {
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
}

/* Admin Dashboard Styles */
.admin-layout {
    display: flex;
    min-height: calc(100vh - 100px);
}

.admin-sidebar {
    width: 250px;
    background: #0a0a0a;
    border-right: 1px solid var(--glass-border);
    padding: 30px 0;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: #888;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    transition: all 0.3s;
}

.admin-nav-item:hover,
.admin-nav-item.active {
    color: var(--accent);
    background: rgba(64, 224, 208, 0.05);
}

.admin-content {
    flex: 1;
    padding: 40px;
}

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

.stat-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.stat-card i {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 28px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

.admin-table-container {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--muted);
    font-family: 'Orbitron', sans-serif;
    border-bottom: 1px solid var(--glass-border);
}

.admin-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 14px;
}

.admin-table tr {
    transition: background 0.3s;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.admin-table tr td:last-child {
    position: relative;
    z-index: 10;
}

.admin-table tr td:last-child a,
.admin-table tr td:last-child button {
    position: relative;
    z-index: 11;
}

.admin-action-btn {
    padding: 8px;
    color: #888;
    transition: color 0.3s;
}

.admin-action-btn:hover {
    color: var(--accent);
}

.admin-action-btn.delete:hover {
    color: #ff6b6b;
}

/* Logo adjustments */
.logo a {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 65px;
    width: auto;
    filter: none;
    transition: all 0.3s ease;
}

.site-logo:hover {
    filter: none;
    transform: scale(1.05);
}



/* Button Homogenization */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 25px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.btn-primary:hover {
    background: #50f0e0;
    box-shadow: 0 0 20px var(--accent);
    transform: none;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--black);
    box-shadow: 0 0 15px var(--accent-glow);
    transform: none;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    border-color: #333;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #555;
    transform: none;
}

.btn-sm {
    padding: 6px 15px;
    font-size: 11px;
}


/* Comprehensive Form Homogenization */
.admin-form .form-group {
    margin-bottom: 25px;
}

.admin-form label {
    display: block;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    color: var(--accent);
    font-size: 16px;
    width: 20px;
    text-align: center;
    pointer-events: none;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.admin-form input[type="text"],
.admin-form input[type="password"],
.admin-form input[type="url"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 15px 12px 45px !important;
    color: #fff !important;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.admin-form select option {
    background-color: #1a1a1a;
    color: #fff;
}

.admin-form textarea {
    padding-left: 15px !important;
}

.admin-form input:focus {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 15px rgba(64, 224, 208, 0.1);
}

.admin-form input:focus+i {
    color: #fff;
    filter: drop-shadow(0 0 8px var(--accent));
}

.btn-top-match {
    padding: 10px 25px !important;
    font-size: 13px !important;
}


/* Override album card hover effect */
.album-card:hover {
    transform: none !important;
}

/* Forzar truncado en una sola línea dentro de las tarjetas de álbum (release cards) */
.album-card .album-title {
    display: block;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: normal;
    margin: 0;
    padding: 0 0 5px 0;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    /* ensure line-clamp 2 doesn't apply here */
}

/* If the user hovers the title, show the full text via the native title attribute (no JS needed) */
.album-card .album-title:hover {
    cursor: default;
    /* keep pointer normal since we show tooltip */
}

/* Main Layout with Sidebar */
.main-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content-vny {
    flex: 1;
    min-width: 0;
}

.sidebar-vny {
    flex: 0 0 230px;
    margin-top: 10px;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);

    /* Glow Effect (Turquoise / New Artists style) */
    border: 1px solid rgba(64, 224, 208, 0.3);
    background: linear-gradient(165deg, rgba(64, 224, 208, 0.05) 0%, rgba(10, 20, 30, 0.4) 100%);
    transition: all 0.3s ease;
}

.sidebar-vny:hover {
    border-color: #40E0D0;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.1);
}

/* Breadcrumbs SEO Meta */
/* Breadcrumbs Premium Glassmorphism */
.vny-breadcrumbs {
    margin: 0 0 20px 0;
    /* Align with sidebar top */
    padding: 0;
    display: block;
    /* Force block to take full width if needed, or just normal flow */
    width: 100%;
}

.vny-breadcrumbs ol {
    list-style: none;
    padding: 8px 18px;
    margin: 0;
    display: inline-flex;
    /* Use inline-flex to fit content */
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.vny-breadcrumbs li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
    padding: 0 5px;
}

.vny-breadcrumbs li:not(:last-child)::after {
    content: '\f105';
    /* FontAwesome Chevron */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 12px;
    margin-right: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
}

.vny-breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.vny-breadcrumbs a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(64, 224, 208, 0.5);
}

.vny-breadcrumbs a i {
    font-size: 11px;
    margin-bottom: 2px;
}

.breadcrumb-current {
    color: var(--accent);
    font-weight: 500;
    /* Match link weight */
    letter-spacing: normal;
    text-transform: none;
    /* No uppercase */
    font-size: 13px;
    /* Match container font size */
    font-family: 'Inter', sans-serif;
    /* Match link font */
    padding-left: 5px;
}

.sidebar-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(64, 224, 208, 0.3);

    /* Efecto de Texto de Fuego Real */
    background: linear-gradient(180deg, #FFD700 0%, #FF8C00 50%, #FF0000 100%);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 -2px 4px rgba(255, 69, 0, 0.3);
    /* text-shadow: none; DELETED to allow the subtle glow above */
    animation: shine-text 3s linear infinite;
    transition: all 0.3s ease;
    cursor: default;
}

.sidebar-title:hover {
    filter: brightness(1.2);
    transform: translateX(5px);
}

@keyframes shine-text {
    to {
        background-position: 200% center;
    }
}

.sidebar-title i {
    font-size: 18px;
    background: linear-gradient(180deg, #ffcc00 0%, #ff6600 50%, #ff0000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(255, 102, 0, 0.4));
    animation: fire-pulse 1.2s ease-in-out infinite;
}

@keyframes fire-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 180, 0, 0.3));
    }

    50% {
        transform: scale(1.18);
        filter: drop-shadow(0 0 12px rgba(255, 50, 0, 0.6));
    }
}

.top-artists-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.top-artist-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.top-artist-item:last-child {
    border-bottom: none;
}

/* Standardize Image Height for ALL */
.top-artist-img {
    height: 140px;
    /* Slightly larger aspect ratio */
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.top-artist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: filter 0.3s ease;
}

.top-artist-item:hover .top-artist-img img {
    filter: grayscale(0%);
}

/* ORO - #1 */
/* ORO - #1 */
.top-artist-item:nth-child(1) {
    margin-bottom: 20px;
}

.top-artist-item:nth-child(1) .top-artist-img {
    border: 1px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.top-artist-item:nth-child(1) .rank {
    color: #FFD700;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.top-artist-item:nth-child(1) .name {
    color: #FFD700;
    font-size: 15px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* PLATA - #2 */
.top-artist-item:nth-child(2) {
    margin-bottom: 15px;
}

.top-artist-item:nth-child(2) .top-artist-img {
    border: 1px solid #C0C0C0;
    box-shadow: 0 0 12px rgba(192, 192, 192, 0.2);
}

.top-artist-item:nth-child(2) .rank {
    color: #C0C0C0;
    font-size: 18px;
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.4);
}

.top-artist-item:nth-child(2) .name {
    color: #E0E0E0;
    font-size: 14px;
    text-shadow: 0 0 5px rgba(192, 192, 192, 0.2);
}

/* BRONCE - #3 */
.top-artist-item:nth-child(3) {
    margin-bottom: 15px;
}

.top-artist-item:nth-child(3) .top-artist-img {
    border: 1px solid #CD7F32;
    box-shadow: 0 0 12px rgba(205, 127, 50, 0.2);
}

.top-artist-item:nth-child(3) .rank {
    color: #CD7F32;
    font-size: 16px;
    text-shadow: 0 0 8px rgba(205, 127, 50, 0.4);
}

.top-artist-item:nth-child(3) .name {
    color: #FFB07C;
    font-size: 14px;
    text-shadow: 0 0 5px rgba(205, 127, 50, 0.2);
}

.top-artist-info {
    display: flex;
    flex-direction: column;
    padding: 0 5px;
}

.name-rank-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.top-artist-item .rank {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: var(--accent);
    opacity: 0.6;
}

.top-artist-info .name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.top-artist-info .views {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 32px;
    /* Alineado con el inicio del nombre */
}

/* Adjustments for content inside sidebar layout - Global reset */
.main-content-vny .artist-header,
.main-content-vny .discography-wrap,
.main-content-vny .artists-page-wrap,
.main-content-vny .container,
.main-content-vny .album-grid {
    max-width: 100% !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.main-content-vny .gallery-artist {
    justify-content: center;
    gap: 8px;
    /* Gap compacto de desktop */
}

/* Responsive Sidebar */
@media (max-width: 1100px) {
    .main-layout {
        flex-direction: column;
        gap: 20px;
        padding: 0;
        /* Quitamos padding lateral para que el contenido mande */
    }

    .sidebar-vny {
        flex: none;
        width: 100%;
        position: static;
        order: 2;
        /* Sidebar abajo en mobile */
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .sidebar-vny .top-artist-img {
        width: 100%;
        max-width: 400px;
        /* Consistente con la galería principal */
        height: 220px;
        /* Más alto para pantallas grandes */
    }

    .sidebar-vny .top-artist-item {
        align-items: center;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .main-content-vny {
        order: 1;
        width: 100%;
    }

    .main-content-vny .gallery-artist {
        justify-content: center;
        gap: 15px;
        padding: 0 15px 30px;
        /* Padding recuperado aquí para las tarjetas */
    }

    .main-content-vny .gallery-artist-item {
        flex: 0 0 100%;
        max-width: 380px;
        margin: 0 auto;
    }
}


/* Password Box Redesign */
.vny-password-box {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(5, 5, 5, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(64, 224, 208, 0.2);
    border-radius: 20px;
    padding: 35px 45px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(64, 224, 208, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Decorative glow line at top */
.vny-password-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #40E0D0, transparent);
    opacity: 0.6;
}

.pw-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #1a1a1a, #222);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #40E0D0;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(64, 224, 208, 0.3),
        inset 0 0 10px rgba(64, 224, 208, 0.2);
    animation: key-pulse 2s ease-in-out infinite;
}

@keyframes key-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(64, 224, 208, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 35px rgba(64, 224, 208, 0.5);
    }
}

.pw-icon-wrap i {
    font-size: 32px;
    color: #40E0D0;
    filter: drop-shadow(0 0 8px rgba(64, 224, 208, 0.8));
}

.pw-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pw-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: #40E0D0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.pw-value {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(64, 224, 208, 0.2);
    margin: 5px 0;
}

.pw-actions {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pw-copy-btn {
    background: #40E0D0;
    color: #000;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
}

.pw-copy-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.5);
    background: #50f5e5;
}

.pw-copy-btn:active {
    transform: translateY(0) scale(0.98);
}

.pw-feedback {
    position: absolute;
    bottom: -30px;
    font-size: 12px;
    font-family: 'Orbitron', sans-serif;
    color: #40E0D0;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.pw-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

.pw-footer {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.pw-footer a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.pw-footer a:hover {
    color: #40E0D0;
    border-color: #40E0D0;
}

@media (max-width: 600px) {
    .vny-password-box {
        padding: 20px;
        margin: 20px 0;
        width: 100%;
    }

    .pw-value {
        font-size: 28px;
    }
}

.main-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    font-size: 14px;
    color: var(--muted);
}

/* Homepage Trending Grid - UI/UX Improved */
.home-dynamic-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
}

.trending-column {
    /* Forzar ancho exacto con margen de seguridad para evitar wrap por sub-pixels */
    /* (25% * 4) = 100%. Restamos más del gap (20px) para asegurar holgura */
    width: calc(25% - 20px);
    flex: 0 0 calc(25% - 20px);
    min-width: 0;
    /* Permitir que se encojan si es necesario para mantener 4 en fila */
    max-width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Borde más sutil */
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* Evitar transición en propiedades de layout para prevenir flicker al cargar */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    height: auto;
    min-height: 100%;
    /* Llenar altura del padre flex */
    box-sizing: border-box;
    /* Animación de entrada para disimular carga */
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trending-column:nth-child(1) {
    animation-delay: 0.1s;
}

.trending-column:nth-child(2) {
    animation-delay: 0.2s;
}

.trending-column:nth-child(3) {
    animation-delay: 0.3s;
}

.trending-column:nth-child(4) {
    animation-delay: 0.4s;
}

.trending-column:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trending-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 25px;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Separador */
}

.trending-title i {
    font-size: 16px;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    /* Llenar el espacio vertical restante */
    justify-content: space-between;
    /* Distribuir items uniformemente */
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid transparent;
    /* Para evitar salto al hover */
}

.trending-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
    /* Sutil movimiento interacción */
}

.trending-img {
    flex: 0 0 60px;
    /* Ancho fijo ligeramente mayor */
    width: 60px;
    height: auto;
    /* Altura automática para mantener aspect ratio */
    border-radius: 6px;
    /* Radio ligeramente menor para aspecto más nítido */
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    align-self: flex-start;
    /* Alinear arriba si la imagen es alta */
}

.trending-img img {
    width: 100%;
    height: auto;
    /* Mantener proporción original */
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

/* Forzar imágenes cuadradas para Releases y Descargas (Discos) */
.new-releases .trending-img,
.top-downloads .trending-img {
    height: 60px;
}

.new-releases .trending-img img,
.top-downloads .trending-img img {
    height: 100%;
    object-fit: cover;
}

.trending-item:hover .trending-img img {
    transform: scale(1.1);
    /* Zoom suave */
}

.trending-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
    /* Ocupar espacio restante */
    justify-content: center;
}

.trending-info .name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    margin-bottom: 2px;
}

.trending-info .meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
}

.trending-info .meta i {
    font-size: 10px;
    margin-right: 5px;
    opacity: 0.7;
}

/* Columna Destacada (Descargas) */
.highlight-column {
    border-color: rgba(64, 224, 208, 0.3);
    background: linear-gradient(165deg, rgba(64, 224, 208, 0.08) 0%, rgba(10, 20, 30, 0.6) 100%);
    position: relative;
    overflow: hidden;
}

.highlight-column:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(64, 224, 208, 0.15);
}

.highlight-column .trending-title {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-glow);
    border-bottom-color: rgba(64, 224, 208, 0.3);
}

.highlight-column .trending-item:hover {
    background: rgba(64, 224, 208, 0.1);
    border-color: rgba(64, 224, 208, 0.2);
}

/* Estilos específicos por columna */
.trending-column.new-artists {
    border-color: rgba(64, 224, 208, 0.3);
    /* Turquesa */
    background: linear-gradient(165deg, rgba(64, 224, 208, 0.05) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.trending-column.new-artists:hover {
    border-color: #40E0D0;
    box-shadow: 0 10px 30px rgba(64, 224, 208, 0.1);
}

.trending-column.new-artists .trending-title {
    color: #40E0D0;
    text-shadow: 0 0 10px rgba(64, 224, 208, 0.3);
    border-bottom-color: rgba(64, 224, 208, 0.3);
}

.trending-column.new-releases {
    border-color: rgba(255, 0, 128, 0.3);
    /* Magenta/Rosa Neón */
    background: linear-gradient(165deg, rgba(255, 0, 128, 0.05) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.trending-column.new-releases:hover {
    border-color: #ff0080;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.1);
}

.trending-column.new-releases .trending-title {
    color: #ff0080;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
    border-bottom-color: rgba(255, 0, 128, 0.3);
}

.trending-column.top-artists {
    border-color: rgba(255, 165, 0, 0.3);
    /* Naranja Fuego */
    background: linear-gradient(165deg, rgba(255, 165, 0, 0.05) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.trending-column.top-artists:hover {
    border-color: #ffa500;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.1);
}

.trending-column.top-artists .trending-title {
    color: #ffa500;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
    border-bottom-color: rgba(255, 165, 0, 0.3);
}

.trending-column.top-downloads {
    border-color: rgba(0, 191, 255, 0.3);
    /* Azul Eléctrico */
    background: linear-gradient(165deg, rgba(0, 191, 255, 0.05) 0%, rgba(10, 20, 30, 0.4) 100%);
}

.trending-column.top-downloads:hover {
    border-color: #00bfff;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.1);
}

.trending-column.top-downloads .trending-title {
    color: #00bfff;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
    border-bottom-color: rgba(0, 191, 255, 0.3);
}

@media (max-width: 1100px) {
    .home-dynamic-grid {
        /* No necesitamos grid-template-columns aquí porque usamos flex */
        gap: 20px;
    }

    .trending-column {
        width: calc(50% - 15px);
        flex: 0 0 calc(50% - 15px);
        min-width: 0;
    }
}

@media (max-width: 650px) {
    .home-dynamic-grid {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }

    .trending-column {
        width: 100%;
        flex: 0 0 100%;
        padding: 20px;
    }

    .trending-item {
        padding: 10px;
    }

    .trending-img {
        flex: 0 0 60px;
        height: 60px;
    }

    .trending-title {
        font-size: 15px;
    }

    .trending-info .name {
        font-size: 15px;
    }
}

/* Admin Pagination Styles */
.video-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #888;
    text-decoration: none;
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    min-width: 30px;
}

.page-btn i {
    font-size: 10px;
    margin: 0 5px;
}

.page-btn:hover {
    background: rgba(64, 224, 208, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.page-btn.active {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
    font-weight: bold;
}

.page-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Header Responsive Styles & User Profile Link */
.user-name-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.user-name-link i {
    font-size: 18px;
    color: var(--accent);
}

.user-name-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--accent);
    box-shadow: 0 0 15px rgba(64, 224, 208, 0.2);
}

.username-text {
    font-weight: bold;
    letter-spacing: 1px;
}

/* Mobile Toggles Default State */
.mobile-search-toggle,
.mobile-menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.mobile-search-toggle:hover,
.mobile-menu-toggle:hover {
    color: var(--accent);
}

/* Responsive Header */
@media (max-width: 900px) {
    body {
        padding-top: 80px;
        /* Reducir padding top en mobile */
    }

    header.main-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        gap: 0;
        height: 60px;
        grid-template-columns: none;
        grid-template-rows: none;
        grid-template-areas: none;
    }

    .logo {
        margin: 0;
        flex: 0 0 auto;
    }

    .logo .site-logo {
        height: 35px;
    }

    header.main-header.scrolled .site-logo {
        height: 32px;
    }

    .social-bar {
        display: none;
    }

    nav.main-nav {
        display: none;
        /* Ocultar menú principal, se usará el toggle */
    }

    .search-box {
        display: none;
        /* Ocultar caja de búsqueda completa */
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-search-toggle,
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .login-btn span {
        display: none;
    }

    .login-btn {
        width: 38px;
        height: 38px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .user-name-link .username-text {
        display: none;
    }

    .user-name-link {
        padding: 0;
        width: 38px;
        height: 38px;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .user-name-link i {
        font-size: 18px;
        /* Ajustar tamaño de icono */
    }
}