/*
Theme Name: omontes-micro
Theme URI: https://omontes.com
Description: Microblogging inspirado en el Twitter clásico. Minimalismo puro.
Author: omontes
Author URI: https://omontes.com
Version: 1.0
*/

body {
    background-color: #f7f9fa;
    color: #0f1419;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
    border-left: 1px solid #ebeef0;
    border-right: 1px solid #ebeef0;
}

header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 15px 20px;
    border-bottom: 1px solid #ebeef0;
    z-index: 100;
}

header h1 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #1da1f2;
}

.tweet {
    padding: 20px;
    border-bottom: 1px solid #ebeef0;
    transition: background 0.2s;
}

.tweet:hover {
    background-color: #f7f9fa;
}

.tweet-meta {
    font-size: 15px;
    margin-bottom: 5px;
}

.tweet-author {
    font-weight: 700;
    color: #0f1419;
}

.tweet-date {
    color: #5b7083;
    font-weight: 400;
}

.tweet-content {
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Ajustes para móviles */
@media (max-width: 600px) {
    .container { border: none; }
}

/* Modo Oscuro */
@media (prefers-color-scheme: dark) {
    body { background-color: #000000; color: #d9d9d9; }
    .container { background: #000000; border-color: #2f3336; }
    header { background: rgba(0, 0, 0, 0.8); border-color: #2f3336; }
    .tweet { border-color: #2f3336; }
    .tweet:hover { background-color: #16181c; }
    .tweet-author { color: #ffffff; }
    header h1 { color: #1d9bf0; }
}