/* =========================
   IMPORTS (PIXEL FONTS)
========================= */
@import url('https://fonts.googleapis.com/css2?family=DotGothic16&family=Pixelify+Sans:wght@400;700&display=swap');

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
    background: linear-gradient(180deg, #eafff3, #f5fff9);
    font-family: 'Pixelify Sans', 'Segoe UI Emoji', monospace;
    color: #4f6b5a;
    line-height: 1.7;
    image-rendering: pixelated;
}

/* =========================
   CONTENEDOR PRINCIPAL
========================= */
.container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffffcc;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(160, 220, 190, 0.35);
    border: 2px solid #c9f0dc;
}

/* =========================
   HEADER
========================= */
header {
    text-align: center;
    padding: 20px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #c8f2dc, #e2f9ee);
    border-radius: 14px;
}

header h1 {
    font-family: 'DotGothic16', monospace;
    font-size: 2.2em;
    color: #5bbf9c;
    text-shadow: 2px 2px 0 #ffffff;
    letter-spacing: 1px;
}

header p {
    font-size: 1em;
    color: #6f8f80;
}

/* =========================
   NAV
========================= */
nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 30px;
}

nav a {
    font-family: 'DotGothic16', monospace;
    text-decoration: none;
    background: #e6fff3;
    padding: 10px 18px;
    border-radius: 12px;
    color: #4fae8b;
    font-weight: bold;
    border: 2px solid #bdebd6;
    transition: all 0.15s ease;
}

nav a:hover {
    background: #bff0da;
    color: #ffffff;
    transform: translateY(-1px);
}

/* =========================
   SECCIONES
========================= */
section {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 25px;
    border: 2px dashed #c6f1db;
}

section h2 {
    font-family: 'DotGothic16', monospace;
    color: #55b693;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* =========================
   TEXTO
========================= */
p {
    margin-bottom: 15px;
}

a {
    color: #47a983;
}

a:hover {
    text-decoration: underline;
}

/* =========================
   LISTAS
========================= */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 6px;
}

/* =========================
   BOTONES
========================= */
button {
    font-family: 'DotGothic16', monospace;
    background: linear-gradient(90deg, #bff0da, #a5e3c7);
    border: 2px solid #9fd8be;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 0 #8fc9ae;
    transition: transform 0.1s ease;
}

button:hover {
    transform: translateY(-1px);
}

/* =========================
   FOOTER
========================= */
footer {
    text-align: center;
    font-size: 0.85em;
    color: #7b9f8e;
    margin-top: 20px;
}

/* =========================
   DECORACIONES CUTE
========================= */
.kawaii-box {
    background: #eafff3;
    border-radius: 14px;
    padding: 15px;
    border: 2px solid #c9f0dc;
}

.sparkle {
    color: #7bd8b4;
}


.youtube-mini {
    margin-top: 12px;
}

.youtube-mini iframe {
    width: 240px;        /* tamaño pequeño */
    height: 135px;       /* 16:9 */
    border-radius: 12px;
    border: 2px solid #c9f0dc;
    display: block;
}
