          /*
Theme Name: Coppermine Responsive  #035
Author: Mauu Zeta
Author URI: http://MauuZeta.COM

First Color: (blue) #1381ba
Purple: #773bc5










COPYRIGHT 2025 (C) 
- Resale of this design is prohibited. The author is Mauu Zeta, and it is prohibited to purchase it for resale.
- You are not authorized to manipulate the codes for resale.
- Any plagiarism will be reported/reported under copyright law.
- The buyer of the design is responsible for editing colors, images, etc.












/* Main
-------------------------------------------------------------- */


/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

/* Fondo del scrollbar */
::-webkit-scrollbar-track {
  background: #1a1a1a; /* Fondo oscuro de la pista */
  border-radius: 10px;
}

/* Color del thumb (la barra que se mueve) */
::-webkit-scrollbar-thumb {
  background: linear-gradient(110deg, #7c23e0, #259ede, #7c23e0);
  border-radius: 10px;
  border: 2px solid #1a1a1a; /* Espacio entre thumb y borde */
  transition: background 0.3s ease;
}

/* Hover del thumb */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(110deg, #7c23e0, #259ede, #7c23e0);
}

/* Opcional: scrollbar para Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #1381ba #1a1a1a;
}
#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background: linear-gradient(110deg, #7c23e0, #259ede, #7c23e0);
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#scrollToTop:hover {
  transform: scale(1.1);
}

#scrollToTop.show {
  opacity: 1;
  pointer-events: auto;
}
/* Global Pattern Styling
-------------------------------------------------------------- */
body {
	margin:0;
    background-color: #242424;
      font-family: "Plus Jakarta Sans", sans-serif;
	font-size:11px;
    font-weight:600;
    line-height: 1.8; 
	color:#efefef;
	line-height:170%;
	text-align:justify;
	word-wrap: break-word;
}


bold, stronng, b{
      font-family: "Plus Jakarta Sans", sans-serif;
	font-size:11px;	
    font-weight:600;
    color:#1381ba;
    	font-weight: none;
}
a {
	color: #864bd3;
	text-decoration: none;
	transition: ease-in-out 0.20s;
}
a:hover,
a:focus {
	color:#1381ba;
	text-decoration: none;
}

strong, b {
	font-weight:700;
	color:#1381ba;
}

u {
	background:#121212;
	color: #1381ba;
	text-decoration:none;
}

body, 
html,
.blocks,
.spacelalt,
.first-area,
.second-area,
.site-footer {
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
}
.bg-site{
        background-color:  transparent;
    background-position: top center;
	background-repeat: no-repeat;	
	    box-shadow: 0 0 35px 0 rgba(0,0,0, 0.2); 
	-moz-box-shadow: 0 0 35px 0 rgba(0,0,0, 0.2); 
	-webkit-box-shadow: 0 0 35px 0 rgba(0,0,0, 0.2);
}
img, 
a,
a:hover:after,
input[type='reset'],
input[type='submit'],
input[type='button'] {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.clear {
	clear: both; 
	display:block;
}

.text-center {
	text-align: center!important;
}

.text-left {
	text-align: left!important;
}

.text-right {
	text-align: right!important;
}

.pull-left {
	float: left!important;
}

.pull-right {
	float: right!important;
}

.align-center {
	display: block;
	margin: 5px auto 5px auto!important;
}

.alignleft {
	margin: 5px 20px 20px 0!important;
	float:left;
}

.alignright {
	margin: 5px 0 20px 20px!important;
	float:right;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
.tableh1,
.statlink h2,
form {
	margin: 14px 0;
	font-family:Roboto;
	font-weight:700;
}
 

.hide {
	display: none!important;
}

.social-nav a:before,
.show-menu:before {
	font-family:fontawesome;
	font-weight:400;
}
.footer-space {
  margin: 0px 20px 0px 20px;
}
.menuheader{
    margin-top:-10px;
}


.blocks,
.spacelalt,
.site-footer,
.site-footer{
  	margin:0 auto; 
      font-family: "Plus Jakarta Sans", sans-serif;
	font-size:11px;
    font-weight:600;
    line-height: 1.8; 
	position:relative; 
	max-width:1220px;
}
.spacer {
	display:block;
	width:100%;
	height:10px;
}
.cpg-nav {
  width: 1200px;
  border-radius: 20px;
  background-color: #000;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  letter-spacing: -1px;
  gap: 20px;
  padding: 15px;
      font-weight:900;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: center;
  box-sizing: border-box;
  top: 42%;
  margin-bottom:20px;

  /* Animación al cargar */
  opacity: 0;
  animation: fadeInUp 1.8s ease forwards;
  animation-delay: 0.6s; /* opcional: retrasa un poco su entrada */
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cpg-nav a {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 10pt;
  padding: 15px 25px;
  color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 12px;
  transition: color 0.3s ease;
  z-index: 1;
  overflow: hidden;
}

/* Contorno animado */
.cpg-nav a::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(110deg, #7c23e0, #259ede, #7c23e0);
  background-size: 300%;
  z-index: -1;
  border-radius: 14px;
  transition: opacity 0.3s ease;
  opacity: 0;
  animation: borderMove 1.5s linear infinite;
}

/* Hover activa el borde animado */
.cpg-nav a:hover::before,
.cpg-nav a.active-link::before {
  opacity: 1;
}

/* Enlace activo: color blanco */
.cpg-nav a.active-link {
  color: #fff;
}

/* Keyframes para mover el gradiente */
@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Animación de brillo */
@keyframes shine {
  0% {
    left: -75%;
    opacity: 0.2;
  }
  50% {
    left: 50%;
    opacity: 1;
  }
  100% {
    left: 125%;
    opacity: 0;
  }
}
/* Versión móvil simplificada para .cpg-nav */
@media (max-width: 768px) {
  .cpg-nav {
    width: 100%;          /* ancho total */
    border-radius: 0px;  /* menos redondeo para móvil */
    background-color: #000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;            /* menos espacio entre links */
    padding: 4px 4px;
    font-weight: 700;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-align: center;
    box-sizing: border-box;
    top: auto;            /* elimina desplazamiento vertical */
    margin-bottom: 0px;
    /* Sin animación ni opacidad */
    opacity: 1 !important;
    animation: none !important;
  }

  .cpg-nav a {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 8pt;
    padding: 1px 1px;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: none;
    position: relative;
    overflow: visible;
  }

  /* Quitar borde animado */
  .cpg-nav a::before {
    display: none;
  }

  /* Enlace activo: solo color blanco sin efectos */
  .cpg-nav a.active-link {
    color: #fff;
    border-color: transparent;
  }
}
/* Desktop Version
-------------------------------------------------------------- */

@media only screen and (min-width:966px), only screen and (min-width:966px) {
	
.mobile-name, 
.hide {
	display: none!important;
}
.blocks {	
    background-position: top right;
	background-repeat: no-repeat;	 
	margin-top:0px;	
}
.blockbg{
            padding:6px;

}
/* Top Navigation Area
---------------------------- */

.top-navigation {
	margin:0 auto;
	padding:20px 0;
	display:block;
	position:relative;
	background: transparent;
	overflow:hidden;
}

.top-navigation .tag-line {
	display:inline-block; 
	float:left;
	position:relative; 
	top:0; right:0;
	padding-left:60px;
	font:700 11px Roboto, sans-serif; 
	color:#A0A0A0; 
	text-transform:uppercase;
	letter-spacing:1px;
}

.top-navigation .tag-line:before {
	padding:20px;
	content:'\f0a1';
	font:400 14px fontawesome;
	color:#A0A0A0;
	position:absolute;
	top:-20px; left:0;
}

.top-navigation .social-nav {
	float:right;
	display:inline-block; 
	position:relative; 
	top:0; right:0;
}

.top-navigation .social-nav a {
	color:#A0A0A0!important;
}


/* First Content Area
---------------------------- */

.first-area {
	margin:0 auto 0;
	display:block;
	overflow:hidden;
	position: relative;
  	z-index:799;
	padding:10px 0;
	height:100px;
	background:#fff;
	text-align:left;
}

.first-area .navigation {
	display:inline-block;
	float:left;
	position: relative; 
	top:28px;
	z-index:70;
	text-align:center;
	
}
.first-area .navigation:before {
	content:'\f0c9';
	font:400 14px fontawesome;
	margin-right:15px;
	color:#efefef;
	position:absolute;
	top:5px; left:22px;
}

.first-area .nav {
	overflow:show; 
	position:relative; 
	top:-1px; left:60px;
	z-index:999; 
	display:inline-block; 
}

.first-area .social-nav {
	display:none; 
	position:relative; 
	top:-5px; left:75px;
}

.first-area .social-nav a {
	color:#efefef; 
	margin-right:12px;
	padding:2px 5px;
	line-height:14px;
}

.first-area .social-nav a:hover,
.first-area .social-nav a:focus {
	background:#efefef;
	color:#000;
}


/* Site Branding
---------------------------- */

.site-branding {
	display:inline-block;
	float:right;
	position:relative;
	z-index:800;
	top:0px; right:5px;
}

	.header-mobil {
	height: 0px;
	width:0%;
    background: url(./imgs/mobil.png) top center no-repeat;
	background-repeat: repeat;
	background-position: center;
}
}
.blockcontent{
    width:100%;
    height:700px;
}
.block-top{
    background-color:#000;
    height:90px;
    padding-top:40px;
    padding-left:200px;
    border-bottom:120px solid #fff;
}
/*******************************  HEADER + TITLE CONTENT  */

.header-container { 
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 600px 20px 40px; /* más espacio arriba */
  box-sizing: border-box;
}

.header-title {
  color: white;
animation: fadeIn 2s ease forwards;
  opacity: 0;
}

.header-title h1 {  
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -6px;
  margin: 0;
  line-height: 1.1;
}

.header-title p {
    display: inline-block; /* ← Hace que el ancho se ajuste al texto */
    box-shadow: 0 0 8px #1d1d1d;
    background: linear-gradient(to right, #850fe9, #088bb6);
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-top: 0px;
    letter-spacing: 1px;
    padding: 6px 12px; /* Añade algo de espacio interno si querés */
    border-radius: 8px; /* Opcional, pero puede mejorar el diseño */
}

/* Animación de aparición suave */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header {
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  background: 
    linear-gradient(to bottom, rgba(0,0,0,0) 30%, #242424 100%),
    url('./imgs/headers.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  top: 0;
  left: 0;
  z-index: 1000;

  /* Efecto al cargar */
  animation: fadeIn 2s ease forwards;
  opacity: 0;
}
    
    
/*******************************  THE FOOTER CONTENT  */
  .custom-footer {
  background-color: #111;
  color: #eee;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
  font-size: 36px;
  margin-bottom: 10px;
  color: #b3b3ff;
}

.footer-disclaimer {
  font-size: 14px;
  margin: 10px auto;
  max-width: 600px;
    font-family: "Be Vietnam Pro", sans-serif;
  line-height: 1.5;
  color: #ccc;
    font-weight: 300;
}

.footer-socials {
  margin: 20px 0;
}

.footer-socials a {
  color: #000;
  background-color: #fff;
  margin: 0 10px;
  font-size: 12px;
  padding: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: #850fe9;
  color: #fff;
}
.footer-credits {
  font-size: 13px;
  color: #aaa;
      font-family: "Be Vietnam Pro", sans-serif;
  line-height: 1.5;
    font-weight: 300;
}

.footer-credits a {
  color: #efefef;
  text-decoration: none;
}

.footer-credits a:hover {
  text-decoration: underline;
  color: #3697d5;
}

/* Botón subir */
.scroll-top {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: #850fe9;
  color: white;
  border: none;
  font-size: 20px;
  padding: 10px 14px;
  cursor: pointer;
  box-shadow: 0 0 10px #850fe966;
  transition: background 0.3s ease;
}

.scroll-top:hover {
  background-color: #6a0ed1;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-title {
    font-size: 22px;
  }

  .footer-disclaimer {
    font-size: 13px;
  }

  .footer-socials a {
    font-size: 20px;
    margin: 0 8px;
  }
}

    
    
    
    
    
    
    
    
/* Forms
-------------------------------------------------------------- */

.textinput {
	padding-right: 3px;
	padding-left: 3px;
	COLOR:#000;
	background: #efefef; 
	border:1px solid #e7e7e7;
}

.listbox {
	vertical-align: middle;
	border: 1px solid #EDEDED;
}

.button,
.buttonlist ul li a {
	margin-right: 2px;
	padding: 4px 8px;
	background: #333333;
	color: #fff;
	font-size: 11px;
	line-height: 20px;
	text-transform: uppercase;
	border: 0;
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	white-space: nowrap;
}

.button:hover,
.buttonlist ul li a:hover,
.button:focus,
.buttonlist ul li a:focus {
	background: #5D5D5D;
	color: #fff;
	border: 0;
}

.radio,
.checkbox {
	vertical-align: middle;
}

.bblink a, 
.bblink a:focus {
	color: #efefef; 
	text-decoration: none;
}

.bblink a:hover {
	color: #BE9127; 
	text-decoration: underline;
}


/* Images
-------------------------------------------------------------- */

.image {
	padding: 8px; 
	margin: 3px;
    margin-bottom:10px;
    border:2px solid #efefef;
    border-radius:10px;
	background-color: #fff;
     opacity: 1;
	-webkit-transition: all 0.7s ease-out;
	-moz-transition: all 0.7s ease-out;
	
	-o-transition: all 0.7s ease-out;
}

.image:hover {
transition: 1s ease;
opacity:.75;
transition: 1s ease;
}


/* Tables
-------------------------------------------------------------- */

.maintable  {
	padding:0%;
	background:transparent;
	width:100%;
		margin-bottom:20px;
	color:#efefef;
}

.tableb,
.tablef {
	padding: 5px 10px;
	font-family: Open Sans, sans-serif;
	font-size:13px;
	text-transform:none;
}

.tableb_alternate {
	padding-top: 0;
	padding-bottom: 0;
	background: transparent;
}

.tablef {
	padding: 10px;
	background: #eee;
}


/* Statlinks
-------------------------------------------------------------- */


.tableh1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  text-align: left;
  font-size: 22pt;
  color: #777777;
  letter-spacing: -2px;
  padding: 4px 16px 4px 40px; /* Dejo espacio para el círculo */
  position: relative;
}

/* Punto con efecto respirar y gradiente */
.tableh1::before {
  content: "";
  position: absolute;
  left: 12px;  /* Ajusta la posición horizontal */
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
    background: linear-gradient(to right, #850fe9, #088bb6);
  background-size: 600% 600%;
  animation: breatheGradient 4s ease-in-out infinite;
}

/* Animación "respirar" */
@keyframes breatheGradient {
  0% {
    background-position: 0% 50%;
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    background-position: 120% 50%;
    transform: translateY(-50%) scale(1.3);
    opacity: 0.7;
  }
  100% {
    background-position: 0% 50%;
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .tableh1::before {
    animation: none !important;
    background-position: 0% 0% !important;
    transform: translateY(-0%) scale(1) !important;
    opacity: 1 !important;
  }.tableh1::before {
  content: "";
  position: absolute;
  left: 0px;  /* Ajusta la posición horizontal */
  top: 0%;
  transform: translateY(0%);
  width: 0px;
  height: 0px;
  border-radius: 0%;
    background: linear-gradient(to right, #850fe9, #088bb6);
  background-size: 0% 0%;
  animation: breatheGradient 4s ease-in-out infinite;
}

}
.tableh3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  text-align: left;
  font-size: 22pt;
  color: #777777;
  letter-spacing: -2px;
  padding: 4px 16px 4px 40px; /* Dejo espacio para el círculo */
  position: relative;
}
	
.tableh1-stat {
      line-height:16px;
         font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
         text-align: center; 
	font-size:14pt;
	font-style: none;
	padding: 16px;
	letter-spacing: 2px;
	color: #353535;   
	text-transform: uppercase;
	font-style: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin:2px;}

.tableh1 a {
	color: #000;
}

.tableh1 a:hover, 
.tableh1 a:focus,
.tableh1 .statlink a:hover,
.tableh1 .statlink a:focus {
	color:#000;
	box-shadow:inset 0 -2px 0 #00;
}

.stats {
	padding: 5px; 
	background:#6e5c81; 
	font-weight:700; 
	font-size:10px; 
	font-family:Inconsolata;
	color: #fff; 
	text-transform:uppercase; 
	letter-spacing:2px;
}

.stats strong {
	font-weight:700;
	color: #000;  
}

.statlink {
        padding:20px;
    margin-left:20px;   
	display: inline; 
	    letter-spacing:0px;
	position: relative; 
	font-size:10pt;
	    font-family: "Plus Jakarta Sans", sans-serif;
	color:#7742d9; 
	font-weight:600!important;
	background-color:transparent;
}
.statlink2 {
    padding:10px;
    margin: 10px;
    display: inline-block;
    letter-spacing: 2px;
    position: relative;
    font-size: 9pt;
    line-height: 26px;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-align: center;
    color: #878787;
    font-weight: 600 !important;
    background-color: transparent;
    border: 1px solid; /* necesario para border-image */
    border-image: linear-gradient(to right, #850fe9, #088bb6) 1;
    border-radius: 10px;
}
.statlink bold, strong{
	color:#878787; 
}
.statlink a {
     letter-spacing:0px;
     font-family: "Plus Jakarta Sans", sans-serif;
	font-weight:600;
    font-size: 16pt;     text-decoration: none;
    color: #efefef;
}

.statlink a:hover {
    color: #efefef;
}

.statlink h2 {
    display: inline-block;
     font-family: "Plus Jakarta Sans", sans-serif;
	font-weight:600;
    font-size: 18pt;  
    letter-spacing:0px;
    text-decoration: none;
    color: #fff;
    background-color: #000;
    padding:10px;
    border-radius:10px;
    line-height: 15px;
}



td .tableh1:last-child {
	font-size: 15px; font-weight:400;
}

/* Categories
-------------------------------------------------------------- */

/* Categories
-------------------------------------------------------------- */


.catrow_noalb, .catrow {
         font-family: "Plus Jakarta Sans", sans-serif;
    color:#878787;
	font-weight:500!important;		
	line-height: 18px;
	font-weight: 300;	
	letter-spacing:0px;
    padding: 10px 30px;	
}

.catrow_noalb .image, .catrow .image {
    padding: 5px;
    border: 1px solid transparent;
    border-image: 0px;
    border-image-slice: 1;
    margin-top:0px;
    margin-bottom:0px;
    margin:0px;
    margin-right:10px;
    border-radius:0px;
    background-color: transparent;
    opacity: 1;
    border-radius:30px;
}

.catlink {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-style:normal;
    font-weight: 700;
    margin-bottom: 10px;  /* añadido para separar del contenido debajo */
}

.catlink a {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight:700;
    font-size: 12pt;
    color:#fff;
    background-color:#383838;
    padding:8px;
    border-radius:10px;
    text-decoration: none;
}

.catlink a:hover,
.catlink a:focus {
    color: #1381ba;
}

.catlink:before {
    margin-right:10px;
    content:'\0276F';
    font-weight:400;
    font-style:normal;
    font-size:11px;
    color:#1381ba;
    position:relative;
    top:-1px;
}


/* Albums
-------------------------------------------------------------- */

.tableh2, .tableh2_compact{ 
    font-size:12px; 
     color: #000;
	background:transparent; 
	padding: 6px;
 	text-align: left; 
}



/****************************LINK SECOND ALBUM THUMB*/

.alblink {
    background-color: #efefef;
    display: inline-block; /* Asegura que el fondo cubra todo el contenido */
    padding: 6px 22px; /* Añadí un padding más equilibrado en todos los lados */
    text-decoration: none;
    color: #fff; /* Asegura que el texto sea visible sobre el fondo negro */
    letter-spacing: 1px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 11pt;
    line-height: 17pt;
    margin-left:10px;
    margin-top:10px;
    margin-right:10px;
    transition: color 0.3s ease; /* Agregué una transición suave para el color */
    border-radius: 4px; /* Opcional: para bordes más suaves */
}
.alblink a {
    display: inline-block; /* Asegura que el fondo cubra todo el contenido */
    padding: 6px 22px; /* Ajusté el padding para que haya menos espacio en la parte inferior */
    text-decoration: none;
    color: #000; /* Asegura que el texto sea visible sobre el fondo negro */
    letter-spacing: 1px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    font-size: 11pt;
    line-height: 17pt;
    transition: color 0.3s ease; /* Agregué una transición suave para el color */
    border-radius: 4px; /* Opcional: para bordes más suaves */
    margin-bottom: 0; /* Elimina cualquier margen inferior adicional */
}

.alblink a:hover {
    color: #000; /* Cambio de color cuando se pasa el cursor */
}
.thumbnails-album{
    background-color:transparent;
}.thumbnails-album a img {
    padding: 4px;
    background-color: #000;
    border: 2px solid #515151;
    border-radius: 12px;
    box-sizing: border-box;

    width: auto;    /* quitar el 90% para que no escale */
    height: auto;   /* opcional, para mantener proporción */
    display: block;  /* para evitar espacio debajo de la imagen */
}
.album_stat {
  color: #1d1d1d;
  font-size: 9pt;
  display: inline-block;
  margin-left: 10px;
  padding: 10px 15px;
  text-align: justify;
  line-height: 1.6;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #515151;
  border-left: 4px solid #8733d1; /* más ancho y vibrante */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 300px;
  transition: background 0.3s ease;
}

.album_stat:hover {
  background: #797979;
}

.album_stat::before {
  content: "📁";
  display: inline-block;
  margin-right: 8px;
  font-size: 10pt;
  color: #8733d1;
  vertical-align: middle;
}


/* Thumbnails
-------------------------------------------------------------- */
.thumbnails {
    background-color: transparent;
    vertical-align: top;
    margin: 10px;   
    padding: 22px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.thumbnails.visible {
    opacity: 1;
    transform: translateY(0);
}

.thumbnails a::before {
    content: "\f03e"; /* Código Unicode del icono de carpeta */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Íconos sólidos */
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #850fe9;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 28px; /* más abajo */
    z-index: 10;
    box-shadow: 0 0 8px rgba(133, 15, 233, 0.4);
    color: white;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -20px;
}

.thumbnails2 {
    background-color: #383838;
    vertical-align: top;
    padding-bottom: 10px;
    border-radius: 20px;
}

.thumbnails table {
    border: none;
    border-collapse: collapse;
}

.thumbnails table td {
    padding: 0;
    border: none;
    position: relative;
}

.thumbnails a {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Aplica el movimiento y sombra al pasar el cursor sobre el bloque entero */
.thumbnails a:hover {
    transform: translateY(-6px);
}

.thumbnails a img {
    border: 0px;
    padding: 0px;
    width: 100%;
    height: auto;
    margin: 0 0 8px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, visibility 0s linear 0.6s;
}

.thumbnails a img.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

/* Difuminado sobre la imagen */
.thumbnails a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(56, 56, 56, 0) 0%,
        rgba(56, 56, 56, 0.85) 45%,
        #383838 68%
    );
}

/* Título del archivo */
.thumb_filename {
    display: block;
    font-size: 80%;
    line-height: 1.5;
}

/* Dueño */
.thumb_title_owner {
    font-size: 8.25pt;
    text-transform: uppercase;
    font-weight: 400;
}
/* Título arriba, sin posición absoluta */
.thumb_title_title, 
.thumb_title {
    position: static; /* quitar posición absoluta */
    bottom: auto;
    left: auto;
    transform: none;
    padding: 4px 12px; /* menos padding arriba y abajo */
    margin: 0 0 6px 0; /* margen inferior 4px para separar de views */
    border-radius: 12px;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 800;
    max-width:90%;
    line-height: 1.2;
    text-transform: none;
    text-align: center;
    display: block;
    z-index: 10;
}
.thumb_caption_mtime{
        display: inline-block;
    cursor: default;
    font-weight: 700;  
    color: #cccccc;
    padding: 6px 16px;
    font-size: 9px;
    text-align: center;
    text-transform: uppercase;
    border: none;
    margin: 0 0 4px 0; /* elimina margin-top grande y agrega margin-bottom 4px */
    opacity: 1 !important;    margin: 0 0 6px 0; /* margen inferior 4px para separar de views */

}
.thumb_caption_rating{
        display:  block;
    cursor: default;
    font-weight: 700;  
    color: #cccccc;
    padding: 6px 16px;
    font-size: 9px;
    text-align: center;
    text-transform: uppercase;
    border: none;
    margin: 0 0 4px 0; /* elimina margin-top grande y agrega margin-bottom 4px */
    opacity: 1 !important;    margin: 0 0 6px 0; /* margen inferior 4px para separar de views */

}.thumb_caption_rating span {
    color: #ffcc00; /* Estrella llena */
    text-shadow: 0 0 3px #ffcc00;
}

.thumb_caption_rating span.empty {
    color: #555; /* Estrella vacía */
}
/* Views justo debajo con margen inferior 4px */
.thumb_title_views {
    display: inline-block;
    cursor: default;
    font-weight: 700;    box-shadow: 0 0 8px rgba(133, 15, 233, 0.4);
    background: linear-gradient(to right, #850fe9, #088bb6);
    color: #fff;
    padding: 6px 16px;
    font-size: 9px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 20px;
    border: none;
    margin: 0 0 4px 0; /* elimina margin-top grande y agrega margin-bottom 4px */
    opacity: 1 !important;    margin: 0 0 6px 0; /* margen inferior 4px para separar de views */

}

/* Caption debajo sin mucho margen extra */

.thumb_caption_ctime {
    background-color: #383838;
    font-size: 8.5pt;
    margin-top: 0; /* sin margen superior extra */
    text-align: center;
    display: block;
}

/* Resolución */
.thumb_resolution {
    background-color: #ffffff;
}

/* Comentarios */
.thumb_caption {    margin: 0 0 6px 0; /* margen inferior 4px para separar de views */

    background-color: #383838;
    border-radius: 20px;
    color:#cccccc;
}

.thumb_caption a {
    color: inherit;
}

.thumb_num_comments {
    font-weight: normal;
    font-size: 85%;
    padding: 2px;
    font-style: italic;
    display: block;
}
/* Reglas generales */
.thumbnails a img {
    opacity: 1 !important; /* mostrar imagen siempre */
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Contenedor thumbnails estilo flex vertical para móviles */
@media (max-width: 768px) {
    .thumbnails {
        padding: 4px;
    }

    /* Que el enlace actúe como contenedor vertical */
    .thumbnails a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: none;
        transform: none !important;
        transition: none !important;
    }
    /* Quitar overlay ::after en móvil para evitar solapamientos */
    .thumbnails a::after {
        display: none;
    }

    /* Posición del icono carpeta ::before lo ocultamos en móvil */
    .thumbnails a::before {
        display: none;
    }

    /* Imagen arriba, ocupar todo el ancho */
    .thumbnails a img {
        width: 100%;
        height: auto;
        margin: 0 0 0px 0;
        border-radius: 12px;
    }

    /* Título debajo */
    .thumb_title,
    .thumb_title_title {
        margin: 0 0 0px 0;
        max-width: 100%;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        color: #fff;
        padding: 4px 0;
        display: block;
    }

    /* Views debajo del título */
    .thumb_title_views {
        margin: 0 0 6px 0;
        font-size: 8pt;
        padding: 5px 14px;
        border-radius: 20px;
        box-shadow: 0 0 8px rgba(133, 15, 233, 0.4);
        background: linear-gradient(to right, #850fe9, #088bb6);
        color: #fff;
        display: inline-block;
    }

.thumbnails2 {
    background-color: transparent;
    vertical-align: top;
    padding-bottom: 0px;
    border-radius: 0px;
}
    /* Caption debajo de views */
    .thumb_caption,
    .thumb_caption_ctime {
        margin: 6px 0 0 0;
        font-size: 9px;
        background-color: #383838;
        border-radius: 12px;
        padding: 6px 10px;
        color: #ccc;
        max-width: 100%;
        text-align: center;
        display: block;
    }
}




/* Sort order
-------------------------------------------------------------- */

.sortorder_cell {
	font: 0px/1 'Roboto',sans-serif;
	letter-spacing: 0;
	color: #ccc;
}

.sortorder_options {
	white-space: nowrap;
}


/* Preview
-------------------------------------------------------------- */

.tabs-nav-wrapper {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

.navmenu {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  background: #f9f9f9;
  border-radius: 10px;
  margin:10px;
  padding:5px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.navmenu a {
  display: flex;
  align-items: center;
  gap: 8px;
    margin:10px;
  padding: 10px 16px;
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

.navmenu img {
  height: 16px;
  width: auto;
}

.navmenu:hover,
.navmenu a:hover {
  background: linear-gradient(110deg, #7c23e0, #259ede, #7c23e0);
  color: white;
}

.navmenu-active {
  background: linear-gradient(110deg, #7c23e0, #259ede, #7c23e0);
}

.navmenu-active a {
  color: white;
}


/* Administrator
-------------------------------------------------------------- */

.admin_menu_wrapper {
  padding: 15px 20px;
  background: linear-gradient(to right, #efefef, #f5f0fb);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow: hidden;  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom:20px;
}

.admin_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  border: none;
  justify-content: center;
}

.admin_menu a {
  padding: 8px 12px;
    background: linear-gradient(to right, #850fe9, #088bb6);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin_menu a:hover,
.admin_menu a:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.admin_float {
  display: inline-flex;
  align-items: center;
  margin: 2px;
  white-space: nowrap;
}



/* No Edit
-------------------------------------------------------------- */

pre.filepath {
	margin: 0;
	padding: 0;
}

.user_thumb_infobox {
	margin-top: 1px;
	margin-bottom: 1px;
}

.user_thumb_infobox th {
	font-size: 100%;
	font-weight: bold;
	margin-top: 1px;
	margin-bottom: 1px;
	text-align: center;
}

.user_thumb_infobox td {
	font-size: 85%;
	margin-top: 1px;
	margin-bottom: 1px;
	text-align: center;
}

.user_thumb_infobox a {
	text-decoration: none;
	color: #000;
}

.user_thumb_infobox a:hover {
	text-decoration: underline;
	color: #000;
}

.icon {
	margin-right: 1px;
	vertical-align: middle;
}

.comment_date {
	font-size: 90%;
	vertical-align: middle;
	color: #5D5D5D;
}


.topmenu {
	font-family: 'Trebuchet MS', Verdana, Geneva, Arial, sans-serif;
	font-size: 110%;
	line-height: 130%;
}

.topmenu a {
	text-decoration: none;
	color: #03c;
}

.topmenu a:hover {
	text-decoration: underline;
	color: #03c;
}

.img_caption_table {
	width: 100%;
	margin: 0;
	border: none;
	background-color: #fff;
}

.img_caption_table th {
	font-size: 100%;
	padding-top: 4px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
	color: #000;
	border-top: 1px solid #fff;
	background: #d1d7dc;
}

.img_caption_table td {
	padding-top: 6px;
	padding-right: 10px;
	padding-bottom: 6px;
	padding-left: 10px;
	white-space: normal;
	border-top: 1px solid #fff;
	background: #f2f5f7;
}

.debug_text {
	width: 100%;
	margin: 0;
	border: #efefef;
	background-color: #121212;
}

.clickable_option {
	cursor: default;
}

.listbox_lang {
	font-family: Arial, Roboto, sans-serif;
	font-size: 80%;
	vertical-align: middle;
	color: #000666;
	border: 1px solid #d1d7dc;
	background-color: #f2f5f7;
}

.pic_title {
	font-size: 100%;
	font-weight: bold;
	line-height: 1.0em;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	text-align: center;
	color: #000666;
}

.pic_caption {
	font-size: 100%;
	font-weight: normal;
	line-height: 1.0em;
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	text-align: center;
	color: #000666;
	background-image: none;
}

.important {
	font-weight: bold;
	padding-top: 3px;
	padding-right: 1px;
	padding-bottom: 3px;
	padding-left: 1px;
    /* background-image : url(images/important.gif); */
	color: red;
}

#cpgChooseLanguageWrapper {
	float: left;
}

#cpgChooseThemeWrapper {
	float: left;
}

/** Swfupload css **/
div.fieldset {
	margin: 10px 0;
	padding: 20px 10px;
	border: 2px solid #0e72a4;
}

div.fieldset span.legend {
	font-weight: bold;
	position: relative;
	top: -30px;
	padding: 3px;
	color: #fff;
	background-color: #8aa5b5;
}

div.flash {
	width: 375px;
	margin: 10px 5px;
	border-color: #ccd7e0;
}

input[disabled] {
	border: 1px solid #ccc;
} /* FF 2 Fix */


.progressWrapper {
	overflow: hidden;
	width: 357px;
}

.progressContainer {
	overflow: hidden;
	margin: 5px;
	padding: 4px;
	border: solid 1px #e8e8e8;
	background-color: #f7f7f7;
}
/* Message */
.message {
	overflow: hidden;
	margin: 1em 0;
	padding: 10px 20px;
	border: solid 1px #fd9;
	background-color: #ffc;
}
/* Error */
.red {
	border: solid 1px #b50000;
	background-color: #ffebeb;
}

/* Current */
.green {
	border: solid 1px #ddf0dd;
	background-color: #ebffeb;
}

/* Complete */
.blue {
	border: solid 1px #cee2f2;
	background-color: #f0f5ff;
}

.progressName {
	font-size: 8pt;
	font-weight: 700;
	overflow: hidden;
	width: 323px;
	height: 14px;
	text-align: left;
	white-space: nowrap;
	color: #555;
}

.progressBarInProgress,
.progressBarComplete,
.progressBarError {
	font-size: 0;
	width: 0;
	height: 2px;
	margin-top: 2px;
	background-color: blue;
}

.progressBarComplete {
	visibility: hidden;
	width: 100%;
	background-color: green;
}

.progressBarError {
	visibility: hidden;
	width: 100%;
	background-color: red;
}

.progressBarStatus {
	font-family: Arial;
	font-size: 7pt;
	width: 337px;
	margin-top: 2px;
	text-align: left;
	white-space: nowrap;
	color: #555;
}

a.progressCancel {
	font-size: 0;
	display: block;
	float: right;
	width: 14px;
	height: 14px;
	background-image: url(../../images/cancelbutton.gif);
	background-repeat: no-repeat;
	background-position: -14px 0;
}

a.progressCancel:hover {
	background-position: 0 0;
}

.swfupload {
	vertical-align: top;
}

/**styles for photo manager*/
table#pic_sort tr td {
	padding: 4px;
	border-bottom: 1px solid #ccc;
}

/** styles for album manager and photo album*/
table#album_sort tr td {
	padding: 3px;
	border-bottom: 1px solid #ccc;
}

table#album_sort tr td span.editAlbum {
	font-size: 10px;
	line-height: 100%;
	display: none;
	margin-left: 100px;
	cursor: pointer;
	text-decoration: underline;
	color: #f00;
}

.cpg_message_info,
.cpg_message_success,
.cpg_message_warning,
.cpg_message_error,
.cpg_message_validation {
	margin: 10px 0;
	padding: 15px 10px 15px 50px;
	border: 1px solid;
	background-repeat: no-repeat;
	background-position: 10px center;
}

.cpg_message_info {
	color: #00529b;
	background-color: #bde5f8;
	background-image: url('../../images/message/info.png');
}

.cpg_message_success {
	color: #4f8a10;
	background-color: #dff2bf;
	background-image: url('../../images/message/ok.png');
}

.cpg_message_warning {
	color: #9f6000;
	background-color: #feefb3;
	background-image: url('../../images/message/warning.png');
}

.cpg_message_error {
	color: #d8000c;
	background-color: #ffbaba;
	background-image: url('../../images/message/stop.png');
}

.cpg_message_validation {
	color: #d63301;
	background-color: #ffccba;
	background-image: url('../../images/message/error.png');
}

.cpg_summary {
	font-size: .9em;
	float: right;
	width: 400px;
	margin: 10px 0;
	padding: 5px 10px 5px 10px;
	text-align: right;
	color: #ff2b9c;
	border: 1px solid;
	background-color: #ffdeef;
}

#GB_window {
	border: 5px solid #ccd7e0;
	background-color: #f2f5f7;
}

.external {
	padding-right: 10px;
	background: transparent url('../../images/link.gif') 100% 50% no-repeat;
}


.icon{
    padding-right: 8px;
}

#cpgform .maintable .tableb.tableb_alternate, 
#cpgform .maintable .tableb {
    padding: 8px 20px !important;
}

#cpgform .tableb.tableb_alternate .maintable, 
#cpgform .tableb .maintable {
    margin: 8px 0 5px !important;
}

#cpgform .maintable {
    max-width: 1100px !important;
    margin: 0 auto;
}

.user_thumb_infobox {
margin-top: 1px;
margin-bottom: 1px;}

.user_thumb_infobox th {
font-weight: bold;
font-size: 100%;
margin-top: 1px;
margin-bottom: 1px;
text-align: center;}

.user_thumb_infobox td {
font-size: 85%;
margin-top: 1px;
margin-bottom: 1px;
text-align: center;}

.user_thumb_infobox a {
text-decoration: none;
color: #050f2d;}

.user_thumb_infobox a:hover {
color: #050f2d;
text-decoration: none;}



.detail_body .maintable {
    background: #121212;
    color:#fff;
    width: 99.5% !important;
}

.detail_head_collapsed, .detail_head_expanded, {
    font-size: 14px; border-bottom: 1px solid #efefef;
    font-family: 'Roboto Mono', monospace;
    font-weight: normal;
    color: #fff;
    padding-left: 18px;
}

.comment_date{
	color:#377a88;
	font-size:80%;
	vertical-align : middle;
}
#pic_info_button img{
    display: none;
}
#pic_info_button a:before{
    display: block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f15c";
}
#slideshow_button img{
    display: none;
}
#slideshow_button a:before{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f144";
}
.prev_strip img{
    display: none;
}

#film, .tape {
    width: 99% !important;
    margin:0px !important;
}
.filmstip_related {padding: 5px;color: black;letter-spacing: 2px;display: inline-block;
        	text-align:justify;
    }.tile-background{
    background-color: #000;
}
.filmstrip_background {
	background:#transparent;
}
.strip_image {
    padding: 4px;
	margin: 8px;
	border-radius: 0px;
    background: #fff;
    width:auto;
    height:auto;
    text-align:auto;
    	text-align:justify;
}
.prev_strip a:before{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f104";
    font-size: 200%;
}
.next_strip img{
    display: none;
}
.next_strip a:before{
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    font-size: 200%;
}
.icon {
	vertical-align:middle;
	margin-right:1px;
}
.comment_date{
	color: #5F5F5F;
	font-size: 90%;
	vertical-align: middle;
}
/* Responsive
-------------------------------------------------------------- */

@media only screen and (max-width: 966px), only screen and (max-device-width: 966px) {
	
.mobile
.catrow 
.thumbnail {
font-size:4pt;
display: none!important;
}
body {
	margin:0!important;
	padding:0!important;
	overflow-x:hidden;
}
 .custom-footer {
    padding: 30px 15px;
  }

  .footer-title {
    font-size: 22px;
    letter-spacing: -1px;
  }

  .footer-disclaimer {
    font-size: 12px;
    line-height: 1.4;
    max-width: 90%;
  }

  .footer-socials {
    margin: 15px 0;
  }

  .footer-socials a {
    font-size: 16px;
    padding: 10px;
    margin: 0 6px;
  }

  .footer-credits {
    font-size: 11px;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
  }

  .scroll-top {
    right: 15px;
    bottom: 15px;
    font-size: 18px;
    padding: 8px 12px;
  }

.blocks, {  
    background-color:#;
	width:90vw!important;
}

.first-area {
	margin:0 auto; 
	z-index:899; 
	width:100%!important;
	position:relative!important;
}

.first-area .social-nav {
	position: absolute; 
	top:21px; right:10px;
	z-index:999!important;
}

.social-nav a {
	padding:0 2px 0!important;
	text-shadow:0 0 0;
	font-size:13px!important;
}.menuheader{
    margin-left:0px;
}

.blockbg{
                background-color:#fff;
            padding:0px;
}
.site-name span{    
  letter-spacing:0px;
  color:#fff;
  font-size: 0px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight:600;
    font-style: italic;
  	text-transform:uppercase;


}
.statlink2{
    margin:10px;
	display: inline; 
	    letter-spacing:2px;
	position: relative; 
	padding: 3px 6px; 
	font-size:5pt;
		  line-height:14px;
       font-family: "Plus Jakarta Sans", sans-serif;
         text-align: center; 
         color:#efefef; 
	font-weight:600!important;
	background-color:transparent;
}
.tableh1 {	
    letter-spacing:0px;
	font-size:9pt;
}
.tableh3 {	
    letter-spacing:0px;
	font-size:7pt;
	padding:8px;
}
.statlink h2 {
	font-size:8px!important;
	font-weight:800;
	letter-spacing:0px;
	border:0px solid #fff;
	margin-left:-10px;
}
.maintable td.statlink h2{
	display: inline; 
	position: relative; 
	padding: 3px 6px; 
	font-size:8px;
	  font-family: "Plus Jakarta Sans", sans-serif;
 	letter-spacing:0px;
	letter-spacing:10px;
	font-weight:600!important;
	text-transform:uppercase;
	background-color:transparent;
    letter-spacing: 0px;
    text-align: left;
}.statlink {
	display: inline; 
	position: relative; 
	padding: 3px 6px; 
	font-size:8px;
	  font-family: "Plus Jakarta Sans", sans-serif;
 	letter-spacing:0px;
	font-weight:600!important;
	text-transform:uppercase;
	background-color:transparent;
}
.tabs-table-alt .tableh1-small {
width:82vw;
}
.maintable:first-child {
	border-top:1px solid #efefef;
}
.image {
    padding:2px;
	margin: 2px!important;
}

.thumb_title {
	margin: 2px 0!important;
}

#fullsize_image {
	max-width: 100%; 
	height: auto;
}

.thumbnails .image, 
.thumbnails .thumbnail {
	height: auto; 
	display:inline; 
	max-width:50vw;
}

a:link .image {
	
}

.strip_image {
	max-width: 14vw!important; 
	height: auto;
}.cat-desc{
	font-size:7px!important;
	line-height:19px;
}
/* Miscellaneous
-------------------------------------------------------------- */

.detail_head_collapsed,
.detail_head_expanded {
	color: #5D5D5D;
}

.fitpic {
	max-width: 794px;
}

#film {
	width: 100%!important;
}

#film .thumb a:link {
	width: 100%!important;
}

.tape {
	width: 100%!important; 
	height: 100%!important; 
	margin-left: 0px!important;
}

.remove {
	display: none!important;
}

.display_media .image {
	max-width: 70vw!important; 
	height: auto;
}

#picinfo {
	width: 100%!important; 
	overflow: scroll;
}
.sortorder_cell {
	font: 0px/1 'Roboto',sans-serif;
	letter-spacing: 0;
	color: #ccc;
}
.sortorder_cell img,
.thumb_caption_rating img,
#comments img {
	max-width: 0vw!important; 
	height: auto!important;
}

