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

First Color: var(--accent);
/* Main
-------------------------------------------------------------- */


        :root {
            --accent: #dd889d;
            --bg-overlay: rgba(245, 239, 235, 0.94); 
        }

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

        body {
            background:#f6f0ec; 
            font-family: 'Montserrat', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

Para que tu sitio tenga una estética coherente con el estilo retro-moderno y editorial que estamos armando, te propongo una barra de desplazamiento (scrollbar) minimalista. Esta barra se verá delgada, con bordes redondeados y un color que combine con tu diseño oscuro o claro.

Copia este código en tu archivo CSS (fuera de los bloques @media para que afecte a todo el sitio):

CSS
/* --- CUSTOM SCROLLBAR (ESTILO MINIMALISTA) --- */

/* 1. Tamaño y fondo de la barra total */
::-webkit-scrollbar {
    width: 8px;  /* Ancho de la barra vertical */
    height: 8px; /* Alto de la barra horizontal */
    background-color: #f1f1f1; /* Fondo de la pista */
}

/* 2. El "palo" o tirador (Thumb) */
::-webkit-scrollbar-thumb {
    background-color: #1d1d1d; /* Color oscuro como tus títulos */
    border-radius: 10px;       /* Bordes redondeados */
    border: 2px solid #f1f1f1; /* Crea un efecto de margen alrededor del tirador */
}

/* 3. El tirador cuando pasas el mouse (Hover) */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent, #ff00ff); /* Cambia al color de acento (rosa/lila) */
}

/* 4. La pista por donde corre la barra (Track) */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* --- SOPORTE PARA FIREFOX --- */
* {
    scrollbar-width: thin;
    scrollbar-color: #1d1d1d #f1f1f1;
}
bold, stronng, b{
      font-family: "Exo", sans-serif;
	font-size:11px;	
    font-weight:600;
    color:var(--accent);
    	font-weight: none;
}
a {
	color: var(--accent);
	text-decoration: none;
	transition: ease-in-out 0.20s;
}
a:hover,
a:focus {
	color:#efefef;
	text-decoration: none;
}

strong, b {
	font-weight:700;
	color:var(--accent);
}

em, i {
	font-style:italic;
	color: #000;
}

u {
	background:#121212;
	color: var(--accent);
	text-decoration:none;
}

