@font-face {
    font-family: "Retro Gaming";
    src: url(../fonts/Retro-Gaming.ttf);
}

@font-face {
    font-family: "Pixellari";
    src: url(../fonts/Pixellari.ttf);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

html, body {
    font-family: "Retro Gaming", "Pixellari", serif;
    color: rgb(170, 141, 182);
    background-color: black;
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
}

h1{
    font-size: 60px;
    text-align: center;
    background: linear-gradient(135deg, rgb(43, 20, 65) 0%, rgb(65, 40, 80) 100%);
    padding: 30px 20px;
    margin: 0;
    text-shadow: 3px 3px 0px rgb(128, 88, 151), 6px 6px 0px rgba(0, 0, 0, 0.5);
    color: rgb(236, 200, 250);
    letter-spacing: 3px;
    animation: slideDown 0.8s ease-out;
    box-shadow: 0 8px 20px rgba(128, 88, 151, 0.4);
    border-bottom: 4px solid rgb(128, 88, 151);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.h1-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.Atsukipfp {
    animation: flotar 2s ease-in-out infinite alternate;
    border: 10px solid rgb(65, 40, 80);
    margin-top: 50px;
}

.contenedor1 {
    display: flex;
    font-size: 25px;
}

#desc1 {
    margin-left: 30px;
    width: 900px;
    height: 30px;
    color: aliceblue;
    text-decoration: underline;
    font-size: 15px;
}

#desc2 {
    margin-left: 30px;
    width: 900px;
    height: 40px;
}

#desc3 {
    margin-left: 30px;
    width: 900px;
    height: 40px;
}

#desc4 {
    margin-left: 30px;
    width: 900px;
    height: 190px;
}

.button {
  width: 500px;
  height: 80px;
  display: flex;
  padding: 10px 20px;
  background-color: #805897;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  cursor: pointer; 
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-items: center;
  gap: 15px;
}

.button-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.button-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.button-title {
    font-size: 25px;
}

.btndesc {
    font-size: 12px;
    margin: 0;
}

.socialicon {
    width: 30px;
    height: 30px;
}

#redes {
    font-size: 25px;
}

.contenedorbtns p {
    color: white;
    margin-bottom: 5px;
}

.contenedorbtns .button:hover {
    background-color: rgb(236, 200, 250);
}

