@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Lora:ital,wght@0,400;0,700;1,400&display=swap');

body {
    background-color: #fcfcfc;
    color: #111111;
    font-family: 'Inter', sans-serif;
}

/* === BACKEND / ADMIN PANELS (Diseño Editorial Brutalista) === */
.panel-custom {
    background-color: #ffffff !important;
    border: 2px solid #111111 !important;
    border-radius: 4px;
    box-shadow: 6px 6px 0px rgba(17, 17, 17, 0.1);
    padding: 30px;
    color: #111111 !important;
}

.table-custom { border: 2px solid #e5e7eb; border-radius: 4px; }
.table-custom th {
    background-color: #f8f9fa !important; color: #111111 !important;
    border-bottom: 3px solid #111111 !important; font-weight: 800;
    text-transform: uppercase; font-size: 0.85rem;
}
.table-custom td {
    background-color: #ffffff !important; color: #333333 !important;
    border-bottom: 1px solid #e5e7eb !important; vertical-align: middle;
}
.table-custom tbody tr:hover td { background-color: #f8f9fa !important; }

.form-control-custom {
    background-color: #ffffff; border: 2px solid #e5e7eb;
    color: #111111; font-weight: 600; border-radius: 4px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control-custom:focus {
    border-color: #111111; box-shadow: 4px 4px 0px rgba(255, 212, 0, 0.4); outline: none;
}
.modal-content.panel-custom { box-shadow: 12px 12px 0px rgba(17, 17, 17, 0.2); }

/* === FRONTEND EDITORIAL ESTILO ANAITGAMES === */
.navbar-custom { background-color: #111111; border-bottom: 4px solid #ffd400; }
.navbar-custom .nav-link, .navbar-custom .navbar-brand { color: #ffffff !important; }
.navbar-custom .nav-link:hover { color: #ffd400 !important; }

.btn-premium {
    background-color: #ffd400; color: #111111 !important;
    font-weight: 800; border-radius: 4px; padding: 0.4rem 1.2rem;
    text-transform: uppercase; font-size: 0.85rem; border: none; transition: background 0.2s;
}
.btn-premium:hover { background-color: #e6be00; }

.card-anait {
    border: 2px solid #e5e7eb; border-radius: 4px; background: #ffffff;
    transition: transform 0.2s, border-color 0.2s;
}
.card-anait:hover { transform: translateY(-4px); border-color: #111111; }

.article-title { font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: -0.5px; color: #111111; line-height: 1.2; }
.article-content { font-family: 'Lora', serif; font-size: 1.15rem; line-height: 1.8; color: #333333; }

/* Paginación AnaitGames */
.anait-pagination { display: flex; justify-content: center; gap: 10px; margin: 50px 0; list-style: none; padding: 0; }
.anait-pagination .page-item .page-link {
    background-color: #ffffff; border: 2px solid #e5e7eb; color: #111111;
    font-weight: 800; border-radius: 4px; padding: 10px 18px; transition: all 0.2s;
}
.anait-pagination .page-item.active .page-link { background-color: #111111; border-color: #111111; color: #ffffff; }
.anait-pagination .page-item .page-link:hover { background-color: #f8f9fa; border-color: #111111; }

.form-control-editorial { background-color: #ffffff; border: 2px solid #e5e7eb; color: #111111; font-weight: 600; border-radius: 4px; }
.form-control-editorial:focus { border-color: #111111; box-shadow: none; }

/* === NOTICIAS HORIZONTALES === */
.card-horizontal {
    display: flex; flex-direction: column; border: 2px solid #e5e7eb;
    background: #ffffff; border-radius: 4px; overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
@media (min-width: 768px) { .card-horizontal { flex-direction: row; } }
.card-horizontal:hover { border-color: #111111; transform: translateY(-4px); box-shadow: 4px 4px 0px #ffd400; }
.card-horizontal-img { width: 100%; height: 250px; object-fit: cover; border-bottom: 2px solid #e5e7eb; }
@media (min-width: 768px) { .card-horizontal-img { width: 35%; height: auto; border-bottom: none; border-right: 2px solid #e5e7eb; } }
.card-horizontal-body { padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; width: 100%; }

/* === BANNER DESTACADO (GRID) === */
.grid-destacadas { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 992px) {
    .grid-destacadas { grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 250px); }
    .destacada-principal { grid-row: span 2; }
}
.card-destacada { position: relative; border-radius: 4px; overflow: hidden; border: 2px solid #111; height: 100%; min-height: 250px; }
.card-destacada img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card-destacada:hover img { transform: scale(1.05); }
.card-destacada-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(17,17,17,0.95), transparent); padding: 2rem 1.5rem 1.5rem 1.5rem; color: #fff; }

/* === BARRA LATERAL EDITORIAL (STICKY) Y ADS === */
.sidebar-sticky { position: -webkit-sticky; position: sticky; top: 100px; z-index: 10; }
.ad-lateral { border: 2px dashed #e5e7eb; background-color: #f9fafb; border-radius: 4px; min-height: 600px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 1rem; }