body, 
html,
.blocks,
.spacelalt,
.first-area,
.second-area,
.cpg-nav,
.site-footer {
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
}
 
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;
}
            header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 40px 3%;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        header::before {
            content: "";
            position: absolute;       
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            background-color: var(--bg-overlay);
            background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10s2.5-5 5-5 5 5 5 5 2.5 5 5 5 5-5 5-5 2.5-5 5-5 5 5 5 5 2.5 5 5 5 5-5 5-5 2.5-5 5-5 5 5 5 5' fill='none' stroke='%23dd889d' stroke-width='1.5'/%3E%3C/svg%3E");
            background-repeat: repeat-x;
            background-position: top;
            background-size: 60px 30px;
            mask-image: linear-gradient(to bottom, black 0%, transparent 30%);
            -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 30%);
        }
        .logo-area { display: flex; flex-direction: column; }
        .logo-wrapper { display: flex; align-items: center; gap: 12px; }
        .logo-icon { width: 24px; height: 24px; color: var(--accent); }

        .logo {
             font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 26px;                font-weight:900;

            letter-spacing: -2px;
            text-transform: uppercase;
            line-height: 1;
            color: #000;
        }

        .slogan { 
            font-family: 'Archivo Black', sans-serif;
            font-size: 8px; 
            letter-spacing: 1.5px; 
            color: var(--accent); 
            text-transform: uppercase;
            margin-top: 8px;
            opacity: 0.9;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .slogan::before {
            content: "";
            width: 80px;
            height: 1px;
            background-color: var(--accent);
            opacity: 0.5;
        }

        nav ul { display: flex; list-style: none; gap: 30px; }
        nav a { 
            text-decoration: none; 
            color: #000; 
            font-size: 12px; 
            font-weight: 700; 
            letter-spacing: 0px; 
            text-transform: uppercase;
                        font-family: 'Montserrat', sans-serif;
            position: relative;
            padding: 5px 0;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: inline-block;
        }

        nav a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 40%;
            width: 0;
            height: 1px;
            background-color: var(--accent);
            transition: all 0.4s ease;
            transform: translateX(-50%);
        }

        nav a:hover { color: var(--accent); transform: translateY(-2px); }
        nav a:hover::after { width: 100%; }
        nav ul:hover a:not(:hover) { opacity: 0.5; }

        .social-links {
            position: fixed;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 30px;
            z-index: 50;
            padding: 20px 10px;
        }
        .social-links::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10s2.5-5 5-5 5 5 5 5 2.5 5 5 5 5-5 5-5 2.5-5 5-5 5 5 5 5 2.5 5 5 5 5-5 5-5 2.5-5 5-5 5 5 5 5' fill='none' stroke='%23dd889d' stroke-width='1.5'/%3E%3C/svg%3E");
            background-size: 40px 20px;
            opacity: 0.2;
            mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
            -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
        }
        .social-links a {
            writing-mode: vertical-rl;
            text-decoration: none;
            color: #000;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            opacity: 0.4;
            transition: 0.3s;
        }
        .social-links a:hover { opacity: 1; color: var(--accent); }

        .main-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            max-width: 1600px;
            margin: 20px auto 80px;
            gap: 40px;
            padding: 0 80px;
        }

        .image-side { display: flex; height: 75vh; gap: 25px; }
        .image-box { 
            flex: 1; 
            position: relative; 
            overflow: hidden;
            background: #000; 
            box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
        }

        .image-box img {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0;
            animation: crossfade 10s infinite ease-in-out;
        }
        .image-box img:nth-child(2) { animation-delay: 5s; }

        @keyframes crossfade {
            0% { opacity: 0; }
            10%, 50% { opacity: 1; }
            60%, 100% { opacity: 0; }
        }

        .text-side { display: flex; flex-direction: column; justify-content: center; position: relative; }
        .title-wrapper { position: relative; z-index: 5; margin-bottom: 30px; margin-top:10px;}

        .script-layer {
            font-family: 'Mr De Haviland', cursive;
            font-size: clamp(140px, 16vw, 290px);
            color: var(--accent);
            position: absolute;
            top: -90px; left: -20px;
            z-index: -1; opacity: 0.8; transform: rotate(-3deg);
        }

        .main-heading {
            font-family: 'Archivo Black', sans-serif;
            font-size: clamp(50px, 7vw, 100px);
            line-height: 0.75;
            letter-spacing: -10px; 
            color: #000;
            text-transform: uppercase;
        }

        .welcome-block {
            background: rgba(255, 255, 255, 0.7);
            padding: 50px;
            border-left: 2px solid #000;
            backdrop-filter: blur(10px);
            max-width: 500px;
            position: relative;
 
        }

        .welcome-title {
            font-size: 11px;
            font-weight: 700; 
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .welcome-title::before {
            content: "";
            width: 14px;
            height: 14px;
            background-color: var(--accent);
            -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
            mask-size: contain;
            -webkit-mask-size: contain;
        }

        .welcome-title::after {
            content: "";
            width: 110px;
            height: 1px;
            background-color: var(--accent);
            opacity: 0.5;
        }

        .welcome-avatar {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            overflow: hidden;
            position: absolute;
            top: 50%;
            right: -90px;
            transform: translateY(-50%);
            z-index: 10;
            border: 12px solid #f6f0ec;
        }

        .welcome-avatar img { width: 100%; height: 100%; object-fit: cover; }
        
        .welcome-text { 
            font-size: 12px; 
            color: #333; 
            line-height: 1.4; 
            font-weight: 500;
            text-align: justify;            font-family: 'Montserrat', sans-serif;

        }

    @media (max-width: 1024px) {
    header { 
        display: flex !important; /* Aseguramos que el header sea visible */
        flex-direction: column; 
        gap: 15px; 
        text-align: center; 
        padding: 20px;
    }

    /* --- LOGO Y SLOGAN VISIBLES --- */
    .logo-area { 
        display: flex !important;
        flex-direction: column;
        align-items: center; 
        width: 100%;
    }

    .logo-icon { 
        display: block !important; /* Cambiado de 'none' a 'block' */
        margin-bottom: 10px;
    }

    .slogan {
        display: block !important;
        font-size: 12px; /* Ajusta según tu diseño */
        margin-top: 5px;
    }

    .slogan::before { 
        display: inline-block; /* Volvemos a mostrar el decorativo si lo tenía */
        margin-right: 8px;
    }

    /* --- MENÚ VISIBLE Y CENTRADO --- */
    nav {
        display: block !important;
        width: 100%;
                font-size: 9px;

    }

    nav ul { 
        display: flex !important;
        flex-wrap: wrap; /* Si son muchos links, que bajen a la siguiente línea */
        gap: 10px; 
        justify-content: center; 
        padding: 0;        
        font-size: 9px;
        list-style: none;
    }

    nav ul li a {
        font-size: 9px;
        padding: 5px 10px;
    }

    /* --- CONTENEDOR PRINCIPAL --- */
    .main-container { 
        grid-template-columns: 1fr; 
        padding: 15px; 
        margin: 0 auto 30px;
    }

    /* Mantenemos ocultos solo los elementos decorativos extra si lo prefieres */
    .social-links { display: none; }
    .title-wrapper { display: none; }
    
    .image-side { 
        height: auto; 
        min-height: 30vh; 
        gap: 10px; 
        margin-bottom: 40px; 
    }

    /* --- RECORRECCIÓN DEL WELCOME EN MÓVIL --- */
    .welcome-block {
        max-width: 95%;
        margin: -10px auto 0;
        padding: 60px 20px 20px; 
        border-left: none;
        border-top: 2px solid #000;
        text-align: center;
        position: relative; /* Para que el avatar posicionado funcione */
    }

    .welcome-avatar {
        position: absolute;
        top: -55px; 
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
        border-width: 6px;
    }

    .welcome-title {
        display: flex !important; 
        justify-content: center;
        align-items: center;
        font-size: 12px;
        margin-bottom: 10px;
        letter-spacing:1px;
    }

    .welcome-text {
        font-size: 10px; 
        line-height: 1.4;
        text-align: center;
    }
}
        
        
.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;
}
.cpg-nav {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px; /* antes 20px */
  padding: 30px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/**************************** LINK MENU TOP */
.cpg-nav a {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 700;
   font-size: 9pt;
  padding: 20px 10px;
  color:#000;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Cuando el fondo está debajo: texto blanco */
.cpg-nav a.active-link {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

/* Fondo deslizante */
.cpg-nav .nav-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
    color:#000;
  background: linear-gradient(to right, #d4179e, #8733d1);
  border-radius: 10px;
  z-index: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media (max-width: 768px) {
.cpg-nav {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0px;
  padding: 5px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Enlaces del menú */
.cpg-nav a {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 8pt; /* medida más legible */
  padding: 5px 10px;
  color: #000 !important;
  background: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Enlace activo */
.cpg-nav a.active-link {
  color: #000 !important;
  background: none;
  -webkit-text-fill-color: #000 !important;
}

/* Enlace hover */
.cpg-nav a:hover {
  color: #000 !important;
}

/* Elimina el fondo deslizante */
.cpg-nav .nav-bg {
  display: none !important;
}
}
.blocks,
.spacelalt,
.site-footer,
.site-footer
.cpg-nav {
  	margin:0 auto; 
      font-family: "Exo", sans-serif;
	font-size:11px;
    font-weight:600;
    line-height: 1.8; 
	position:relative; 
	max-width:1220px;
}
.spacer {
	display:block;
	width:100%;
	height:10px;
}

/* Desktop Version
-------------------------------------------------------------- */

@media only screen and (min-width:966px), only screen and (min-width:966px) {
	
.mobile-name, 
.hide {
	display: none!important;
}

.cpg-nav {
	margin:0 auto 0!important;
	padding:10px 0;
	position:relative;
	z-index:100;
	border:0;
}

.cpg-nav .spacelalt {
	padding:0;
}

.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;
}

.search-container {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #000; /* Color morado similar al fondo de la imagen */
  padding: 10px;
  border-radius: 15px;
  max-width: 390px;
  margin: 15px auto;
  text-align: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
}

.search-title {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;

}

.search-input {
  width: 80%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  margin-bottom: 15px;
  color: #333;
    font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #fff;
}

.search-button {
  background-color: #8e24aa; /* Un tono más claro de morado */
  color: white;
    font-family: "Plus Jakarta Sans", sans-serif;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.search-button:hover {
  background-color: #ab47bc; /* Tono de hover */
}
.footer {
    width: 100%;
    box-sizing: border-box;
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Centrado vertical de los bloques */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-content {
    margin-bottom: 10px;
        font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 900;
}

.footer-content h1 {    
    font-size: 32px; /* Tamaño más controlable */
    font-weight: 900;
    margin: 0;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #fff;    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 900;
}

.footer-content p {    
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent); /* Color rosa/lila para el subtítulo */
    margin-top: 5px;    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 900;
}

.footer-text {   
    max-width: 900px; /* Evita que el texto sea demasiado ancho */
    margin-bottom: 40px;
}

.footer-text p {    
    font-size: 13px;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;    font-family: "Plus Jakarta Sans", sans-serif;
 }

/* CRÉDITOS ESTILO BARRA TÉCNICA */
.footer-links {   
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    width: 100%;
    max-width: 800px;
}

.footer-links .credit {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links .credit span {
    color: var(--accent);
    font-weight: 400;
    margin-right: 4px;
}

/* Símbolo de cierre sutil */
.footer::after {
    content: "●";
    margin-top: 40px;
    font-size: 10px;
    color: var(--accent);
    opacity: 0.5;
}

/* --- AJUSTE DE FOOTER PARA MÓVIL --- */
@media (max-width: 767px) {
    .footer {
        padding: 30px 15px !important; /* Un poco menos de aire lateral */
    }

    /* Reducimos el título principal para que no rompa en 3 líneas */
    .footer-content h1 {
        font-size: 24px !important; 
        letter-spacing: -0.5px !important;
    }

    /* El subtítulo con letter-spacing suele ser muy ancho, lo ajustamos */
    .footer-content p {
        font-size: 8px !important;
        letter-spacing: 1.5px !important;
        margin-top: 2px !important;
    }

    /* Texto descriptivo más compacto y legible */
    .footer-text {
        margin-bottom: 30px !important;
    }

    .footer-text p {
        font-size: 11px !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.6) !important; /* Un poco más de contraste para leer mejor */
    }

    /* BARRA DE CRÉDITOS: La hacemos flexible por si los nombres son largos */
    .footer-links {
        flex-direction: column; /* Apilamos los créditos uno sobre otro */
        gap: 12px !important;
        padding-top: 20px !important;
    }

    .footer-links .credit {
        font-size: 8px !important;
        letter-spacing: 0.5px !important;
    }

    /* El punto final de cierre */
    .footer::after {
        margin-top: 25px !important;
    }
}
/* 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: #C1A67B; 
	text-decoration: none;
}

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


/* Images
-------------------------------------------------------------- */
/* --- CONFIGURACIÓN PARA 3 COLUMNAS EN MÓVIL --- */
/* --- CONFIGURACIÓN PARA 3 COLUMNAS EN MÓVIL (COAXIAL) --- */
@media (max-width: 767px) {
    
    /* 1. Solo afectamos a la tabla de miniaturas, ignorando catrow/catlink */
    .thumbnails-view table, 
    .thumbnails-view tbody {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important; /* Alineado a la izquierda para evitar huecos */
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 2. Desintegramos el TR para que las celdas fluyan libremente */
    .thumbnails-view tr {
        display: contents !important;
    }

    /* 3. FORZAMOS 3 COLUMNAS EXACTAS */
    .thumb_cell, 
    td.thumbnails,
    .thumbnails2 {
        display: block !important;
        /* 33.33% menos un margen mínimo para evitar que la tercera salte de línea */
        width: calc(28.33% - 4px) !important; 
        max-width: 28.33% !important;
        box-sizing: border-box !important;
        margin: 9px !important; 
        margin-bottom: 12px !important;
        padding: 0 !important;
        float: left !important; /* Refuerzo para navegadores antiguos */
    }

    /* 4. Ajuste de las tablas internas del PHP */
    .thumb_cell table {
        width: 100% !important;
        display: block !important;
        border: none !important;
    }

    /* Reducimos el padding de la imagen para que no se vean minúsculas en 3 columnas */
    .thumb_cell img {
        padding: 4px !important; 
    }

    /* 5. Ocultamos basura visual que empuja las fotos y rompe la fila de 3 */
    img[src*="spacer.gif"], 
    .thumb_cell br,
    .thumb_cell p,
    .thumb_cell span,
    .thumb_cell font {
        display: none !important;
    }
}

/* --- ESTILO RETRO (PC Y MÓVIL) --- */

/* --- CORRECCIÓN DE VISIBILIDAD DE IMÁGENES --- */
.thumb_cell img, 
.image {
    /* Forzamos que la imagen tenga dimensiones visibles */
    display: inline-block !important; /* Cambiado de block a inline-block para evitar colapsos en tablas */
    width: auto !important;
    min-width: 161px !important; /* Evita que se colapse a 0px */
    max-width: 100% !important;
    height: auto !important;
    
    /* Estilo Visual */
    padding: 6px !important;
    background-color: #fff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 2px !important;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.05) !important;
    
    /* Centrado */
    margin: 0 auto !important;
    
    /* Animación */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Fix específico para Coppermine: asegura que el enlace padre no bloquee la imagen */
.thumb_cell a {
    display: inline-block !important;
    width: 100% !important;
    text-decoration: none !important;
}

.thumb_cell img:hover {
    transform: translateY(-5px) rotate(1deg) !important;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.08) !important;
}
/* Tables
-------------------------------------------------------------- */
.maintable {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 30px;
    color: #1d1d1d;
    background: #fdfaf7; /* Color papel envejecido */
    border-radius: 2px 3px 4px 2px;
    position: relative;
    overflow: visible; /* Crucial para la sombra */
    box-sizing: border-box !important;
    
    /* Estética Editorial */
    padding: 2%; 
    outline: 1px solid rgba(0,0,0,0.1);
    outline-offset: -5px;
    
    /* Sombra sólida Retro */
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.05);
    
    transition: all 0.3s ease;
}

/* --- AJUSTES ESPECÍFICOS PARA MÓVIL --- */
@media (max-width: 767px) {
    .maintable {
        /* Reducimos la sombra para que no se corte en pantallas pequeñas */
        box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.05) !important;
        -webkit-box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.05) !important;
        
        /* Ajustamos el margen para que la sombra tenga espacio dentro del viewport */
        width: calc(100% - 12px) !important; 
        margin-left: auto;
        margin-right: auto;
        
        /* Un poco más de aire interno en móvil */
        padding: 4% 2% !important; 
        
        /* El outline-offset muy agresivo a veces falla en móvil, lo suavizamos */
        outline-offset: -3px !important;
    }
}
/* Detalle extra: Una "oreja" de papel doblado opcional */
.maintable::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 20px 20px 0;
    border-style: solid;
    border-color: #f6f0ec #f6f0ec #ddd #ddd; /* Colores que simulan el doblez */
    display: block;
    width: 0;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.05);
}

.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 {
    background-repeat: no-repeat;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 900;
    text-align: left; 
    font-size: 16pt;
    padding-left: 25px; 
    padding-bottom: 15px; /* Espacio para que luzcan las líneas y el punto */
    margin-top: -10px;
    color: #1d1d1d;   
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    border: none;
}

/* LÍNEA SUPERIOR CON PUNTO */
.tableh1::before {
    content: "";
    position: absolute;
    bottom: 8px; /* Altura de la primera línea */
    left: 25px;
    width: 40%; /* Línea más corta arriba */
    height: 2px;
    background-color: var(--accent);
    opacity: 0.8;
}

/* EL PUNTO (Redondo arriba de las líneas) */
.tableh1-dot { 
    /* Nota: Si no puedes agregar un span, podemos usar un box-shadow en el before */
}

/* Usando una sombra para crear el círculo sin HTML extra */
.tableh1::before {
    box-shadow: -10px -5px 0 0 var(--accent); /* Crea un punto a la izquierda y arriba */
}

/* LÍNEA INFERIOR DESPLAZADA */
.tableh1::after {
    content: "";
    position: absolute;
    bottom: 2px; /* Altura de la segunda línea */
    left: 60px; /* Desplazada a la derecha */
    width: 50%; 
    height: 2px;
    background-color: var(--accent);
    opacity: 0.4; /* Un poco más tenue para dar profundidad */
}
.tableh3 {
    background-repeat: no-repeat;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 900;
    text-align: left; 
    font-size: 14pt; /* Un poco más pequeño para jerarquía visual */
    padding: 15px 15px 15px 40px; /* Más espacio a la izquierda para el diseño */
    color: #353535;   
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: relative;
    background-color: rgba(0,0,0,0.02); /* Un fondo muy tenue para diferenciar la fila */
    border: none;
}

/* INDICADOR VERTICAL (Estilo Pestaña de Carpeta) */
.tableh3::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%; /* No ocupa todo el alto, se ve más moderno */
    background-color: var(--accent);
    border-radius: 50px;
}

/* LÍNEA DE GUÍA (Estilo Editorial) */
.tableh3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 15px;
    height: 1px;
    /* Línea de puntos sutil */
    background-image: linear-gradient(to right, #ccc 10%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 8px 1px;
    background-repeat: repeat-x;
}

/* Detalle al Hover: El indicador crece */
.tableh3:hover::before {
    height: 80%;
    transition: height 0.3s ease;
}
.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;   
 	font-style: none;
	letter-spacing: 1px;
 	margin:2px;}
/* LÍNEA SUPERIOR */
.tableh1-stat::before {
    content: "";
    display: block;
    width: 140px;
    height: 1px;
    background-color: var(--accent);
    margin: 0 auto 5px auto; /* '0 auto' centra la línea misma */
    opacity: 0.5;
}

/* PUNTO INFERIOR */
.tableh1-stat::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    margin: 5px auto 0 auto; /* 'auto' a los lados centra el punto */
    opacity: 0.8;
}

