/* --- 1. FUENTES --- */
@font-face {
    font-family: 'Wartorn';
    src: url('WARTORN.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sandunes';
    src: url('sandunes.otf');
}

@font-face {
    font-family: 'ArabFont';
    src: url('arab.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* --- 2. BANNER --- */
.top-banner {
    width: 100%;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    height: 35px;
    display: flex;
    align-items: center;
    z-index: 1000;
    font-family: 'ArabFont', sans-serif; 
    font-size: 33px; 
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* --- 3. CUERPO Y ESTRUCTURA --- */
body {
    margin: 0;
    margin-top: 40px;
    background: black;
    color: white;
}
  
h1, h2, h3, #description {
    text-align: center;
}
  
#header-image {
    height: 200px;
    width: 100%;
    background-image: url('/images/40361man88ayepa.jpg');
    background-size: cover;
    margin-bottom: 30px;
}
  
#header {
    border: 0px solid #a10000;
    width: 80em;
    margin: 10px auto;
    background-image: url('/images/38206z0g0sxt7kq.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
}
  
#description {
    padding: 10px;
    margin: 10px auto;
}

.column-wrapper {
    columns: 3;
    min-height: 80%;
    width: 80em;
    margin: 0 auto;
    column-gap: 10px;
}
  
.post, .post-scroller {
    display: inline-block;
    border: 1px solid #a10000;
    margin: 0 auto;
    margin-bottom: 10px;
    overflow-y: auto;
    background-image: url('/images/43320m9oc969u27.jpg');
}
  
.post img, .post-scroller img {
    max-width: 100%;
    height: auto;
}
  
.post-scroller {
    height: 500px;
}
  
.post-inner {
    margin: 10px;
    background-image: url('/images/40361man88ayepa.jpg');
}
  
.block-color-section {
    background: #a10000;
    color: black;
    min-height: 1em;
    margin-top: 10px;
    margin-bottom: 20px;
}
  
.block-color-inner {
    padding: 10px;
    padding-left: 10%;
    padding-right: 10%;
    margin: 0 auto;
}
  
.candelabro {
    position: absolute;
}

#footer {
    background: #a10000;
    color: #fff;
    min-height: 1em;
    margin-top: 10px;
}

#footer a {
    color: #ddd;
}
  
#footer-content {
    padding: 1px; 
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 auto;
}
  
.footer-columns {
    columns: 3;
    width: 80em;
    margin: 0 auto;
    column-gap: 10px;
}
  
.footer-column {
    text-align: left;
    display: inline-block;
    height: 6em;
    width: 100%;
    padding: 10px;
    padding-top: 0;
}
  
#footer li {
    padding-left: 0;
    padding-top: 2px;
    padding-bottom: 2px;
    list-style-type: none;
}

.boton-brillante:hover {
    filter: brightness(1.5) drop-shadow(0 0 20px white);
    transform: scale(1.2);
    outline: 2px solid white;
}

/* --- 4. RESPONSIVE --- */
@media(max-width:80em) {
    #header, #description, .column-wrapper, .footer-columns {
        width: 90%;
    }
}  

@media(orientation:portrait) {
    .column-wrapper, .footer-columns {
        columns: 1;
    }
}

/* --- 5. ESTILO DEL BUZÓN (REPARADO) --- */
.buzon-contenedor {
    position: absolute !important;
    left: 50px;
    top: 3070px; /* Ajustado para que baje a la zona roja */
    cursor: pointer;
    z-index: 999;
    display: block;
}

.buzon-contenedor img {
    width: 140px;
    height: auto;
    transition: all 0.3s ease;
}

.buzon-contenedor img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0px 0px 15px #800020) drop-shadow(0px 0px 5px #4d0013);
}

/* --- 6. MODAL --- */
.modal-estilo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0f0f0f;
    border: 2px solid #555;
    padding: 25px;
    z-index: 10000;
    width: 320px;
    box-shadow: 0 0 30px rgba(0,0,0,0.9);
    font-family: 'Courier New', monospace;
}