/* =========================
   BASE
========================= */

* {
    box-sizing: border-box;
}

body {
    background-image: url("IMAGES/heart.gif");
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 40px 0 0 0; /* espacio para topbar */

    cursor: url("IMAGES/llavecita.png"), auto;
}

/* =========================
   TOP BAR
========================= */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: black;
    color: cyan;

    text-align: center;
    padding: 6px;

    border-bottom: 2px solid magenta;
    box-shadow: 0 0 10px magenta;

    font-size: 12px;
    font-family: Verdana;

    z-index: 9999;

    letter-spacing: 1px;
}

.topbar .dot {
    color: hotpink;
    margin: 0 6px;
}

#clock {
    color: cyan;
    text-shadow: 0 0 6px cyan;
}

#date {
    color: hotpink;
    text-shadow: 0 0 6px hotpink;
}

#signal {
    color: #00ff99;
}

#battery {
    color: yellow;
}

#mode {
    color: white;
}

/* =========================
   CONTENEDOR PRINCIPAL
========================= */

.container {
    width: 800px;
    margin: 60px auto 30px auto;

    background: rgba(15, 10, 15, 0.92);
    border: 4px solid magenta;
    padding: 20px;

    box-shadow: 0 0 20px magenta;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* =========================
   HEADER
========================= */

header {
    text-align: center;
}

.header-gif {
    width: 300px;
    box-shadow: 0 0 15px #CCADAD;
    margin: auto;
    display: block;
}

/* =========================
   NAV
========================= */

nav {
    text-align: center;
}

nav a {
    color: #C2295C;
    margin: 10px;
    text-decoration: none;
    font-family: 'Bitcount Prop Single', sans-serif;
    font-size: 24px;

    cursor: url("IMAGES/sora.png"), pointer;
}

nav a:hover {
    color: cyan;
}

/* =========================
   TEXTO ABOUT
========================= */

.dream-text {
    font-family: 'Caveat', cursive;
    font-size: 26px;
    line-height: 1.8;
    color: #ffe6f2;
    text-shadow: 0 0 6px rgba(255, 105, 180, 0.5);
}

.about {
    text-align: center;
}

.about-logo {
    width: 150px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 143, 194, 0.5);
}

/* =========================
   SOCIALS
========================= */

.socials {
    text-align: center;
    margin: 20px 0;
}

.socials a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.socials img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
}

.socials a:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px cyan);
}

/* =========================
   UPDATES
========================= */

.updates {
    margin-top: 40px;
    background: black;
    padding: 15px;
    box-shadow: 0 0 10px white;
}

.updates ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.updates li {
    padding: 6px 10px;
    margin: 6px 0;
    border: 1px solid hotpink;
    box-shadow: 0 0 6px hotpink;
    background: rgba(0, 0, 0, 0.6);
}

/* =========================
   FOOTER
========================= */

footer {
    text-align: center;
    margin-top: 40px;
    color: gray;
    font-size: 12px;
}

/* =========================
   REPRODUCTOR
========================= */

.music-widget {
    width: 260px;
    margin: 20px auto;
    padding: 12px;
    background: rgba(10, 10, 20, 0.95);
    border: 2px solid hotpink;
    box-shadow: 0 0 15px hotpink;
    text-align: center;
}

.music-widget iframe {
    width: 220px;
    height: 125px;
    border: none;
}

.winamp-title {
    color: hotpink;
    font-size: 14px;
    margin-bottom: 8px;
}

.winamp-note {
    font-size: 11px;
    color: #aaa;
    margin-top: 8px;
}

/* =========================
   DIARIO
========================= */

h1 {
    color: cyan;
    font-size: 50px;
    text-shadow:
        0 0 2px cyan,
        0 0 2px cyan,
        0 0 5px hotpink;
}

.diary {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.entry {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.6);
    border: 1px solid hotpink;
    box-shadow: 0 0 10px hotpink;
    color: white;
}

.entry h3 {
    margin: 0 0 8px 0;
    color: cyan;
}

.entry p {
    margin: 0;
}

/* =========================
   EXTRA LINKS DIARIO
========================= */

.diary-nav {
    text-align: center;
    margin: 10px 0;
}

.diary-nav a {
    margin: 0 8px;
    color: cyan;
    text-decoration: none;
}

.diary-nav a:hover {
    color: hotpink;
    text-shadow: 0 0 6px hotpink;
}