.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:#000; 
	font-weight:600!important;
	background-color:transparent;
}
.statlink2{
    margin:10px;
	display: inline; 
	    letter-spacing:2px;
	position: relative; 
	font-size:9pt;
		  line-height:26px;
         font-family: "Plus Jakarta Sans", sans-serif;
         text-align: center; 
         color:#000; 
	font-weight:600!important;
	background-color:transparent;
}
.statlink bold, strong{
	color:#000; 
}
.statlink a {
     letter-spacing:0px;
     font-family: "Plus Jakarta Sans", sans-serif;
	font-weight:600;
    font-size: 11pt;     text-decoration: none;
    color: #000;
}

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

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



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

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

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


/* CONTENEDOR DE FILA */
.catrow_noalb, .catrow {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #404040;
    font-weight: 400;		
    line-height: 1.6;
    letter-spacing: 0px;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

/* LA IMAGEN (Estilo recorte de papel) */
.catrow_noalb .image, .catrow .image {
    padding: 6px;
    border: 1px solid #ddd;
    margin-right: 15px;
    background-color: #fff;
    border-radius: 2px; /* Esquinas rectas para look editorial */
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

/* TÍTULO DE LA CATEGORÍA */
.catlink {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: 5px;
}

.catlink a {
    font-size: 13pt;
    font-weight: 800;
    color: #1d1d1d;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    transition: all 0.3s ease;
}

/* SUBRAYADO DOBLE DESFASADO (Alternativo al zigzag) */
.catlink a::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    /* Crea la segunda línea mediante una sombra */
    box-shadow: 4px 3px 0px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease;
}

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

.catlink a:hover::after {
    width: 110%; /* Se estira un poco al hover */
    box-shadow: 0px 3px 0px var(--accent); /* La segunda línea se une al color de acento */
}

/* ICONO ANTES DEL TÍTULO */
.catlink:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 10px;
    background-color: var(--accent);
    /* Icono de diamante minimalista */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l9 10-9 10-9-10z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l9 10-9 10-9-10z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}