.contenedorbtns {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    background-color: rgb(43, 20, 65);
    color: rgb(170, 141, 182);
    padding: 40px 20px;
    margin-top: 50px;
    border-top: 3px solid rgb(65, 40, 80);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-section h3 {
    font-size: 28px;
    color: rgb(236, 200, 250);
    margin-bottom: 10px;
}

.footer-section h4 {
    font-size: 18px;
    color: rgb(236, 200, 250);
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgb(170, 141, 182);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgb(236, 200, 250);
}

.footer-info {
    font-size: 13px;
    margin: 8px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgb(65, 40, 80);
    font-size: 12px;
    color: rgb(120, 100, 140);
}

@keyframes flotar {
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(-20px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECCIÓN DE CONTENIDO (BLOG Y GALERÍA) ===== */
.content-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.nav-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgb(65, 40, 80);
}

.tab-btn {
    padding: 12px 30px;
    background: none;
    border: none;
    color: rgb(170, 141, 182);
    font-size: 18px;
    cursor: pointer;
    font-family: "Retro Gaming", serif;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: rgb(236, 200, 250);
}

.tab-btn.active {
    color: rgb(236, 200, 250);
    border-bottom-color: rgb(128, 88, 151);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    font-size: 35px;
    color: rgb(236, 200, 250);
    margin-bottom: 30px;
    text-align: center;
}

/* ===== BLOG POSTS ===== */
#blog-posts {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.blog-post {
    display: flex;
    gap: 20px;
    background: rgb(43, 20, 65);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid rgb(128, 88, 151);
    transition: all 0.3s ease;
}

.blog-post:hover {
    background: rgb(65, 40, 80);
    transform: translateX(10px);
}

.post-image {
    width: 150px;
    height: 150px;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0;
}

.post-content {
    flex: 1;
}

.post-content h3 {
    font-size: 22px;
    color: rgb(236, 200, 250);
    margin: 0 0 8px 0;
}

.post-date {
    font-size: 12px;
    color: rgb(128, 88, 151);
    margin: 0 0 12px 0;
}

.post-text {
    font-size: 14px;
    color: rgb(170, 141, 182);
    line-height: 1.5;
    margin: 0;
}

/* ===== GALERÍA ===== */
#gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgb(65, 40, 80);
    display: flex;
    flex-direction: column;
    position: relative;
    height: fit-content;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-title {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    color: rgb(236, 200, 250);
    margin: 0;
}

.gallery-description {
    padding: 0 12px;
    font-size: 12px;
    color: rgb(170, 141, 182);
    margin: 0;
    text-align: center;
    line-height: 1.4;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.gallery-item:hover .gallery-description {
    max-height: 100px;
    padding: 0 12px 12px 12px;
}

/* ===== PAGINACIÓN ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px 0;
}

.pagination button {
    padding: 10px 20px;
    background-color: #805897;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Retro Gaming", serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    background-color: rgb(236, 200, 250);
    color: rgb(43, 20, 65);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: rgb(128, 88, 151);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: rgb(236, 200, 250);
    color: rgb(43, 20, 65);
    transform: translateY(-3px);
}

#page-info-blog, #page-info-galeria {
    color: rgb(170, 141, 182);
    font-size: 14px;
    min-width: 100px;
    text-align: center;
}

/* ===== PÁGINA DE BLOG COMPLETA ===== */
.blog-page-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.back-btn {
    padding: 10px 15px;
    background-color: rgb(65, 40, 80);
    color: rgb(236, 200, 250);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: #805897;
}

.blog-header h2 {
    font-size: 40px;
    color: rgb(236, 200, 250);
    margin: 0;
}

#blog-full-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post-full {
    background: rgb(43, 20, 65);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid rgb(128, 88, 151);
}

.post-image-full {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 20px;
}

.post-content-full {
    width: 100%;
}

.post-content-full h2 {
    font-size: 32px;
    color: rgb(236, 200, 250);
    margin: 0 0 10px 0;
}

.post-date-full {
    font-size: 13px;
    color: rgb(128, 88, 151);
    margin: 0 0 15px 0;
}

.post-content-full hr {
    border: none;
    border-top: 1px solid rgb(65, 40, 80);
    margin: 15px 0;
}

.post-text-full {
    font-size: 16px;
    color: rgb(170, 141, 182);
    line-height: 1.8;
    margin: 0;
}

.blog-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.blog-navigation button {
    padding: 12px 30px;
    background-color: #805897;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Retro Gaming", serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.blog-navigation button:hover:not(:disabled) {
    background-color: rgb(236, 200, 250);
    color: rgb(43, 20, 65);
    transform: scale(1.05);
}

.blog-navigation button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-navigation span {
    color: rgb(170, 141, 182);
    font-size: 16px;
    min-width: 120px;
    text-align: center;
}

.related-post-card {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgb(65, 40, 80);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-post-card:hover {
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
    transform: translateY(-5px);
}

.related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-card h4 {
    font-size: 16px;
    color: rgb(236, 200, 250);
    padding: 12px 12px 5px 12px;
    margin: 0;
}

.related-post-card p {
    font-size: 12px;
    color: rgb(170, 141, 182);
    padding: 0 12px 12px 12px;
    margin: 0;
}

/* ===== PÁGINA DE GALERÍA COMPLETA ===== */
.gallery-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.gallery-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-header h2 {
    font-size: 40px;
    color: rgb(236, 200, 250);
    margin: 0;
}

#gallery-full-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item-full {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgb(65, 40, 80);
}

.gallery-item-full:hover {
    transform: translateY(-15px);
    border-color: rgb(128, 88, 151);
    box-shadow: 0 15px 30px rgba(128, 88, 151, 0.4);
}

.gallery-item-full img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item-full:hover img {
    transform: scale(1.05);
}

.gallery-item-full p {
    padding: 15px;
    text-align: center;
    font-size: 15px;
    color: rgb(236, 200, 250);
    margin: 0;
}

.gallery-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.gallery-navigation button {
    padding: 12px 30px;
    background-color: #805897;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Retro Gaming", serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.gallery-navigation button:hover:not(:disabled) {
    background-color: rgb(236, 200, 250);
    color: rgb(43, 20, 65);
    transform: scale(1.05);
}

.gallery-navigation button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-navigation span {
    color: rgb(170, 141, 182);
    font-size: 16px;
    min-width: 120px;
    text-align: center;
}

.related-post-card {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgb(65, 40, 80);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-post-card:hover {
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
    transform: translateY(-5px);
}

.related-post-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-card h4 {
    font-size: 16px;
    color: rgb(236, 200, 250);
    padding: 12px 12px 5px 12px;
    margin: 0;
}

.related-post-card p {
    font-size: 12px;
    color: rgb(170, 141, 182);
    padding: 0 12px 12px 12px;
    margin: 0;
}

.related-image-card {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgb(65, 40, 80);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-image-card:hover {
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
    transform: translateY(-5px);
}

.related-image-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-image-card h4 {
    font-size: 14px;
    color: rgb(236, 200, 250);
    padding: 10px;
    margin: 0;
}

.related-image-card p {
    font-size: 12px;
    color: rgb(170, 141, 182);
    padding: 0 10px 10px 10px;
    margin: 0;
}

/* ===== MODAL DE IMAGEN ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.close {
    position: absolute;
    right: 30px;
    top: 20px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: rgb(236, 200, 250);
}

#caption {
    color: rgb(236, 200, 250);
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
}

.modal-nav {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.modal-nav button {
    padding: 12px 25px;
    background-color: #805897;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Retro Gaming", serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.modal-nav button:hover {
    background-color: rgb(236, 200, 250);
    color: rgb(43, 20, 65);
}

/* ===== PÁGINA DE POST INDIVIDUAL ===== */
.post-detail-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.post-detail-header {
    margin-bottom: 30px;
}

.post-detail-article {
    background: rgb(43, 20, 65);
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid rgb(128, 88, 151);
    margin-bottom: 40px;
}

.detail-post-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 30px;
}

.post-detail-article h2 {
    font-size: 36px;
    color: rgb(236, 200, 250);
    margin: 0 0 15px 0;
}

.detail-post-date {
    font-size: 14px;
    color: rgb(128, 88, 151);
    margin: 0 0 20px 0;
}

.detail-divider {
    height: 1px;
    background: rgb(65, 40, 80);
    margin: 20px 0;
}

.detail-post-content {
    font-size: 16px;
    color: rgb(170, 141, 182);
    line-height: 1.8;
}

.post-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    margin-bottom: 50px;
}

.post-navigation button {
    padding: 12px 30px;
    background-color: #805897;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Retro Gaming", serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.post-navigation button:hover:not(:disabled) {
    background-color: rgb(236, 200, 250);
    color: rgb(43, 20, 65);
    transform: scale(1.05);
}

.post-navigation button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.post-navigation span {
    color: rgb(170, 141, 182);
    font-size: 16px;
    min-width: 150px;
    text-align: center;
}

.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgb(65, 40, 80);
}