#comments #captchaImg img{
	max-width: 25vw!important; 
	height: auto!important;
}

.comment_date {
	font-size: 1.4vw!important;
}

.navmenu img,.buttonlist img {
	max-width: 2.5vw!important; 
	height: auto;
}
/* Preview
-------------------------------------------------------------- */

.tabs-nav-wrapper {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

.navmenu {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: 7pt;
  letter-spacing: 0px;
  background: #f9f9f9;
  border-radius: 10px;
  margin:4px;
  padding:2px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.navmenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

.navmenu img {
  height: 16px;
  width: auto;
}

.navmenu:hover,
.navmenu a:hover {
  background: linear-gradient(to right, #d4179e, #8733d1);
  color: white;
}

.navmenu-active {
  background: linear-gradient(to right, #d4179e, #8733d1);
}

.navmenu-active a {
  color: white;
}

.buttonlist {
	text-align:center;
}

.buttonlist ul li a span {
	height: 2vw!important; 
	line-height: 2vw!important;
}

.buttonlist ul li a {
	font-size: 1vw!important;
}

}

@media only screen and (max-width: 481px), only screen and (max-width: 481px) {

.tableh1 {
padding: 5px 7px!important; 
font-size:8pt;
letter-spacing:0px;

}
.statlink {
	line-height: 21px!important;
}

.catrow_noalb {
            	font-size:4pt;
	padding: 5px 7px!important;
}
.catrow_noalb, .catrow {
        	font-size:4pt;

}
.catrow {
    	font-size:4pt;
    		line-height:10px;
	padding: 5px 7px!important;
}

.catlink a{
    font-size: 8pt;
	line-height: 21px!important;
}

.catrow_noalb table,.catrow table {
	font-size:5pt;
	line-height:10px;
}

.tableh2 {
	padding: 5px!important;
}

.alblink {
	font-size: 11px!important; 
	background-color:#fff;
	border:1px solid #fff;
	letter-spacing:-6px;
	line-height: 20px!important;
}
.album_stat {  
    color: #1d1d1d;
    font-size: 5pt;
    margin-left:10px;
display: block;
padding:5px;
    display: inline-block;
margin-left:10px;	
text-align:justify; 
}
.tableb p {
	font-size: 10px!important; 
	line-height: 1.5!important;
}

.sortorder_cell {
	display: none;
}
}
    
/* MOBIL MOBIL MOBIL MOBIL MOBIL MOBIL MOBIL MOBIL MOBIL */
@media (max-width: 768px) {
    /* HEADER STLYE - TEXT TITLE */
    header {
        display: none;
    }
.header-mobil {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* Puedes ajustar según el diseño de tu imagen */
  background: url(./imgs/mobil.png) center top no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}
.alblink {
    background-color: #efefef;
    display: inline-block; /* Asegura que el fondo cubra todo el contenido */
    padding: 6px 22px; /* Añadí un padding más equilibrado en todos los lados */
    text-decoration: none;
    color: #fff; /* Asegura que el texto sea visible sobre el fondo negro */
    letter-spacing: 1px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
  font-size: 6pt;
    line-height: 10pt;
    margin-left:10px;
    margin-top:10px;
    margin-right:10px;
    transition: color 0.3s ease; /* Agregué una transición suave para el color */
    border-radius: 4px; /* Opcional: para bordes más suaves */
}
.alblink a {
        line-height:10pt;
    display: inline-block; /* Asegura que el fondo cubra todo el contenido */
    padding: 5px 5px; /* Ajusté el padding para que haya menos espacio en la parte inferior */
    text-decoration: none;
    color: #000; /* Asegura que el texto sea visible sobre el fondo negro */
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
  font-size: 6pt;

}

.alblink a:hover {
    color: #000; /* Cambio de color cuando se pasa el cursor */
}

.album_stat {
  color: #1d1d1d;
    font-size: 5pt;
  display: inline-block;
  margin-left: 4px;
  padding: 7px 5px;
  text-align: justify;
  line-height: 1.6;
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #f9f9f9;
  border-left: 4px solid #8733d1; /* más ancho y vibrante */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 300px;
  transition: background 0.3s ease;
}

.album_stat:hover {
  background: #f1e9fc;
}
.thumbnails-album{
    background-color:transparent;
}.thumbnails-album a img {
    padding: 4px;
    background-color: #000;
    border: 2px solid #515151;
    border-radius: 12px;
    box-sizing: border-box;
    width: 100%;    /* quitar el 90% para que no escale */
}
.album_stat::before {
  content: "📁";
  display: inline-block;
  margin-right: 8px;
    font-size: 5pt;
  color: #8733d1;
  vertical-align: middle;
}
    /* Vistas: Hacer visibles y centradas en dispositivos móviles */
    .thumb_title_views {
        opacity: 1 !important;  /* Asegura que la visibilidad esté activada */
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        background-color: rgba(0, 0, 0, 0.65);  /* Fondo más transparente */
        color: #fff;
        padding: 4px 8px;
        font-size: 7PX;
        text-align: center;
        text-transform: uppercase;
        border-radius: 10px;  /* Hace que sea redondeada como una burbuja */
        z-index: 10;
        pointer-events: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Sombra para dar más profundidad */
    }

    /* Mostrar la fecha debajo del título */
    .thumb_caption_ctime {
        display: block;
             padding: 4px 8px;
        font-size: 7PX;
    }

    /* Mostrar el título debajo de la miniatura */
    .thumb_title_title,
    .thumb_title {
        display: block;    
        font-size: 7PX;
        text-align: center;  /* Asegura que el título esté centrado */
    }

    /* Mostrar nombre del dueño */
    .thumb_title_owner {
        display: block;
        font-size: 8.25pt;
        text-transform: uppercase;
        font-weight: 400;
        text-align: center;
    }

    /* Mostrar comentarios */
    .thumb_num_comments {
        display: block;
        font-weight: normal;
        font-size: 85%;
        padding: 2px;
        font-style: italic;
        text-align: center; /* Centrado en móvil */
    }

    /* Mostrar resolución */
    .thumb_resolution {
        display: block;
        background-color: #ffffff;
        font-size: 8.5pt;
        text-align: center;
        padding: 5px;
    }

    