@media (max-width: 767px) {
    /* 1. Contenedor de la fila más compacto */
    .catrow_noalb, .catrow {
        padding: 12px 15px !important; /* Reducido de 20px 30px */
        line-height: 1.4 !important;
    }

    /* 2. La imagen de categoría (miniatura del álbum) */
    .catrow_noalb .image, .catrow .image {
        padding: 4px !important;
        margin-right: 10px !important;
        box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.04) !important;
        max-width: 60px !important; /* Limitamos el tamaño para que no empuje el texto */
    }

    /* 3. El título de la categoría (enlace) */
    .catlink a {
        font-size: 9pt !important; /* Reducido de 13pt */
        padding-bottom: 4px !important;
        letter-spacing: -0.2px !important;
    }

    /* Ajuste de la línea doble en móvil */
    .catlink a::after {
        box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1) !important;
    }

    /* 4. El icono de diamante más pequeño */
    .catlink:before {
        width: 8px !important;
        height: 8px !important;
        margin-right: 6px !important;
    }

    /* 5. Descripción de la categoría (si existe) */
    .catrow_noalb, .catrow {
        font-size: 10px !important; /* Para el texto descriptivo */
    }
}
/* Albums
-------------------------------------------------------------- */

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



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

.alblink {
    display: inline-block;
    margin: 10px;
    background-color: transparent; /* El fondo lo manejará el enlace interno */
    padding: 0;
}

