/* === VERSIÓN DE EMERGENCIA - EL GATO SE VE SÍ O SÍ === */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #008080;
    min-height: 100vh;
    padding: 30px 20px;
}

/* 🐱 GATO - VERSIÓN SUPER SIMPLE Y QUE FUNCIONA SEGURO 🐱 */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('gato.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 300px 300px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.window {
    max-width: 900px;
    margin: 0 auto;
    background: #c0c0c0;
    border: 3px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    position: relative;
    z-index: 1;
}

.title-bar {
    background: #000080;
    padding: 4px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: bold;
}

.title-bar-text {
    display: flex;
    align-items: center;
    gap: 6px;
}

.title-bar-controls {
    display: flex;
    gap: 2px;
}

.title-bar-controls button {
    width: 18px;
    height: 18px;
    background: #c0c0c0;
    border: 1px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    cursor: pointer;
}

.menu-bar {
    display: flex;
    gap: 10px;
    padding: 4px 8px;
    background: #c0c0c0;
    border-bottom: 1px solid #808080;
}

.menu-item {
    padding: 2px 6px;
    cursor: pointer;
}

.menu-item:hover {
    background: #000080;
    color: white;
}

.window-body {
    padding: 12px;
    background: #c0c0c0;
}

.toolbar {
    background: #c0c0c0;
    border: 1px solid #808080;
    padding: 6px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tool-btn {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    padding: 4px 12px;
    font-family: monospace;
    cursor: pointer;
}

.help-topics {
    background: #ffffff;
    border: 2px inset #808080;
    margin-bottom: 15px;
}

.help-tabs {
    display: flex;
    background: #c0c0c0;
    border-bottom: 1px solid #808080;
    padding: 4px 4px 0 4px;
    gap: 2px;
}

.tab {
    background: #c0c0c0;
    border: 1px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    padding: 4px 12px;
    font-family: monospace;
    cursor: pointer;
}

.tab.active {
    border-color: #808080 #ffffff #ffffff #808080;
}

.help-content {
    padding: 12px;
}

.help-list {
    list-style: none;
}

.help-list li {
    padding: 4px 0;
    cursor: pointer;
}

.help-list li:hover {
    background: #000080;
    color: white;
}

.book-icon {
    margin-right: 8px;
}

.posts-container {
    background: #ffffff;
    border: 2px inset #808080;
    margin-bottom: 15px;
    padding: 10px;
}

.recorder-header {
    background: #c0c0c0;
    padding: 6px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #808080;
    font-weight: bold;
}

.post {
    border: 1px solid #808080;
    margin-bottom: 15px;
    background: #fffff0;
    padding: 8px;
}

.post-header {
    background: #c0c0c0;
    padding: 4px 8px;
    margin: -8px -8px 8px -8px;
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid #808080;
    font-weight: bold;
}

.post-title {
    flex-grow: 1;
}

.post-date {
    color: #000080;
    font-size: 11px;
}

.post-content {
    font-size: 13px;
    line-height: 1.4;
    padding: 4px;
}

.post-meta {
    margin-top: 10px;
    font-size: 11px;
    display: flex;
    gap: 12px;
}

.readmore {
    color: #000080;
    text-decoration: none;
}

.comments {
    color: #808080;
}

.putty-style {
    background: #000000;
    color: #00ff00;
    border-color: #00ff00;
}

.putty-style .post-header {
    background: #000000;
    border-bottom-color: #00ff00;
    color: #00ff00;
}

.putty-question {
    padding: 8px;
}

.putty-question label {
    display: inline-block;
    margin-right: 12px;
}

.tiny-btn {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    padding: 2px 10px;
    margin-left: 12px;
    cursor: pointer;
}

.status-bar {
    background: #c0c0c0;
    border-top: 1px solid #808080;
    padding: 4px 8px;
    font-size: 11px;
    display: flex;
    justify-content: space-between;
}

.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #c0c0c0;
    border-top: 2px solid #ffffff;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    gap: 8px;
}

.start-button {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    padding: 4px 12px;
    font-weight: bold;
    display: flex;
    gap: 6px;
    cursor: pointer;
}

.taskbar-items {
    display: flex;
    gap: 4px;
    flex-grow: 1;
}

.taskbar-item {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #ffffff #808080 #808080 #ffffff;
    padding: 4px 12px;
    font-size: 12px;
}

.clock {
    border-left: 1px solid #808080;
    padding-left: 10px;
}