.related-posts h3 {
    font-size: 28px;
    color: rgb(236, 200, 250);
    text-align: center;
    margin-bottom: 30px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-post-item {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgb(65, 40, 80);
    transition: all 0.3s ease;
}

.related-post-item:hover {
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
    transform: translateY(-5px);
}

.related-post-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

.related-post-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-post-item h4 {
    font-size: 16px;
    color: rgb(236, 200, 250);
    padding: 15px 15px 5px 15px;
    margin: 0;
}

.related-post-date {
    font-size: 12px;
    color: rgb(128, 88, 151);
    padding: 0 15px 15px 15px;
    margin: 0;
}

/* ===== PÁGINA DE IMAGEN INDIVIDUAL ===== */
.image-detail-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.image-detail-header {
    margin-bottom: 30px;
}

.image-detail-article {
    background: rgb(43, 20, 65);
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid rgb(128, 88, 151);
    margin-bottom: 40px;
}

.detail-full-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 30px;
}

.image-detail-article h2 {
    font-size: 36px;
    color: rgb(236, 200, 250);
    margin: 0 0 15px 0;
}

.image-detail-divider {
    height: 1px;
    background: rgb(65, 40, 80);
    margin: 20px 0;
}

.image-detail-description {
    font-size: 16px;
    color: rgb(170, 141, 182);
    line-height: 1.8;
}

.image-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    margin-bottom: 50px;
}

.image-navigation button {
    padding: 12px 30px;
    background-color: #805897;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Retro Gaming", serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.image-navigation button:hover:not(:disabled) {
    background-color: rgb(236, 200, 250);
    color: rgb(43, 20, 65);
    transform: scale(1.05);
}

.image-navigation button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.image-navigation span {
    color: rgb(170, 141, 182);
    font-size: 16px;
    min-width: 150px;
    text-align: center;
}

.related-images {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgb(65, 40, 80);
}