.alblink a {
    display: inline-block;
    padding: 8px 20px;
    text-decoration: none;
    color: #1d1d1d;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 10pt;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* ESTILO PAPEL EDITORIAL */
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-bottom: 3px solid var(--accent); /* Línea de color gruesa abajo */
    border-radius: 2px;
    
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

/* EFECTO HOVER */
.alblink a:hover {
    color: #000;
    background-color: #fcfcfc;
    /* Efecto de elevación sutil */
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

/* Detalle de icono opcional (Guion largo antes del texto) */
.alblink a::before {
    content: "—";
    margin-right: 8px;
    color: var(--accent);
    font-weight: 300;
}
.album_stat {
    color: #1d1d1d;
    font-size: 8.5pt; /* Un poco más pequeña para look de etiqueta */
    display: inline-block;
    margin-left: 10px;
    padding: 8px 15px;
    text-align: left; /* Cambiamos justify por left para que sea más natural */
    line-height: 1.4;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    /* ESTILO PAPEL RETRO */
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid var(--accent); /* Tu color de acento */
    border-radius: 2px; /* Esquinas casi rectas */
    
    /* Sombra sólida minimalista */
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.05);
    
    max-width: 300px;
    transition: all 0.3s ease;
    position: relative;
}

/* EFECTO HOVER: Se siente como una etiqueta física */
.album_stat:hover {
    background: #fff;
    transform: translateX(3px); /* Se desplaza lateralmente */
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

/* REEMPLAZO DEL ICONO POR UNO MINIMALISTA */
.album_stat::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    background-color: var(--accent);
    vertical-align: middle;
    
    /* Icono de Carpeta Minimalista (SVG) */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Thumbnails
-------------------------------------------------------------- */

.thumbnails {
    background-color: transparent;
    padding: 3vh 1vw;
    vertical-align: top;
    margin: 2px;
}

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

.thumbnails table td {
    padding: 0;
    border: none;
    position: relative; /* necesario para posicionar .thumb_title_views */
}

/* Miniatura: imagen sin escalado */
.thumbnails a img {
    display: block;
    margin: 0 0 8px;
    width: auto;
    height: auto;
    max-width: none;
}

/* Oculta imágenes huérfanas o saltos de línea no deseados */
.thumbnails img,
.thumbnails br {
    display: none;
}

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

/* Nombre del dueño */
.thumb_title_owner {
    font-size: 8.25pt;
    text-transform: uppercase;
    font-weight: 400;
}

/* Título visible debajo de la imagen - Estilo Innovador */
.thumb_title_title, 
.thumb_title {
    color: #373737;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    display: block;
    padding: 10px 5px 15px 5px; /* Aumentamos padding inferior para el icono */
    position: relative;
    transition: all 0.3s ease;
}

/* LA LÍNEA: Ahora es visible por defecto */
.thumb_title::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 30px; /* Ancho fijo inicial */
    height: 1px;
    background-color: var(--accent);
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.5; /* Un poco tenue por defecto */
}

/* EL ICONO DE CÁMARA: Oculto por defecto */
.thumb_title::before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 14px;
    height: 14px;
    background-color: var(--accent);
    transform: translateX(-50%) translateY(10px); /* Empieza abajo oculto */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Máscara SVG de cámara */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'%3E%3C/path%3E%3Ccircle cx='12' cy='13' r='4'%3E%3C/circle%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'%3E%3C/path%3E%3Ccircle cx='12' cy='13' r='4'%3E%3C/circle%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* EFECTO HOVER */
.thumbnails:hover .thumb_title::after,
.thumb_title:hover::after {
    width: 0; /* La línea desaparece */
    opacity: 0;
}

.thumbnails:hover .thumb_title::before,
.thumb_title:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px); /* La cámara sube a su posición */
}

