/* === Inicio de cosplay-profile.css === */
/* === Aplicada nueva paleta de colores v2: Mayor Contraste y Variedad === */
/* === Variables de color reemplazadas por valores hexadecimales === */

:root {
    /* --- Variables no relacionadas con colores (mantenidas) --- */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-strong: 0 8px 25px rgba(0, 0, 0, 0.4);
    --bg-pattern-dark: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23373737' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); /* Color #373737 ya está hardcodeado en el SVG */
    --border-radius-medium: 12px;
    --border-radius-large: 20px;
    --font-body: 'Poppins', sans-serif;
    --font-headings: 'Poppins', sans-serif;
    --font-display: 'Pacifico', cursive; /* O Georgia, serif; si lo cambiaste antes */
    --transition-fast: 0.2s ease-out;
    --transition-medium: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Contenedor principal del contenido del perfil (el <main>) */
#main .cosplay-profile-container {
     width: 100%;
     background-color: #1a1a1a; /* Fondo principal oscuro */
     color: #dcdcdc; /* Texto principal claro */
     font-family: var(--font-body);
}

/* Estilos generales DENTRO del perfil */
#main .cosplay-profile-container img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-medium);
}

#main .cosplay-profile-container a {
    color: #ffffff; /* Links con color blanco */
    text-decoration: none;
    transition: color var(--transition-fast);
}
#main .cosplay-profile-container a:hover {
    /* Usando blanco como base para el hover */
    color: color-mix(in srgb, #ffffff 80%, #bbbbbb); /* Blanco ligeramente menos brillante en hover */
    text-decoration: none;
}

/* === Títulos === */
#main .cosplay-profile-container h1,
#main .cosplay-profile-container h2,
#main .cosplay-profile-container h3,
#main .cosplay-profile-container h4 {
    font-family: var(--font-headings);
    color: #e0e0e0; /* TITULOS */
    margin-bottom: 15px;
    line-height: 1.3;
}

#main .cosplay-profile-container h2 {
    text-align: center;
    font-size: 2.6em;
    font-weight: 700;
    margin-bottom: 30px;
}

#main .cosplay-profile-container h3 {
    font-size: 1.9em;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 3px solid #373737; /* Borde gris medio */
    display: flex;
    align-items: center;
}
/* Iconos de H3 */
#main .cosplay-profile-container h3 i {
    margin-right: 12px;
    color: #e0e0e0; /* Iconos de H3 */
    font-size: 0.9em;
}

#main .cosplay-profile-container p {
    margin-bottom: 18px;
    color: #dcdcdc; /* Texto normal */
}

/* === HEADER Y FOOTER DEL PERFIL === */
#main .cosplay-profile-header,
#main .cosplay-profile-footer {
    padding: 20px 40px;
    text-align: center;
    background-color: #252525; /* Fondo gris oscuro medio */
    margin-left: 0;
    margin-right: 0;
}
#main .cosplay-profile-header {
    border-bottom: 1px solid #373737; /* Borde gris medio */
}
#main .cosplay-profile-header h2 {
    font-family: var(--font-display);
    font-size: 2.2em;
    margin-bottom: 0;
    color: #e003cb; /* Usamos Fucsia aquí para variedad */
}
#main .cosplay-profile-footer {
    border-top: 1px solid #373737; /* Borde gris medio */
    font-size: 0.9em;
    color: #a5a5a5; /* Texto secundario gris claro */
}

/* Sección principal del perfil (Grid Layout) */
#main .cosplay-profile-container .profile-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px dashed #373737; /* Borde gris medio */
    margin-left: 0;
    margin-right: 0;
}

