/*Descargar PDF Botones*/
.pdf-download-button {
background: linear-gradient(to right, #0000FF, #87CEEB);
color: white;
border: none;
padding: 15px 20px;
cursor: pointer;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
max-width: 100%;
box-sizing: border-box;
text-align: center;
overflow: hidden;
white-space: nowrap;
transition: all 0.3s ease;
}
.pdf-download-button:hover {
background: linear-gradient(to right, #0000CC, #5F9EA0);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.pdf-download-button span {
display: block;
}
@media (max-width: 600px) {
.pdf-download-button {
font-size: 14px;
padding: 15px;
}
}
/*Imagen Destacada*/
.image-container-info {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 15px 0;
background-color: #121212;
padding: 10px;
border-radius: 10px;
}
.featured-image-container {
max-width: 280px; 
flex: 1;
margin-right: 10px; 
}
.featured-image {
display: block;
border-radius: 10px;
max-width: 100%;
height: auto;
}
.featured-content {
flex: 2;
color: white;
line-height: 1.8; 
text-align: left;
margin-left: 10px;
}
@media (max-width: 768px) {
.image-container-info {
flex-direction: column;
align-items: center;
padding: 10px;
}
.featured-image-container {
margin-right: 0;
margin-bottom: 10px;
max-width: 100%;
text-align: center;
}
.featured-content {
max-width: 100%;
text-align: left; 
margin: 10px 0 3px 10px;
}
}
/*Dotted Line*/
.dotted-line {
border: none; 
border-top: 1px dotted white; 
margin-top: 3px; 
margin-bottom: 3px; 
}
/*Back-to-Top*/
#go-to-top {
position: fixed;
bottom: 10px;
right: 10px;
background-color: #0073e6;
color: white;
border: none;
padding: 5px 20px;
border-radius: 5px;
font-size: 14px;
cursor: pointer;
display: none; 
z-index: 9999;
}
#go-to-top:hover {
background-color: #005bb5;
}
/*Load More*/
.gallery-container .hidden {
display: none;
}
/*Idiomas Categorias*/
.language-filter {
margin-bottom: 30px;
}
.language-filter select {
padding: 8px 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
min-width: 200px;
}
/*search*/
.custom-search-form-container {
width: 100%;
max-width: 100%;
margin: 1.5rem auto;
padding: 0.75rem 1rem;
background-color: #1e1e1e;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
box-sizing: border-box;
}

.custom-search-form-container form {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
max-width: 700px;
margin: 0 auto;
gap: 0.5rem;
flex-wrap: nowrap;
}

.custom-search-form-container input[type="search"] {
flex: 1;
min-width: 0;
padding: 0.75rem 1rem;
background-color: #2a2a2a;
color: #fff;
border: none;
border-radius: 8px;
font-size: 1rem;
box-sizing: border-box;
height: 44px; 
}
.custom-search-form-container input[type="search"]:focus {
outline: none;
box-shadow: 0 0 0 2px #00bcd4;
}
.custom-search-form-container input[type="submit"] {
flex-shrink: 0;
padding: 0 1rem;
background-color: #00bcd4;
color: #fff;
border: none;
border-radius: 8px;
font-size: 0.95rem;
cursor: pointer;
transition: background-color 0.3s ease;
height: 44px; 
white-space: nowrap;
}
.custom-search-form-container input[type="submit"]:hover {
background-color: #0097a7;
}
@media (max-width: 400px) {
.custom-search-form-container form {
gap: 0.3rem;
}
.custom-search-form-container input[type="submit"] {
padding: 0 0.8rem;
font-size: 0.9rem;
}
}
/*Info Tags*/
.terminos-wrap {
    background: #1c1c1c;
    padding: 1.5em;
    border-radius: 12px;
    color: #eee;
    font-family: sans-serif;
    margin-top: 2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.termino-linea {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: start;
    gap: 0.5em;
}

.termino-label {
    font-size: 16px;
    font-weight: bold;
    color: #aaa;
    white-space: nowrap;
    margin-top: 0.3em;
}

.termino-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

/* Botones base */
.termino-btn {
    padding: 0.4em 0.9em;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease;
    color: #fff;
}

/* Colores por taxonomía */
.termino-language .termino-btn {
    background-color: #ff6347;
}	
.termino-circle .termino-btn {
    background-color: #2e8b57;
}
.termino-artist .termino-btn {
    background-color: #4682b4;
}
.termino-parody .termino-btn {
    background-color: #8a2be2;
}
.termino-character .termino-btn {  /* Estilo para 'character' */
    background-color: #f39c12;  /* Color único para 'character' */
}
.termino-post_tag .termino-btn {
    background-color: #d2691e;
}

.termino-btn:hover {
    filter: brightness(1.2);
}

/* Responsive: en móviles, stack */
@media (max-width: 600px) {
    .termino-linea {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .termino-items {
        flex-direction: column;
        width: 100%;
    }

    .termino-btn {
        display: inline-block;
    }
}
 