.thumbnails:hover .thumb_title,
.thumb_title:hover {
    color: #000;
}


/* FECHA debajo del título - Estilo Welcome Line CENTRADO */
.thumb_caption_ctime {
    background-color: transparent;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 7pt;
    font-weight: 700;
    color: #404040;
    text-transform: uppercase;
    margin-top: 8px;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
    gap: 8px;
    position: relative;
    border-bottom: none;
    text-align: center;
    margin-top:0px;
}

/* El Icono pequeño al inicio de la fecha */
.thumb_caption_ctime::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    flex-shrink: 0;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* La línea decorativa que sigue a la fecha */
.thumb_caption_ctime::after {
    content: "";
    height: 1px;
    width: 40px; 
    background-color: var(--accent);
    opacity: 0.4;
    /* Eliminamos el margin-left fijo para que el flex lo maneje con el gap */
}

.thumb_title_views {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 9px;
    color: #1d1d1d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    /* Recuadro central */
    margin-top:8px;
        margin-bottom:6px;
    border: 1px solid #1d1d1d;
    padding: 9px 12px;
    width: fit-content;

    /* Layout para alinear las líneas con el texto */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Espacio entre el borde del cuadro y las líneas */
    white-space: nowrap;
}
@media (max-width: 767px) {
    .thumb_title_views {
        /* Reducimos el tamaño de la fuente un poco más */
        font-size: 7px !important;
        letter-spacing: 0.5px !important;
        
        /* Reducimos el recuadro para que no ocupe tanto espacio */
        padding: 4px 6px !important; 
        margin-top: 9px !important;
        margin-bottom: 4px !important;
        
        /* Reducimos el espacio interno (gap) */
        gap: 5px !important;
        
        /* Aseguramos que no se desborde del 33% de la celda */
        max-width: 95% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}
/* LÍNEAS LATERALES ESTÁTICAS */
.thumb_title_views::before,
.thumb_title_views::after {
    content: "";
    height: 1px;
    width: 30px; /* Longitud de las líneas */
    background-color: var(--accent); /* Tu color rosa */
    opacity: 0.5;
    flex-shrink: 0;
}

/* IMPORTANTE: Bloqueamos cualquier herencia de hover que pudiera venir de otros estilos */
.thumbnails:hover .thumb_title_views::before,
.thumbnails:hover .thumb_title_views::after {
    width: 30px !important; /* Mantiene su tamaño */
    opacity: 0.5 !important;
    content: "" !important; /* Evita que aparezcan iconos */
    background-image: none !important;
    -webkit-mask: none !important;
}hrink: 0;
}

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

