body {
    background-color: #373737;
    color: #f0f0f0;
    font-family: Arial, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.post {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #444;
}

.post-header {
    background: #333;
    padding: 8px;
    margin-bottom: 10px;
    font-weight: bold;
    border-bottom: 1px solid #666;
}

.author {
    color: #66ccff;
}

.date {
    color: #aaa;
    font-size: 0.9em;
}

.attachments {
    margin-top: 10px;
    padding: 10px;
    background: #3a3a3a;
    border-left: 3px solid #66ccff;
}

hr {
    display: none;
}

a {
    color: #66ccff;
}

h1 {
    color: #fff;
    border-bottom: 2px solid #555;
    padding-bottom: 10px;
}

/* Fuente Poppins con .ttf */
@font-face {
    font-family: 'Poppins';
    src: url('poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
}

strong, b {
    color: #FF8C00 !important;
}

h1 {
    color: #FF8C00;
}

/* Footer integrado */
.site-footer {
    margin-top: 40px;
    border-top: 2px solid #555;
    background-image: url('repetitivos/footer-3d.webp');
    background-repeat: repeat;
    text-align: center;
}

.footer-nav {
    padding: 20px 20px 10px 20px;
}

.footer-nav a {
    color: #FF8C00;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.footer-nav a:hover {
    text-decoration: underline;
    color: #FFA500;
}

.footer-copyright {
    padding: 10px 20px 20px 20px;
    color: #fff;
    font-size: 1em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Ajuste para botones sociales */
.social-share-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 30px 0 20px 0;
    justify-content: center;
}

/* Estilo para adjuntos pendientes */
.attachment-pending {
    background-color: #2a2a2a;
    border: 2px dashed #FF8C00;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    text-align: center;
    color: #f0f0f0;
}

.attachment-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.attachment-message {
    font-size: 1.1em;
    color: #FF8C00;
    margin-bottom: 5px;
}

.attachment-id {
    font-size: 0.9em;
    color: #888;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 20px 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}