/* =========================================
   ARCHIVO: assets/css/style.css
   ========================================= */

/* Variables de colores (Tema Dark/JetTheme) */
:root {
    --bg-body: #1e1e1e;       /* Fondo principal muy oscuro */
    --bg-header: #2d2d2d;     /* Fondo de barras */
    --bg-footer: #303030;     /* Fondo del footer (más negro) */
    --accent: #2377ff;        /* Naranja característico */
    --text-main: #e0e0e0;     /* Texto blanco/gris claro */
    --text-muted: #a0a0a0;    /* Texto gris apagado */
    --border-color: #333333;  /* Líneas separadoras */
    --footer: #191919;
    --footer-col: #ffffff;
    --bg-entradas: #303030;
    --text-entradas: #ffffff;
}

/* Configuración General */
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* background:
        radial-gradient(circle at 50% -100%, #494949, transparent 90%),
        radial-gradient(circle at 50% 150%, #293391, transparent 90%),
        radial-gradient(circle at 50% 150%, #000000); */
}

a { text-decoration: none; cursor: pointer; color: inherit; transition: 0.3s; }
a:hover { color: var(--accent); }

/* Contenedor central (mantiene todo centrado) */
.container {
    max-width: 1100px; /* Ancho similar al blog */
    margin: 0 auto;
    padding: 0 20px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin-top: 20px;
}

/* --- HEADER (Cabecera) --- */
header {
    background: var(--footer);
    padding: 20px 0;
}

/* BORRA LO QUE TENGAS EN .logo img Y PON ESTO: */

.logo img {
    height: auto !important;          /* Altura automática para no deformarse */
    width: 250px !important;          /* Un tamaño bueno para el logo (ajústalo si quieres más grande) */
    max-width: 100%;                  
    border-radius: 0 !important;      /* ESTO QUITA EL CÍRCULO (0 es cuadrado/rectangular) */
    border: none !important;          /* Quita cualquier borde gris */
    padding: 15px;
    margin: 0;
    animation-name: logoanim;

}

/* Aseguramos que el contenedor del logo no lo apriete */
.logo {
    display: flex;
    align-items: center;
    width: auto;
}

.vertical-separator {
  border-left: 1px solid var(--text-main);
  height: 25px;
  margin: 0 10px;
  display: flex;
  vertical-align: middle;
}

.site-url {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    text-transform: lowercase;
}

/* --- NAVEGACIÓN (Menú) --- */

nav {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    min-width: 100%;
    background-color: transparent;
    padding: 20px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-content: center;
    justify-self: center;
    align-items: center;
}

nav .nav-content {
    backdrop-filter: blur(10px);
    background: transparent;
    height: auto;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: -10px -10px 15px -10px #0000007c inset, 10px 10px 15px #0000007c;
    display: flex;
    align-items: center;
    border-radius: 10px;
    transition: all 0.3s;
    animation-name: navbarAnim;
    animation-duration: 1s;
}

nav .nav-content:hover {
    box-shadow: -10px -10px 15px #0000007c inset, 0px 0px 0px 0px #00000000, 10px 10px 15px 50px #0000007c inset;
}

nav .nav-content .logo a {
    font-size: 0px;
    font-weight: 500;
    max-width: 200px;
    color: #fff;
}

nav .nav-content .links {
    display: inherit;
    align-items: inherit;
}

nav .links li {
    list-style: none;
    margin: -5px 10px;
}

nav .links li:last-child {
    list-style: none;
    margin-left: 0px;
    margin-right: 20px;
}

nav .links li button {
    font-family: inherit;
    border: 5px;
    padding: 5px;
    background: none;
    font-size: 15px;
    transition: all 0.3s;
    border-radius: 5px;
    cursor: pointer;
    min-width: 100px;
    height: 35px;
}

nav .links li a button {
    font-size: 15px;
    color: var(--text-main); 
    transition: all 0.5s;
}

nav .header-icons {
    display: flex;
}

nav .header-icons a {
    margin-top: 7px;
}

.links button:hover {
    box-shadow: 12px 12px 12px rgba(255, 255, 255, 0.1) inset,
     -12px -12px 10px rgba(228, 228, 228, 0.1) inset;
     color: var(--accent);
}

.active { 
    color: var(--accent);
} /* Marca la pestaña actual */

.dropdown-content-software {
    display: flex;
    position: absolute;
    flex-direction: column;
    justify-content: center;
    top: 60px;
    left: 100%;
    margin-left: -475px;
    border-radius: 5px;
    border-style: solid;
    border-spacing: 8px;
    border-color: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 6px;
    opacity: 1;
    transition: all 0.5s;
}

.dropdown-content-software a {
    transition: all 0.5s;
}

.dropdown-content-software:hover {
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.6);
}

.dropdown-content-software a:not(:last-child) {
    padding: 8px;
    margin-bottom: 6px;
    border-radius: 5px;

}

.dropdown-content-software a:last-child {
    padding: 8px;
    border-radius: 5px;
}

.dropdown-content-software a:hover {
    box-shadow: 12px 12px 12px rgba(255, 255, 255, 0.1) inset,
     -12px -12px 10px rgba(228, 228, 228, 0.1) inset;
}

.dropdown-content {
    display: flex;
    position: absolute;
    flex-direction: column;
    justify-content: center;
    top: 60px;
    left: 78.3%;
    border-radius: 5px;
    border-style: solid;
    border-spacing: 8px;
    border-color: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 6px;
    transition: all 0.5s;
}

.dropdown-content a {
    transition: all 0.5s;
}

.dropdown-content:hover {
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.6);
}