/* Comentarios */
.thumb_caption {
}
.thumb_caption a {
    color: inherit;
}

.thumb_num_comments {
    font-weight: normal;
    font-size: 85%;
    padding: 2px;
    font-style: italic;
    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: 12px;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

.navmenu {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800; /* Peso fuerte para look editorial */
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: #ffffff;
  border-radius: 2px; /* Esquinas casi rectas */
  margin: 5px;
  transition: all 0.2s ease-in-out;
  border: 1px solid #e0e0e0;
  /* Sombra sólida estilo papel */
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

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

.navmenu img {
  height: 14px;
  width: auto;
  filter: grayscale(100%); /* Los iconos en B&W para no romper la estética */
  opacity: 0.7;
  transition: 0.3s;
}

/* EFECTO HOVER Y ACTIVO */
.navmenu:hover,
.navmenu-active {
  background: var(--accent); /* Color sólido de tu marca */
  border-color: var(--accent);
  transform: translate(2px, 2px); /* Efecto de "presionado" */
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); /* La sombra desaparece al presionar */
}

.navmenu:hover a,
.navmenu-active a {
  color: #ffffff;
}

.navmenu:hover img,
.navmenu-active img {
  filter: grayscale(0%) brightness(0) invert(1); /* El icono se vuelve blanco */
  opacity: 1;
}

/* Detalle de línea decorativa interna solo al estar activo */
.navmenu-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.3);
}

