/* ===== MISMO ESTILO PARA TODO EL SITIO ===== */
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #faf0e6;
    font-family: 'Special Elite', 'Courier New', monospace;
    color: #3c2a1f;
    padding: 30px 20px;
    min-height: 100vh;
    position: relative;
}

/* Efecto de papel arrugado */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="1" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.1"/></svg>');
    pointer-events: none;
    opacity: 0.15;
    z-index: 9999;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.contenedor {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff9f0;
    border: 3px solid #3c2a1f;
    padding: 30px;
    box-shadow: 12px 12px 0 #3c2a1f;
    position: relative;
    z-index: 1;
}

/* ===== MENÚ ===== */
.menu {
    background-color: #3c2a1f;
    padding: 15px;
    text-align: center;
    margin-bottom: 30px;
    border: 2px solid #3c2a1f;
}

.menu a {
    color: #faf0e6;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-bottom: 2px dotted transparent;
    transition: all 0.3s;
}

.menu a:hover {
    border-bottom: 2px dotted #e6b17e;
    color: #e6b17e;
}

/* ===== TÍTULOS ===== */
h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    border-bottom: 3px double #3c2a1f;
    padding-bottom: 15px;
    color: #3c2a1f;
}

h2 {
    font-size: 1.5em;
    margin: 30px 0 20px 0;
    padding-left: 10px;
    border-left: 10px solid #e6b17e;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== BOTONES ===== */
.boton {
    background-color: #3c2a1f;
    color: #faf0e6;
    border: none;
    padding: 12px 25px;
    font-family: 'Special Elite', 'Courier New', monospace;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border: 2px solid #3c2a1f;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.boton:hover {
    background-color: #e6b17e;
    color: #3c2a1f;
    transform: scale(0.98);
}

/* ===== FOOTER ===== */
.footer {
    margin-top: 50px;
    text-align: center;
    border-top: 3px dotted #3c2a1f;
    padding-top: 20px;
    font-size: 0.9em;
    color: #a67c52;
}

.footer a {
    color: #3c2a1f;
    text-decoration: none;
    border-bottom: 2px dotted #e6b17e;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .contenedor {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.5em;
        letter-spacing: 2px;
    }
    
    .menu a {
        display: block;
        margin: 10px 0;
    }
}