.dropdown-content a:not(:last-child) {
    padding: 8px;
    margin-bottom: 6px;
    border-radius: 5px;
}

.dropdown-content a:last-child {
    padding: 8px;
    border-radius: 5px;
}

.dropdown-content a:hover {
    box-shadow: 12px 12px 12px rgba(255, 255, 255, 0.1) inset,
     -12px -12px 10px rgba(228, 228, 228, 0.1) inset;
}

/* Sección específica para responsividad movil/celular, no borrar */
@media (max-width: 1000px) {

    aside {
        display: none;
    }

    .blog-layout {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        min-width: 100%;
        max-height: 100%;
        min-height: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 20px;
    }

    header {
        padding: 50px 0;
    }

    nav {
        top: 0;
        letter-spacing: 0px;
        padding: 20px;
        display: flex;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        max-width: 220px;
        min-width: 220px;
        font-size: 5px;
    }

    .nav-content {
        margin-left: auto;
        margin-right: auto;
        flex-wrap: wrap;
        flex: 1 0 100%;
    }
    
    nav .links {
        flex-wrap: inherit;
        flex: inherit;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 10px;
        padding: 0;
    }

    nav .links li {
        padding: 0px;
        margin: 0px;
    }

    .links li:last-child {
        display: none;
    }

    .links li:nth-last-child(2) {
        display: none;
    }

    nav .links li button {
        font-family: inherit;
        border: 0px;
        padding: 10px;
        font-size: 15px;
        cursor: pointer; 
        min-width: 0px;
        height: 35px;
    }

    .fas {
        display: none;
    }

    .fa-solid {
        display: none;
    }
    
    .logo {
        display: flex;
        flex-direction: row;
        justify-self: flex-start;
    }
    
    .dropdown-content {
        display: none;
    }

    .dropdown-content-software {
        display: none;
    }

    .post-content ul li {
        padding-top: 15px;
    }

    .post-content a:last-child {
        padding-bottom: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid  {
        grid-template-columns: 1fr; 
    }
}

/* --- CONTENIDO PRINCIPAL --- */
main {
    flex: 1;
    padding: 50px 0;
    transition: all 2s;
    animation-name: navbarAnim;
    animation-duration: 1s;
}

/* Sección "Nothing Here" */
.hero-section {
    background-color: var(--bg-footer);
    padding: 60px 20px;
    text-align: center;
    border-top: 3px solid var(--accent); /* La línea naranja arriba */
    border-radius: 4px;
}

.hero-section h1 {
    font-size: 32px;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.hero-section p {
    color: var(--text-muted);
    font-size: 15px;
}

.hero-section a {
    color: var(--accent);
    text-decoration: underline;
}

/* --- FOOTER (Pie de página) --- */
footer {
    background-color: var(--bg-footer);
    border-top: 2px solid var(--accent);
    padding-top: 50px;
    font-size: 14px;
    color: var(--text-muted);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columnas iguales */
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    color: var(--footer-col);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 2px solid var(--text-muted);
    padding-bottom: 5px;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-col-links a {
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.footer-col-links a:not(:last-child) {
    border-bottom: 0.2px solid rgba(255, 255, 255, 0.1);
}

/* Botones sociales redondos */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
}

.social-icons a:hover {
    background-color: var(--accent);
}

/* Copyright abajo del todo */
.copyright {
    background-color: var(--footer);
    text-align: center;
    padding: 20px;
    font-size: 12px;
    border-top: 1px solid #222;

}

.inputCamp div input {
   background-color: var(--footer);
   border-color: var(--footer-col);  
   border-radius: 7px;
   padding: 10px 10px;
   opacity: 0.8;
   margin-top: 5px;
   width: 98%;
   color: #ffffff;
}

.inputCamp div textarea{ 
   background-color: var(--footer);
   border-color: var(--footer-col); 
   border-radius: 10px;
   padding: 15px 15px;
   opacity: 0.8;
   margin-top: 5px;
   width: 97%;
   color: #ffffff;
}

.inputCamp div {
    display: inline-table;
    margin-bottom: 5px;
    justify-content: center;
    justify-items: center;
    width: 100%;
}

/* =========================================
   NUEVO: ESTILOS PARA EL BLOG Y SIDEBAR
   ========================================= */

/* --- ESTILO DE LAS TARJETAS (ENTRADAS) --- */
.posts-grid {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Espacio entre cada entrada */
}

.post-title a:hover { color: var(--accent); }

.post-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* --- SIDEBAR (BARRA LATERAL) --- */
.sidebar-widget {
    background-color: var(--bg-footer);
    border: 1px solid var(--border-color);
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    color: var(--text-muted);
}

.widget-title {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 8px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Lista de entradas populares */
.popular-list li {
    padding: 0px 0px;
    margin: auto;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: start;
    margin-left: -20px;
}

.popular-img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.popular-info a {
    font-size: 13px;
    font-weight: bold;
    display: block;
    line-height: 1.2;
}

.popular-info span {
    font-size: 11px;
    color: #777;
}

/* --- CORRECCIONES DE DISEÑO --- */

.section-heading {
    color: var(--footer-col);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

/* Lista vertical de tarjetas */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Diseño de la Tarjeta Individual */
.post-card {
    background-color: var(--bg-entradas); 
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex; /* Esto pone la imagen al lado del texto */
    min-height: 220px; /* Altura fija para que todas sean iguales */
    transition: all 0.3s;
}

.post-blur {
    opacity: 0;
    position: relative;
    left: -40px;
    height: 220px; 
    width: 80px; 
    background: transparent; 
    backdrop-filter: blur(4px);
    box-shadow: 0 0 0 0;
    transition: all 0.1s;
    mask-image: linear-gradient(
        to left,
        black 0%,
        black 50%,
        rgba(0, 0, 0, 0.5) 75%,
        transparent 100%
    );
}

.post-card:hover .post-blur {
    opacity: 1;
}

.post-card:hover {
    transform: translate(-6px, -6px);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 0, 0, 1) inset, 6px 6px 0px rgba(0, 0, 0, 0.5);
}

.post-card:hover .post-content{
    background: transparent;
    backdrop-filter: blur(8px);
}

/* CONTROL DE IMAGEN (El secreto para que no se vean gigantes) */
.thumb-link {
    width: 35%; /* La imagen ocupa el 35% del ancho de la tarjeta */
    flex-shrink: 0;
    overflow: hidden;
}

.post-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta la imagen para llenar el hueco sin deformar */
    display: block;
}


.post-content {
    padding: 0 20px;
    padding-right: 20px;
    padding-left: 0px;
    margin-left: -40px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra el texto verticalmente */
    width: 65%;
    background-color: var(--bg-entradas);
    transition: all 0.3s ease;
}

.post-content ul {
    list-style: none;
    align-items: top;
    justify-content: space-between;
    display: flex;
    padding: 0px;
    margin-top: 0px;
}


.post-tag {
    background-color: var(--accent);
    color: var(--text-main);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    align-self: flex-start;
    margin-bottom: 10px;
}

.post-title {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    line-height: 1.2;
}
.post-title a { color: var(--text-main); text-decoration: none; }
.post-title a:hover { color: var(--accent); }

.post-excerpt {
    color: var(--text-entradas);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    /* Cortar texto si es muy largo con puntos suspensivos */
    display: block;
    line-clamp: 3;
    box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 12px;
    font-weight: bold;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Botón Cargar Más */
.load-more-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.btn {
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 9px;
    color: #ddd
}

.btn-load {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 10px 30px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
}

.btn-load:hover {
    background: var(--accent);
    color: #fff;
}

/* =========================================
   ESTILOS PARA DENTRO DE LAS ENTRADAS (POSTS)
   ========================================= */

/* Contenedor del texto del artículo */

.pages {
    background: rgba(0, 0, 0, 0); 
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
    padding: 5px 20px;
    border-radius: 10px;
    transform: none;
}

/* Títulos dentro del post */
.post-body h1 {
    color: var(--accent);
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
}

.post-body h2 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
}

/* Párrafos y listas para que se lean bien */
.post-body p, .post-body li {
    font-size: 16px;
    line-height: 1.8; /* Espacio entre líneas para leer cómodo */
    color: #ccc;
    margin-bottom: 15px;
}

/* IMÁGENES DENTRO DEL POST (Esto arregla que se vean gigantes) */
.post-body img {
    max-width: 100%; /* Nunca será más ancha que su contenedor */
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 20px auto; /* Centradas */
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.sideimg {
    display: flex;
    flex-direction: row;
    justify-self: end;
    max-width: 200px;
    margin-top: -10px
}

/* Cajas de nota o advertencia */
.note-box {
    background: rgba(230, 126, 34, 0.1); /* Naranja transparente */
    border-left: 4px solid var(--accent);
    padding: 15px;
    margin: 20px 0;
    color: #ddd;

}

.bg-img {
    background-repeat: no-repeat;
    background-size: 50%;
    background-attachment: local;
    background-position: center center;
    margin-top: 100px;
    height: 100%;
    width: 100%;
    position: fixed;
}

.bg-blur {
    height: 100vh;
    width: 100%;
    backdrop-filter: blur(15px);
}

.fadeInAnimation {
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.fadeInAnimation a {
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes navbarAnim {
    from {
        transform: scale(0.9) rotate3d(1, 0, 0, 45deg) opacity(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate3d(1, 0, 0, 0deg) opacity(1);
        opacity: 1;
    }
}


/* =========================================
   AVISO DE COOKIES (Dark Mode)
   ========================================= */
.cookie-container {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #2d2d2d; /* Fondo oscuro */
    color: #f5f5f5;      /* Texto claro */
    padding: 0 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
    transition: 400ms;
    z-index: 9999;
    border-top: 2px solid #e67e22; /* Tu naranja */
}

.cookie-container.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background: #e67e22;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.cookie-btn-accept:hover {
    background: #d35400;
}

.cookie-link {
    color: #e67e22;
    text-decoration: underline;
    font-size: 14px;
}

/* Sidebar */
#searchInput{
    width: 100%; 
    box-sizing: border-box;
}

.popular-link {
    display: flex;
    gap: 10px;
    align-items: start;
}
.popular-link-title {
    display: block;
    color: var(--text-main);
    margin-top:3px;
}

.follow-div{
    justify-content: flex-start;
}

.text-center{
    text-align: center;
}
.donate-text{
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.btn-load{
    font-size: 12px; 
    padding: 8px 20px;
}

/* Discord Widget */

.button-discord {
    display: flex;
    background: transparent;
    border: 2px solid var(--accent);
    color: #ddd;
    padding: 10px 80px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.3s;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}

.button-discord:hover {
    background-color: #5865F2;
    backdrop-filter: blur(50px);
    color: #000000;
    border-radius: 8px;
}

.x-card {
    background-color: transparent;
    border-width: 1px;
    border: 1px solid #2377ff;
    border-radius: 10px;
    backdrop-filter: blur(20px);
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 0px;
}

.all {
    margin-bottom: 25px;
    padding-bottom: 0px;
    border-width: 1px;
    border: 1px solid #2377ff;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background-image: url("https://preview.redd.it/secrets-of-the-new-login-screen-v0-fi7kpeywwb8d1.png?width=1425&format=png&auto=webp&s=aae2e0589e05b0f5fe67388e62f167e9002c298f");
    /* background-color: #007bff; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* background: var(--bg-card); */
}

.dw-header { padding-bottom: 10px; border-bottom: 1px solid var(--border); margin-bottom: 10px; }
.dw-title { font-size: 14px; font-weight: 800; color: #fff; margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.dw-desc { font-size: 11px; color: var(--text-muted); margin: 5px 0 0 0; }
.dw-highlight { color: #5865F2; font-weight: 700; }

.dw-window {
height: 250px; overflow: hidden; position: relative;
mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
-webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.dw-card {
background: linear-gradient(90deg, rgba(194, 194, 194, 0.189) 0%, transparent 100%);
display: flex; align-items: center; padding: 8px; margin-bottom: 8px;
border-radius: 6px;
height: 35px; transition: all 0.5s ease; border: 1px solid transparent;
}

.dw-minecraft { border-left: 3px solid #2ecc71; background: linear-gradient(90deg, rgba(194, 194, 194, 0.189) 0%, transparent 100%); }

.dw-avatar { width: 36px; height: 36px; border-radius: 50%; margin-right: 12px; background: #333; flex-shrink: 0; }
.dw-info { display: flex; flex-direction: column; justify-content: center; overflow: hidden; flex: 1; min-width: 0; }
.dw-username { font-size: 13px; font-weight: 700; color: #eee; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dw-activity { font-size: 11px; color: #aaa; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.dw-badge { font-size: 9px; font-weight: 800; padding: 3px 6px; border-radius: 4px; background: #222; color: #777; margin-left: 8px; flex-shrink: 0; text-transform: uppercase;}
.dw-badge-active { color: #2ecc71; background: rgba(46, 204, 113, 0.15); }

/* Fin de Discord Widget */

/* JuanseUnlock v3 CSS */

.replacement-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 20px 0;
    border: 3px dashed #414141;
    background-color: #222222; 
}

.replacement-wrapper-inside {
    height: 420px;
    width: 100%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    margin-bottom: 15px;
    text-align: center;
}

/* Fin de JuanseUnlock v3 CSS */