/* 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, #d4179e, #8733d1);
  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;
}
.blocks,
.cpg-nav {  
	width:95vw!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: "Exo", 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: "Exo", sans-serif;
         text-align: center; 
         color:#000; 
	font-weight:600!important;
	background-color:transparent;
}
.cpg-nav {
    margin-top:3px;
	padding:10px; 
	display:block;
	background-color:#fff;
	text-align:center; 
	overflow:hidden;
	position:relative;
}

.cpg-nav a {
	margin: 0!important; 
	display: inline; 
	position: relative; 
	padding: 3px 6px; 
	font-size:10px;
	text-transform:uppercase;
	xborder-radius:2px;
	letter-spacing:1px;
}

.cpg-nav a:hover,
.cpg-nav a:focus {
	text-decoration: none;
}

.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;
	color:#000;
	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: "Exo", sans-serif;
	color:#000; 
	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: "Exo", sans-serif;
	color:#000; 
	letter-spacing:0px;
	font-weight:600!important;
	text-transform:uppercase;
	background-color:transparent;
}
.tabs-table-alt .tableh1-small {
width:82vw;
}
.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:10vw;
}

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 {
}

.navmenu-active {
}

.navmenu-active a {
}

.buttonlist {
	text-align:center;
}

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

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

@media only screen and (max-width: 966px), only screen and (max-device-width: 966px) {
	
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; 
	position: relative; 
	padding: 3px 6px; 
	font-size:5pt;
		letter-spacing:0px;
		  line-height:14px;
       font-family: "Plus Jakarta Sans", sans-serif;
         text-align: center; 
	font-weight:600!important;
	background-color:transparent;
}
.tableh1 {	
    letter-spacing:0px;
	font-size:9pt;
}
/* Aseguramos que el encabezado tableh3 sea pequeño y limpio */
.tableh3 {	
    letter-spacing: 0px;
    font-size: 9pt;
    padding-left: 10px; /* Reducido un poco para ganar espacio en móvil */
    text-transform: uppercase;
    font-weight: 900;
}
.statlink h2 {
	font-size:8px!important;
	font-weight:800;
	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;
}
/* 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 {
}

.navmenu-active {
}

.navmenu-active a {
}

.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) {


/* Statlinks - Estilo Limpio sin líneas */
.tableh1 {
    background-repeat: no-repeat;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 900;
    text-align: left; 
    font-size: 12pt;
    padding-bottom: 0px; 
    padding-top: 5px; 
    padding-left:10px;
    color: #1d1d1d;   
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    border: none;
}

/* ELIMINAR LÍNEAS Y PUNTO (Before y After) */
.tableh1::before,
.tableh1::after {
    display: none !important;
    content: none !important;
    box-shadow: none !important; /* Elimina el punto creado con sombra */
}
/* Tableh3 - Estilo Limpio y Minimalista */

/* ELIMINAR INDICADOR VERTICAL Y LÍNEA DE PUNTOS */
.tableh3::before,
.tableh3::after {
    display: none !important;
    content: none !important;
}

/* Quitamos la transición del hover ya que no hay elemento que animar */
.tableh3:hover::before {
    display: none !important;
}
.statlink {
	line-height: 21px!important;
}

.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;
    }

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

/* Título visible debajo de la imagen - Limpio (Solo texto) */
.thumb_title_title, 
.thumb_title {
    color: #373737;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    display: block;
    /* Reducimos el padding ya que no hay iconos ni líneas */
    padding: 10px 5px; 
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none; /* Asegura que no haya subrayados de enlaces */
}

/* EFECTO HOVER */
.thumbnails:hover .thumb_title,
.thumb_title:hover {
    color: #000; /* El texto se oscurece al pasar el mouse */
}

/* Eliminamos cualquier rastro de líneas o iconos anteriores */
.thumb_title::after,
.thumb_title::before {
    display: none !important;
    content: none !important;
}

    /* 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;
    }
