@font-face {
    font-family: "Caudex-Regular";
    src: url("./fonts/Caudex-Regular.ttf");
}
@font-face {
  font-family: "TheFrightHouseDEMO";
  src: url("./fonts/TheFrightHouseDEMO.otf");
}
@font-face {
  font-family: "Fifties Movies";
  src: url("./fonts/Fifties\ Movies.ttf");
}


body {
    background-image: url(https://res.cloudinary.com/deieutqt4/image/upload/v1759775027/stars4_crdqer.gif);
    color: #eeeeee; /* Texto claro */
    line-height: 1.7;
    margin: 0;
    padding: 0;
    cursor: url(/images/cursor3.gif), auto;
}
.post-list {
    display: flex;
    flex-direction: column-reverse; 
    gap: 0;
}

.post-separator {
    border: none;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      #ccc,
      #ccc 5px,
      transparent 5px,
      transparent 10px
    );
    margin: 0; 
}

.site-wrapper {
    max-width: 900px;
    margin: 30px auto; 
    box-shadow: 0 0 10px rgba(144, 0, 255, 0.4); 
    border: 2px solid #581c7d; 
    background-color: #000000; 
    overflow: hidden;
    position: relative;
    overflow: visible; 
}

.mariposa {
    position: absolute;
    top: 100px;             
    right: -30px;
    width: 130px;
    height: auto;
    z-index: 10;
}
.dynamic-background-section {
    background: color #000;  
    background-size: cover;  
    padding: 20px 0; 
    border-bottom: 2px dashed #581c7d; 
}

.header { color: #f9f9f9; text-shadow: 0 0 3px #c4b9cb; text-align: center; padding: 10px 20px; }
.header h1 { font-family: "Fifties Movies"; font-size: 3em; margin: 0; }

.main-content{
    background-color: black;
    color: #ffffff; 
    padding: 30px;
    font-family: "Caudex-Regular";
}

.entry-body p {
    margin-bottom: 15px;
}

.post-flex {
    display: flex;         
    gap: 20px;            
    align-items: flex-start;
    margin-top: 10px;
}

.post-image {
    flex: 0 0 30%; 
    max-width: 200px;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.entry-body {
    flex: 1; 
}

.home-button-container {
    padding-left: 10px;
    font-family: "Caudex-Regular";
}

@media (max-width: 600px) {
    .post-flex {
        flex-direction: column; 
    }
}


.separador {
    text-align: center;
    margin: 20px 0;   
    height: 1em; 
    position: relative;
}

.separador::after {
    content: "« ✦ —⋆——― ꒰ঌ·✦·໒꒱ ———⋆— ✦ »"; 
    display: inline-block; 
    padding: 0 15px;     
    font-size: 24px;     
    color: #ffffff;   
}

.post-list .blog-entry:nth-of-type(even) .post-flex {
    flex-direction: row-reverse;
}