/* === CONTENEDOR IMAGEN === */
.main-image-container {
    grid-column: 1 / 2;
    position: sticky;
    top: 30px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* === IMAGEN PRINCIPAL === */
.main-image {
    width: 85%;
    max-width: 330px;
    border-radius: var(--border-radius-large);
    box-shadow: 0 0 25px color-mix(in srgb, #ff0066 20%, transparent),
                0 0 15px color-mix(in srgb, #ff0066 15%, transparent);
    border: 8px solid #252525;
    outline: 4px solid #e0e0e0;
    transform: rotate(-4deg);
    transition: 
        transform var(--transition-medium),
        box-shadow var(--transition-medium),
        filter 0.3s ease;
    flex-shrink: 0;

    /* 🎨 Mejora de color */
    filter: brightness(1.05) contrast(1.05) saturate(1.05);
}

.main-image:hover {
    transform: rotate(3deg) scale(1.04);
    box-shadow: 0 0 35px color-mix(in srgb, #ffcc00 30%, transparent),
                0 0 20px color-mix(in srgb, #ffcc00 25%, transparent);

    /* Más vivid al pasar el mouse */
    filter: brightness(1.08) contrast(1.08) saturate(1.08);
}

.intro-stats {
    grid-column: 2 / 3;
}

.cosplayer-name {
    font-family: var(--font-display); /* O Georgia, serif; si lo cambiaste */
    font-size: 3.8em;
    color: #ffcc00; /* Nombre en AMARILLO destacado */
    margin-bottom: 10px;
    font-weight: normal;
    line-height: 1.1;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Estrellas de Rating en Amarillo */
.rating-stars {
    font-size: 1.6em;
    color: #ffcc00; /* AMARILLO para estrellas */
    margin-bottom: 15px;
}
.rating-stars i { margin-right: 2px; }
.rating-stars .far.fa-star { color: #4e4e4e; } /* Estrellas vacías gris claro */
.rating-label {
    font-size: 0.75em;
    color: #a5a5a5; /* Texto secundario */
    margin-left: 10px;
    font-style: italic;
    font-weight: 400;
    font-family: var(--font-body);
}

/* Bio corta con borde Verde */
.short-bio {
    font-size: 1.2em;
    color: #dcdcdc; /* Texto normal */
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
    border-left: 4px solid #00a86b; /* Borde VERDE */
    padding-left: 15px;
    background-color: rgba(0, 168, 107, 0.05); /* Fondo sutil verde */
}

.location-info {
    font-size: 0.95em;
    color: #a5a5a5; /* Texto secundario */
    margin-bottom: 25px;
}
/* Icono de ubicación usa ahora verde */
.location-info i {
    margin-right: 8px;
    color: #00a86b; /* VERDE para icono ubicación */
}

/* Tags */
.content-tags {
    margin-bottom: 35px;
}
.content-tags .tag-label {
    font-weight: 600;
    color: #dcdcdc; /* Texto normal */
    margin-right: 10px;
    font-size: 0.9em;
    display: block;
    margin-bottom: 8px;
}
.content-tags .tag {
    display: inline-block;
    background-color: #252525; /* Fondo gris oscuro */
    color: #ffffff; /* Texto blanco */
    padding: 6px 15px; border-radius: 20px; margin-right: 8px; margin-bottom: 8px;
    font-size: 0.88em; font-weight: 500; transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    border: 1px solid #373737; /* Borde gris medio */
}
.content-tags .tag:hover {
    transform: translateY(-2px);
    background-color: #373737; /* Fondo gris un poco más claro en hover */
    color: #ffcc00; /* Texto amarillo en hover */
    border-color: #ffcc00; /* Borde amarillo en hover */
}
.content-tags .tag i { margin-right: 6px; }

/* Infographics */
.infographics { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.info-item {
    background: linear-gradient(145deg, #252525, #1a1a1a);
    padding: 18px 22px;
    border-radius: var(--border-radius-medium); text-align: center; flex-grow: 1; min-width: 120px;
    box-shadow: var(--shadow-soft); border: 1px solid #373737; /* Borde gris medio */
    transition: transform var(--transition-fast), box-shadow var(--transition-fast); position: relative; overflow: hidden;
}
.info-item:hover { transform: translateY(-6px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); }
.info-item::before { /* Efecto hover con acento amarillo */
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background-color: #ffcc00; /* AMARILLO en hover */
    opacity: 0; transform: scaleX(0);
    transform-origin: left; transition: opacity 0.3s ease, transform 0.3s ease;
}
.info-item:hover::before { opacity: 1; transform: scaleX(1); }
.info-item i { font-size: 1.5em; margin-bottom: 8px; color: #e0e0e0; /* Icono blanco */ display: block; }
.info-item .value { display: block; font-size: 1.9em; font-weight: 700; color: #e0e0e0; /* Texto blanco */ line-height: 1.2; }
.info-item .label { font-size: 0.8em; color: #a5a5a5; /* Texto secundario */ text-transform: uppercase; letter-spacing: 0.8px; font-weight: 500; }

/* --- Sección Redes Sociales --- */
#main .cosplay-profile-container .social-links-section {
    background-color: #252525; /* Fondo gris oscuro */
    padding: 30px; border-radius: var(--border-radius-medium);
    border: 1px solid #373737; /* Borde gris medio */
    margin-top: 45px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.3), var(--shadow-soft);
    margin-left: auto; margin-right: auto;
}
.social-links-section h4 {
    text-align: center; font-size: 1.7em; font-weight: 600; color: #1f5aff; /* Título AZUL */
    margin: 0 auto 30px auto; padding-bottom: 15px; border-bottom: 2px solid #373737; /* Borde gris medio */
    display: flex; align-items: center; justify-content: center; width: fit-content; max-width: 90%;
}
.social-links-section h4 i { margin-right: 12px; font-size: 0.9em; }
.links-area { margin-top: 10px; }
.social-buttons-grid { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
.social-button {
    display: inline-flex; align-items: center; justify-content: center; padding: 12px 25px; border-radius: 50px;
    text-decoration: none; font-weight: 600; font-size: 1em; color: #fff;
    background-color: #4e4e4e; /* Fondo base gris claro */
    border: none; transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast), background-image var(--transition-fast);
    min-width: 160px; box-shadow: 0 4px 8px rgba(0,0,0,0.2); cursor: pointer; background-size: 100% 100%; background-image: none; /* Asegura que no haya imagen de fondo inicial */
}
.social-button i { font-size: 1.3em; margin-right: 10px; }
.social-button:hover {
    transform: translateY(-4px) scale(1.03); box-shadow: 0 7px 14px rgba(0,0,0,0.3); text-decoration: none;
    color: #fff; border-color: transparent; background-size: 200% 200%; animation: gradientShift 3s ease infinite;
    background-image: linear-gradient(45deg, #6c757d, #5a6268, #adb5bd); /* Gradiente gris por defecto para hover si no hay uno específico */
}

/* --- Gradientes hover específicos para cada red social --- */
.social-button.instagram:hover { background-image: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf); }
.social-button.twitter:hover { background-image: linear-gradient(45deg, #101010, #555555, #101010); } /* Ajustado para mejor contraste */
.social-button.facebook:hover { background-image: linear-gradient(45deg, #1877F2, #0e56a0, #5c9bf5); }
.social-button.tiktok:hover { background-image: linear-gradient(45deg, #ff0050, #00f2ea, #252525); }
.social-button.twitch:hover { background-image: linear-gradient(45deg, #9146FF, #6e1fde, #b37fff); }
.social-button.onlyfans:hover { background-image: linear-gradient(45deg, #00AFF0, #008ac7, #a8e7ff); }
.social-button.patreon:hover { background-image: linear-gradient(45deg, #f96854, #e45a4a, #ff8a7a); } /* Color oficial Patreon */
.social-button.kofi:hover { background-image: linear-gradient(45deg, #29abe0, #1e87b8, #a6dbf5); } /* Color oficial Ko-fi */
.social-button.youtube:hover { background-image: linear-gradient(45deg, #FF0000, #cc0000, #ff4d4d); }
.social-button.snapchat:hover { background-image: linear-gradient(45deg, #FFFC00, #e6e300, #fff); }
.social-button.reddit:hover { background-image: linear-gradient(45deg, #FF4500, #cc3700, #ff8a5c); }
.social-button.discord:hover { background-image: linear-gradient(45deg, #5865F2, #454fbf, #a1a8f5); }
.social-button.fansly:hover { background-image: linear-gradient(45deg, #007AFF, #0062cc, #a8d4ff); } /* Azul similar a OF */
.social-button.fantia:hover { background-image: linear-gradient(45deg, #E9546B, #d14a5f, #f7b1bc); }
.social-button.amazon-wishlist:hover { background-image: linear-gradient(45deg, #FF9900, #e68a00, #ffcc80); }
.social-button.throne:hover { background-image: linear-gradient(45deg, #7B4BFF, #6238cc, #c2b0ff); }
.social-button.cashapp:hover { background-image: linear-gradient(45deg, #00D632, #00b32a, #99ebb0); }
.social-button.buymeacoffee:hover { background-image: linear-gradient(45deg, #FFDD00, #e6c800, #ffee80); }
.social-button.pinterest:hover { background-image: linear-gradient(45deg, #E60023, #b8001c, #f599a6); }
.social-button.telegram:hover { background-image: linear-gradient(45deg, #2AABEE, #1e87b8, #a6dbf5); }
.social-button.website:hover { background-image: linear-gradient(45deg, #6c757d, #5a6268, #adb5bd); } /* Default Website */

/* <<< --- INICIO ESTILOS NUEVOS BOTONES --- >>> */
.social-button.gumroad:hover { background-image: linear-gradient(45deg, #EC7D73, #9065DF, #bd9ff0); } /* Gradiente Rosa/Púrpura */
.social-button.spotify:hover { background-image: linear-gradient(45deg, #1DB954, #1AA34A, #53D769); } /* Gradiente Verde Spotify */
.social-button.kick:hover { background-image: linear-gradient(45deg, #53FC18, #4AF20F, #8AFF62); }    /* Gradiente Verde Brillante Kick */
.social-button.fanvue:hover { background-image: linear-gradient(45deg, #007AFF, #0059b3, #5AC8FA); }  /* Gradiente Azul Fanvue */
.social-button.manyvids:hover { background-image: linear-gradient(45deg, #E5007E, #C2006A, #FF4DAE); } /* Gradiente Magenta ManyVids */
/* <<< --- FIN ESTILOS NUEVOS BOTONES --- >>> */

@keyframes gradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
/* --- Fin Sección Redes Sociales --- */


/* Biografía detallada */
#main .cosplay-profile-container .detailed-bio {
    background-color: #1e1e1e; /* Fondo tipo tarjeta */
    padding: 35px;
    border-radius: var(--border-radius-medium);
    margin-bottom: 40px;
    border-left: 6px solid #1f5aff; /* Borde AZUL */
    box-shadow: var(--shadow-soft);
    max-width: 95%; /* Limita el ancho */
    position: relative;
    margin-left: auto;
    margin-right: auto; /* Centra con márgenes auto */
}
.detailed-bio h3 { color: #1f5aff; border-bottom-color: color-mix(in srgb, #1f5aff 30%, transparent); }
.detailed-bio h3 i { color: #1f5aff; }

/* Sección de Logros */
#main .cosplay-profile-container .awards-section {
    background-color: #1e1e1e; /* Fondo tipo tarjeta */
    padding: 30px;
    border-radius: var(--border-radius-medium);
    margin-bottom: 40px;
    border-left: 6px solid #ffcc00; /* Borde AMARILLO */
    box-shadow: var(--shadow-soft);
    max-width: 95%; /* Limita el ancho */
    margin-left: auto;
    margin-right: auto; /* Centra con márgenes auto */
}
.awards-section h3 { color: #ffcc00; border-bottom-color: color-mix(in srgb, #ffcc00 30%, transparent); } /* Título Amarillo */
.awards-section h3 i { color: #ffcc00; } /* Icono Amarillo */
.awards-section ul { list-style: none; padding-left: 10px; }
.awards-section li { margin-bottom: 12px; padding-left: 35px; position: relative; font-size: 1.05em; color: #dcdcdc; }
.awards-section li::before {
    content: '\f005'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #ffcc00; /* Icono estrella AMARILLO */
    position: absolute; left: 0; top: 2px; font-size: 1.3em; transition: transform var(--transition-fast);
}
.awards-section li:hover::before { transform: rotate(15deg) scale(1.1); }

/* Sección Galería */
#main .cosplay-profile-container .gallery-section {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%; /* Limita el ancho */
}
.gallery-section h3 { color: #9c018d; border-bottom-color: color-mix(in srgb, #9c018d 30%, transparent); } /* Título Fucsia Oscuro */
.gallery-section h3 i { color: #9c018d; } /* Icono Fucsia Oscuro */

/* CARRUSEL GALERÍA */
#main .cosplay-profile-container .gallery-carousel {
    display: flex; overflow-x: auto; overflow-y: hidden; gap: 25px;
    padding: 25px 0; margin-left: 0; margin-right: 0;
    scrollbar-width: thin; scrollbar-color: #9c018d #252525; /* Scrollbar Fucsia */
    scroll-snap-type: x mandatory; min-height: 360px;
}
.gallery-carousel::-webkit-scrollbar { height: 10px; }
.gallery-carousel::-webkit-scrollbar-track { background: #252525; border-radius: 10px;}
.gallery-carousel::-webkit-scrollbar-thumb { background: #9c018d; border-radius: 10px; border: 2px solid #252525; }
.gallery-carousel::-webkit-scrollbar-thumb:hover { background: #e003cb; } /* Fucsia claro en hover */

/* Item Galería */
#main .cosplay-profile-container .gallery-carousel .gallery-item {
    display: block; flex: 0 0 auto; scroll-snap-align: start; text-decoration: none;
    width: 240px; text-align: initial; vertical-align: initial;
}

.gallery-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
    transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
    border: 4px solid #3f3f3f;
    display: block;

    /* 🎨 Vividez por defecto */
    filter: brightness(1.05) contrast(1.05) saturate(1.05);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.06) rotate(2deg);
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}


/* === MEDIA QUERIES (Adaptabilidad) === */
@media (max-width: 992px) {
    #main .cosplay-profile-container { padding: 30px; }
    #main .cosplay-profile-header, #main .cosplay-profile-footer { padding: 15px 30px; margin-left: 0; margin-right: 0; }
    #main .cosplay-profile-container .profile-section { display: block; } /* Cambia a bloque en pantallas medianas */
    .main-image-container { position: static; width: 100%; margin-bottom: 30px; align-items: center; /* Centrar imagen si es más pequeña */ }
      .main-image { transform: rotate(0deg); max-width: 300px; margin: 0 auto; /* Centrar si es más pequeña */ }
      .main-image:hover { transform: scale(1.03); }
    .intro-stats { width: 100%; text-align: center; }
      .content-tags { text-align: center; margin-bottom: 35px; } /* Centrar tags */
      .infographics { justify-content: center; }
      .rating-stars { display: inline-block; } /* Asegura que las estrellas y el texto estén en línea */
      .social-buttons-grid { justify-content: center; gap: 15px; } /* Centrar botones */
      .social-button { min-width: 140px; }
      .cosplayer-name { font-size: 3em; }
      .rating-stars { font-size: 1.4em; }
    #main .cosplay-profile-container .detailed-bio,
    #main .cosplay-profile-container .awards-section,
    #main .cosplay-profile-container .gallery-section { max-width: none; } /* Permitir ancho completo dentro del padding */
}

@media (max-width: 768px) {
    #main .cosplay-profile-container { padding: 20px; }
    #main .cosplay-profile-header, #main .cosplay-profile-footer { padding: 15px 20px; margin-left: 0; margin-right: 0; }
    #main .cosplay-profile-container h2 { font-size: 2.1em; }
    #main .cosplay-profile-container h3 { font-size: 1.6em; }
    .cosplayer-name { font-size: 2.6em; }
    .rating-stars { font-size: 1.3em; }
    .main-image-container { margin-bottom: 25px; }
    .main-image { max-width: 280px; }
    .info-item { min-width: 100px; padding: 15px 18px; }
    .info-item .value { font-size: 1.6em; }
    .info-item i { font-size: 1.3em; }
    .social-button { font-size: 0.9em; padding: 10px 20px; min-width: auto; flex-basis: calc(50% - 8px); } /* Dos columnas */
    .social-button i { font-size: 1.1em; margin-right: 8px;}
    #main .cosplay-profile-container .detailed-bio,
    #main .cosplay-profile-container .awards-section { padding: 25px; text-align: left; }
    #main .cosplay-profile-container .gallery-section { text-align: left; }
    #main .cosplay-profile-container .gallery-carousel { gap: 15px; padding: 20px 0; margin-left: 0; margin-right: 0;}
    #main .cosplay-profile-container .gallery-carousel .gallery-item { width: 180px; }
    .gallery-image { height: 250px; }
}

@media (max-width: 480px) {
    #main .cosplay-profile-container { padding: 15px; }
    #main .cosplay-profile-header, #main .cosplay-profile-footer { padding: 10px 15px; margin-left: 0; margin-right: 0; }
    #main .cosplay-profile-header h2 { font-size: 1.8em; }
    #main .cosplay-profile-container h2 { font-size: 1.8em; }
    #main .cosplay-profile-container h3 { font-size: 1.4em; }
    .cosplayer-name { font-size: 2.2em; }
    .rating-stars { font-size: 1.2em; }
    #main .cosplay-profile-container .profile-section { margin-bottom: 40px; padding-bottom: 0; border-bottom: none; }
    .main-image-container { margin-bottom: 20px; }
    .main-image { max-width: 240px; }
    .infographics { gap: 10px; }
    .info-item { flex-basis: calc(50% - 5px); padding: 12px 15px; } /* Dos columnas */
    .info-item .value { font-size: 1.4em; }
    .social-buttons-grid { gap: 10px; }
    .social-button { flex-basis: calc(50% - 5px); font-size: 0.85em; padding: 10px 15px; } /* Dos columnas */
    .social-button i { font-size: 1em; margin-right: 6px; }
    #main .cosplay-profile-container .detailed-bio,
    #main .cosplay-profile-container .awards-section { padding: 20px; text-align: left; }
    #main .cosplay-profile-container .gallery-carousel { gap: 10px; padding: 15px 0; margin-left: 0; margin-right: 0;}
    #main .cosplay-profile-container .gallery-carousel .gallery-item { width: 140px; }
    .gallery-image { height: 200px; }
}

/* === Fin de cosplay-profile.css === */

/* === INICIO Estilos Lightbox Simple === */
.cosplay-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none; /* Gestionado por JS */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    padding: 20px;
    box-sizing: border-box;
    /* Opcional: efecto blur */
    /* backdrop-filter: blur(4px); */
    /* -webkit-backdrop-filter: blur(4px); */
}

.cosplay-lightbox-overlay img {
    display: block;
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: default; /* El cursor del overlay es pointer, pero no el de la imagen */
    box-shadow: 0 5px 25px rgba(0,0,0,0.4);
    border-radius: 4px;
    filter: brightness(1.05) contrast(1.05) saturate(1.1);
}
/* === FIN Estilos Lightbox Simple === */

.verified-badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.9em;
  vertical-align: middle;
  line-height: 1;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FFD700; /* Fallback si no soporta el gradiente */
  transition: opacity 0.2s ease;
}

.verified-badge:hover {
  opacity: 0.8;
}

/* Estilos para íconos SVG en botones de redes sociales */
.social-button .social-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.3em; /* Igualar tamaño con Font Awesome */
    height: 1.3em;
    margin-right: 10px;
}

.social-button .social-icon-svg svg {
    width: 100%;
    height: 100%;
    fill: currentColor; /* Hereda el color del texto del botón */
    transition: fill var(--transition-fast);
}

/* Colores en hover específicos por plataforma */
.social-button:hover .social-icon-svg svg {
    fill: #fff; /* Blanco en hover por defecto */
}
.social-button.onlyfans:hover .social-icon-svg svg { fill: #ffffff; } /* Azul OnlyFans */
.social-button.fansly:hover .social-icon-svg svg { fill: #ffffff; } /* Azul Fansly */
.social-button.fanvue:hover .social-icon-svg svg { fill: #ffffff; } /* Azul Fanvue */
.social-button.manyvids:hover .social-icon-svg svg { fill: #ffffff; } /* Magenta ManyVids */
.social-button.fantia:hover .social-icon-svg svg { fill: #ffffff; } /* Rosa Fantia */
.social-button.gumroad:hover .social-icon-svg svg { fill: #ffffff; } /* Rosa Gumroad */
.social-button.kick:hover .social-icon-svg svg { fill: #ffffff; } /* Verde Kick */
.social-button.kofi:hover .social-icon-svg svg { fill: #ffffff; } /* Azul Ko-fi */
.social-button.buymeacoffee:hover .social-icon-svg svg { fill: #ffffff; } /* Amarillo Buy Me a Coffee */
.social-button.cashapp:hover .social-icon-svg svg { fill: #ffffff; } /* Verde Cash App */