.related-images h3 {
    font-size: 28px;
    color: rgb(236, 200, 250);
    text-align: center;
    margin-bottom: 30px;
}

.related-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.related-image-item {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgb(65, 40, 80);
    transition: all 0.3s ease;
}

.related-image-item:hover {
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
    transform: translateY(-5px);
}

.related-image-link {
    text-decoration: none;
    display: block;
}

.related-image-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-image-item p {
    font-size: 14px;
    color: rgb(236, 200, 250);
    padding: 12px;
    margin: 0;
    text-align: center;
}

/* ===== PLACEHOLDER PARA CONTENIDO VACÍO ===== */
.no-content-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: rgb(128, 88, 151);
    font-size: 16px;
    font-style: italic;
    background: rgb(43, 20, 65);
    border-radius: 8px;
    border: 2px dashed rgb(65, 40, 80);
    margin: 20px 0;
}

/* ===== SECCIÓN DE VIDEOS ===== */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.video-item {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgb(65, 40, 80);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.video-item:hover {
    transform: translateY(-10px);
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
}

.video-item iframe {
    border-radius: 8px 8px 0 0;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-item h3 {
    font-size: 18px;
    color: rgb(236, 200, 250);
    padding: 15px 15px 5px 15px;
    margin: 0;
}

.video-item p {
    font-size: 13px;
    color: rgb(170, 141, 182);
    padding: 0 15px 15px 15px;
    margin: 0;
    flex-grow: 1;
}

/* ===== SECCIÓN DE IMÁGENES EXTRAS ===== */
.imagen-extra-item {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgb(65, 40, 80);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.imagen-extra-item:hover {
    transform: translateY(-10px);
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
}

.imagen-extra-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.imagen-extra-item p {
    font-size: 14px;
    color: rgb(236, 200, 250);
    padding: 12px;
    margin: 0;
    text-align: center;
}

/* ===== SECCIÓN DE ARCHIVOS ===== */
.extras-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.archivo-item {
    background: rgb(43, 20, 65);
    border: 2px solid rgb(65, 40, 80);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    gap: 20px;
}

.archivo-item:hover {
    background: rgb(65, 40, 80);
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
}

.archivo-info {
    flex: 1;
}

.archivo-item h3 {
    font-size: 18px;
    color: rgb(236, 200, 250);
    margin: 0 0 8px 0;
}

.archivo-descripcion {
    font-size: 14px;
    color: rgb(170, 141, 182);
    margin: 0 0 5px 0;
}

.archivo-size {
    font-size: 12px;
    color: rgb(128, 88, 151);
    margin: 0;
}

.archivo-btn {
    padding: 10px 20px;
    background-color: rgb(128, 88, 151);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.archivo-btn:hover {
    background-color: rgb(236, 200, 250);
    color: rgb(43, 20, 65);
    transform: scale(1.05);
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .contenedor1 {
        flex-direction: column;
        align-items: center;
    }

    #desc1, #desc2, #desc3, #desc4 {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .button {
        width: 90%;
        max-width: 500px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .extras-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* ===== RESPONSIVE - MÓVIL ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 40px;
        padding: 20px 15px;
        gap: 10px;
    }

    .h1-icon {
        width: 50px;
        height: 50px;
    }

    .Atsukipfp {
        width: 150px;
        height: 150px;
        margin-top: 20px;
    }

    .contenedor1 {
        flex-direction: column;
        align-items: center;
    }

    #desc1, #desc2, #desc3, #desc4 {
        margin-left: 0;
        width: 100%;
        height: auto;
        text-align: center;
    }

    .button {
        width: 90%;
        max-width: 100%;
        height: auto;
        padding: 15px;
    }

    .button-title {
        font-size: 18px;
    }

    .btndesc {
        font-size: 11px;
    }

    .contenedorbtns p {
        font-size: 20px;
    }

    /* BLOG Y GALERÍA */
    .content-section {
        max-width: 100%;
        margin: 30px 0;
        padding: 0 15px;
    }

    .nav-tabs {
        gap: 5px;
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .tab-content h2 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .blog-post {
        flex-direction: column;
        gap: 15px;
    }

    .post-image {
        width: 100%;
        height: 150px;
    }

    .post-content h3 {
        font-size: 18px;
    }

    .post-text {
        font-size: 13px;
    }

    #gallery-items {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .gallery-item img {
        height: 150px;
    }

    .pagination {
        gap: 10px;
        flex-wrap: wrap;
    }

    .pagination button {
        padding: 8px 15px;
        font-size: 12px;
    }

    #page-info-blog, #page-info-galeria {
        font-size: 12px;
        min-width: auto;
    }

    /* EXTRAS */
    .extras-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-item {
        margin: 0;
        width: 100%;
    }

    .video-item iframe {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .video-item h3 {
        font-size: 14px;
        padding: 10px;
    }

    .video-item p {
        font-size: 11px;
        padding: 0 10px 10px 10px;
    }

    .imagen-extra-item {
        width: 100%;
    }

    .imagen-extra-item img {
        height: 180px;
    }

    .imagen-extra-item p {
        font-size: 12px;
        padding: 10px;
    }

    .extras-list {
        gap: 12px;
    }

    .archivo-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 10px;
    }

    .archivo-info {
        width: 100%;
    }

    .archivo-btn {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
    }

    /* PÁGINA DE BLOG COMPLETA */
    .blog-page-container {
        max-width: 100%;
        margin: 20px 0;
        padding: 0 15px;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blog-header h2 {
        font-size: 30px;
    }

    .blog-post-full {
        padding: 20px;
    }

    .post-image-full {
        height: 250px;
        margin-bottom: 15px;
    }

    .post-content-full h2 {
        font-size: 24px;
    }

    .post-text-full {
        font-size: 14px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    /* PÁGINA DE GALERÍA COMPLETA */
    .gallery-page-container {
        max-width: 100%;
        margin: 20px 0;
        padding: 0 15px;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .gallery-header h2 {
        font-size: 30px;
    }

    #gallery-full-items {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .gallery-item-full img {
        height: 120px;
    }

    .gallery-item-full p {
        font-size: 12px;
        padding: 10px;
    }

    /* PÁGINA DE POST INDIVIDUAL */
    .post-detail-container {
        max-width: 100%;
        margin: 20px 0;
        padding: 0 15px;
    }

    .post-detail-article {
        padding: 20px;
    }

    .detail-post-image {
        height: 250px;
        margin-bottom: 15px;
    }

    .post-detail-article h2 {
        font-size: 24px;
    }

    .detail-post-content {
        font-size: 14px;
    }

    .post-navigation button {
        padding: 10px 15px;
        font-size: 12px;
    }

    .post-navigation span {
        font-size: 12px;
        min-width: auto;
    }

    .related-posts {
        margin-top: 30px;
        padding-top: 20px;
    }

    .related-posts h3 {
        font-size: 20px;
    }

    /* PÁGINA DE IMAGEN INDIVIDUAL */
    .image-detail-container {
        max-width: 100%;
        margin: 20px 0;
        padding: 0 15px;
    }

    .image-detail-article {
        padding: 20px;
    }

    .detail-full-image {
        height: 300px;
    }

    .image-detail-article h2 {
        font-size: 24px;
    }

    .image-navigation button {
        padding: 10px 15px;
        font-size: 12px;
    }

    .related-images h3 {
        font-size: 20px;
    }

    .related-images-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    /* FOOTER */
    footer {
        padding: 20px 15px;
    }

    .footer-section h3 {
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 14px;
    }

    .footer-section p {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 10px;
    }

    /* MODAL */
    .modal-content {
        max-width: 95%;
        max-height: 60vh;
    }

    .close {
        right: 15px;
        top: 10px;
        font-size: 30px;
    }

    #caption {
        font-size: 14px;
        margin-top: 15px;
    }

    .modal-nav button {
        padding: 10px 15px;
        font-size: 12px;
    }
}

/* ===== MÓVIL PEQUEÑO ===== */
@media (max-width: 480px) {
    h1 {
        font-size: 28px;
        padding: 15px 10px;
        gap: 8px;
    }

    .h1-icon {
        width: 40px;
        height: 40px;
    }

    .Atsukipfp {
        width: 120px;
        height: 120px;
    }

    #desc1, #desc2, #desc3, #desc4 {
        font-size: 13px;
    }

    .button {
        width: 100%;
        height: auto;
        padding: 12px;
        margin-top: 10px;
    }

    .button-content {
        gap: 10px;
    }

    .button-title {
        font-size: 16px;
    }

    .btndesc {
        font-size: 10px;
    }

    .contenedorbtns p {
        font-size: 16px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .tab-content h2 {
        font-size: 20px;
    }

    #gallery-items {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .gallery-item img {
        height: 120px;
    }

    .gallery-title {
        font-size: 12px;
    }

    .gallery-description {
        font-size: 10px;
    }

    .blog-post {
        gap: 10px;
    }

    .post-content h3 {
        font-size: 16px;
    }

    .post-date {
        font-size: 11px;
    }

    .post-text {
        font-size: 12px;
    }

    .pagination button {
        padding: 6px 12px;
        font-size: 11px;
    }

    .view-all-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .blog-header h2, .gallery-header h2 {
        font-size: 24px;
    }

    .back-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .post-detail-article, .image-detail-article {
        padding: 15px;
    }

    .detail-post-image, .detail-full-image {
        height: 200px;
    }

    .post-detail-article h2, .image-detail-article h2 {
        font-size: 20px;
    }

    .detail-post-date, .post-date-full {
        font-size: 12px;
    }

    .post-text-full, .image-detail-description {
        font-size: 13px;
    }

    .related-posts h3, .related-images h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .related-post-item h4, .related-image-item p {
        font-size: 13px;
    }

    /* EXTRAS MÓVIL PEQUEÑO */
    .extras-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .video-item {
        width: 100%;
    }

    .video-item h3 {
        font-size: 12px;
    }

    .video-item p {
        font-size: 9px;
    }

    .imagen-extra-item img {
        height: 150px;
    }

    .imagen-extra-item p {
        font-size: 10px;
    }

    .archivo-item {
        padding: 10px;
    }

    .archivo-item h3 {
        font-size: 12px;
    }

    .archivo-descripcion {
        font-size: 11px;
    }

    .archivo-size {
        font-size: 10px;
    }

    .archivo-btn {
        padding: 8px 10px;
        font-size: 11px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-section h4 {
        font-size: 12px;
    }
}

/* ===== PÁGINA DE VIDEO INDIVIDUAL ===== */
.video-detail-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.video-detail-header {
    margin-bottom: 30px;
}

.video-detail-article {
    background: rgb(43, 20, 65);
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid rgb(128, 88, 151);
    margin-bottom: 40px;
}

.video-detail-article iframe {
    border-radius: 8px;
    margin-bottom: 30px;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-detail-article h2 {
    font-size: 36px;
    color: rgb(236, 200, 250);
    margin: 0 0 15px 0;
}

.video-detail-date {
    font-size: 14px;
    color: rgb(128, 88, 151);
    margin: 0 0 20px 0;
}

.video-detail-divider {
    height: 1px;
    background: rgb(65, 40, 80);
    margin: 20px 0;
}

.video-detail-description {
    font-size: 16px;
    color: rgb(170, 141, 182);
    line-height: 1.8;
}

.video-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.video-navigation button {
    padding: 12px 30px;
    background-color: #805897;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Retro Gaming", serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.video-navigation button:hover:not(:disabled) {
    background-color: rgb(236, 200, 250);
    color: rgb(43, 20, 65);
    transform: scale(1.05);
}

.video-navigation button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.video-navigation span {
    color: rgb(170, 141, 182);
    font-size: 16px;
    min-width: 150px;
    text-align: center;
}

.related-videos {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgb(65, 40, 80);
}

.related-videos h3 {
    font-size: 28px;
    color: rgb(236, 200, 250);
    text-align: center;
    margin-bottom: 30px;
}

.related-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-video-item {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgb(65, 40, 80);
    transition: all 0.3s ease;
}

.related-video-item:hover {
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
    transform: translateY(-5px);
}

.related-video-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.related-video-thumbnail {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.related-video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.related-video-item h4 {
    font-size: 16px;
    color: rgb(236, 200, 250);
    padding: 12px 12px 5px 12px;
    margin: 0;
}

.related-video-item p {
    font-size: 12px;
    color: rgb(170, 141, 182);
    padding: 0 12px 12px 12px;
    margin: 0;
}

.related-video-card {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgb(65, 40, 80);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-video-card:hover {
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
    transform: translateY(-5px);
}

.related-video-card h4 {
    font-size: 14px;
    color: rgb(236, 200, 250);
    padding: 10px 10px 5px 10px;
    margin: 0;
}

.related-video-card p {
    font-size: 11px;
    color: rgb(170, 141, 182);
    padding: 0 10px 10px 10px;
    margin: 0;
}

/* ===== PÁGINA DE IMAGEN EXTRA INDIVIDUAL ===== */
.imagen-extra-detail-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.imagen-extra-detail-header {
    margin-bottom: 30px;
}

.imagen-extra-detail-article {
    background: rgb(43, 20, 65);
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid rgb(128, 88, 151);
    margin-bottom: 40px;
}

.detail-imagen-extra {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 30px;
}

.imagen-extra-detail-article h2 {
    font-size: 36px;
    color: rgb(236, 200, 250);
    margin: 0 0 15px 0;
}

.imagen-extra-detail-divider {
    height: 1px;
    background: rgb(65, 40, 80);
    margin: 20px 0;
}

.imagen-extra-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.imagen-extra-navigation button {
    padding: 12px 30px;
    background-color: #805897;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Retro Gaming", serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.imagen-extra-navigation button:hover:not(:disabled) {
    background-color: rgb(236, 200, 250);
    color: rgb(43, 20, 65);
    transform: scale(1.05);
}

.imagen-extra-navigation button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.imagen-extra-navigation span {
    color: rgb(170, 141, 182);
    font-size: 16px;
    min-width: 150px;
    text-align: center;
}

.related-imagenes-extras {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgb(65, 40, 80);
}

.related-imagenes-extras h3 {
    font-size: 28px;
    color: rgb(236, 200, 250);
    text-align: center;
    margin-bottom: 30px;
}

.related-imagenes-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.related-imagen-extra-item {
    background: rgb(43, 20, 65);
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgb(65, 40, 80);
    transition: all 0.3s ease;
}

.related-imagen-extra-item:hover {
    border-color: rgb(128, 88, 151);
    box-shadow: 0 10px 25px rgba(128, 88, 151, 0.3);
    transform: translateY(-5px);
}

.related-imagen-extra-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.related-imagen-extra-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-imagen-extra-item p {
    font-size: 14px;
    color: rgb(236, 200, 250);
    padding: 12px;
    margin: 0;
    text-align: center;
}

/* ===== FORMULARIO DE PREGUNTAS ===== */
.faq-form-container {
    background: rgb(43, 20, 65);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid rgb(128, 88, 151);
    margin-bottom: 40px;
}

.faq-form-container h3 {
    font-size: 24px;
    color: rgb(236, 200, 250);
    margin-top: 0;
    margin-bottom: 20px;
}

.pregunta-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: rgb(236, 200, 250);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 10px 15px;
    background-color: rgb(65, 40, 80);
    border: 2px solid rgb(128, 88, 151);
    border-radius: 5px;
    color: rgb(170, 141, 182);
    font-family: "Retro Gaming", serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(236, 200, 250);
    background-color: rgb(43, 20, 65);
    color: rgb(236, 200, 250);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-enviar-pregunta {
    padding: 12px 30px;
    background-color: rgb(128, 88, 151);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: "Retro Gaming", serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-enviar-pregunta:hover {
    background-color: rgb(236, 200, 250);
    color: rgb(43, 20, 65);
    transform: scale(1.05);
}

/* ===== LISTA DE PREGUNTAS ===== */
.faq-list-container {
    margin-top: 40px;
}

.faq-list-container h3 {
    font-size: 24px;
    color: rgb(236, 200, 250);
    margin-bottom: 20px;
}

.preguntas-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.pregunta-item {
    background: rgb(43, 20, 65);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid rgb(128, 88, 151);
    transition: all 0.3s ease;
}

.pregunta-item:hover {
    background: rgb(65, 40, 80);
    box-shadow: 0 5px 15px rgba(128, 88, 151, 0.2);
}

.pregunta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.pregunta-header h4 {
    font-size: 18px;
    color: rgb(236, 200, 250);
    margin: 0;
}

.pregunta-fecha {
    font-size: 12px;
    color: rgb(128, 88, 151);
    margin: 0;
}

.pregunta-texto {
    font-size: 14px;
    color: rgb(170, 141, 182);
    margin: 10px 0 15px 0;
    line-height: 1.6;
}

.sin-respuesta {
    font-size: 12px;
    color: rgb(128, 88, 151);
    margin: 10px 0 0 0;
    font-style: italic;
}

.pregunta-respuesta {
    background: rgba(128, 88, 151, 0.1);
    padding: 12px;
    border-left: 3px solid rgb(128, 88, 151);
    border-radius: 3px;
    margin-top: 10px;
}

.respuesta-label {
    font-size: 12px;
    color: rgb(128, 88, 151);
    font-weight: bold;
    margin: 0 0 5px 0;
}

.pregunta-respuesta p:last-child {
    font-size: 14px;
    color: rgb(170, 141, 182);
    margin: 0;
    line-height: 1.6;
}

/* ===== RESPONSIVE - PREGUNTAS ===== */
@media (max-width: 768px) {
    .faq-form-container {
        padding: 20px;
        margin-bottom: 30px;
    }

    .faq-form-container h3 {
        font-size: 18px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 8px 12px;
    }

    .btn-enviar-pregunta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .faq-list-container h3 {
        font-size: 18px;
    }

    .pregunta-item {
        padding: 15px;
    }

    .pregunta-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pregunta-header h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .pregunta-texto {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .faq-form-container {
        padding: 15px;
    }

    .faq-form-container h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .form-group {
        gap: 5px;
    }

    .form-group label {
        font-size: 11px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 12px;
        padding: 7px 10px;
    }

    .btn-enviar-pregunta {
        width: 100%;
        padding: 10px 15px;
        font-size: 12px;
    }

    .faq-list-container h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .pregunta-item {
        padding: 12px;
    }

    .pregunta-header h4 {
        font-size: 14px;
    }

    .pregunta-fecha {
        font-size: 11px;
    }

    .pregunta-texto {
        font-size: 12px;
        margin: 8px 0 10px 0;
    }

    .pregunta-respuesta {
        padding: 10px;
        margin-top: 8px;
    }

    .respuesta-label {
        font-size: 11px;
    }

    .pregunta-respuesta p:last-child {
        font-size: 12px;
    }
}

/* ===== RESPONSIVE - PÁGINAS INDIVIDUALES EXTRAS ===== */
@media (max-width: 768px) {
    .video-detail-container, .imagen-extra-detail-container {
        max-width: 100%;
        margin: 20px 0;
        padding: 0 15px;
    }

    .video-detail-article, .imagen-extra-detail-article {
        padding: 20px;
    }

    .video-detail-article iframe {
        height: auto;
        margin-bottom: 20px;
    }

    .detail-imagen-extra {
        height: 300px;
        margin-bottom: 20px;
    }

    .video-detail-article h2, .imagen-extra-detail-article h2 {
        font-size: 24px;
    }

    .video-detail-description {
        font-size: 14px;
    }

    .video-navigation button, .imagen-extra-navigation button {
        padding: 10px 15px;
        font-size: 12px;
    }

    .video-navigation span, .imagen-extra-navigation span {
        font-size: 12px;
        min-width: auto;
    }

    .related-videos-grid {
        grid-template-columns: 1fr;
    }

    .related-video-thumbnail {
        height: 120px;
    }

    .related-imagenes-extras-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .related-imagen-extra-item img {
        height: 120px;
    }

    .related-videos h3, .related-imagenes-extras h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .video-detail-container, .imagen-extra-detail-container {
        margin: 15px 0;
        padding: 0 10px;
    }

    .video-detail-article, .imagen-extra-detail-article {
        padding: 15px;
        border-left: 3px solid rgb(128, 88, 151);
    }

    .video-detail-article iframe {
        aspect-ratio: 16 / 9;
        height: auto;
        margin-bottom: 15px;
    }

    .detail-imagen-extra {
        height: 200px;
        margin-bottom: 15px;
    }

    .video-detail-article h2, .imagen-extra-detail-article h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .video-detail-date {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .video-detail-divider, .imagen-extra-detail-divider {
        margin: 10px 0;
    }

    .video-detail-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .video-navigation, .imagen-extra-navigation {
        gap: 10px;
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .video-navigation button, .imagen-extra-navigation button {
        padding: 8px 12px;
        font-size: 11px;
    }

    .video-navigation span, .imagen-extra-navigation span {
        font-size: 11px;
        min-width: auto;
    }

    .related-videos, .related-imagenes-extras {
        margin-top: 30px;
        padding-top: 20px;
    }

    .related-videos h3, .related-imagenes-extras h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .related-videos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .related-video-thumbnail {
        height: 100px;
    }

    .related-video-item h4 {
        font-size: 12px;
        padding: 8px 8px 3px 8px;
    }

    .related-video-item p {
        font-size: 10px;
        padding: 0 8px 8px 8px;
    }

    .related-imagenes-extras-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .related-imagen-extra-item img {
        height: 100px;
    }

    .related-imagen-extra-item p {
        font-size: 10px;
        padding: 8px;
    }
}

.admin-panel.activo {
    display: block;
}