/* ------------------------------
   SORANE ROOM JP — CSS 2008 EDITION (FIXED)
   ------------------------------ */

body {
    background: #0a0016;
    background-image: url("https://i.imgur.com/3Kc5pQ0.gif");
    color: #d6e6ff;
    font-family: "MS PGothic", "Hiragino Kaku Gothic Pro", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Contenedor principal */
.container {
    width: 85%;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(20, 0, 40, 0.75);
    border: 3px solid #6ab6ff;
    box-shadow: 0 0 20px #009dff, inset 0 0 20px #003cff;
    border-radius: 10px;
}

h1, h2 {
    text-align: center;
    color: #80d4ff;
    text-shadow: 0 0 10px #0099ff, 0 0 20px #00ccff;
    margin-top: 10px;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 28px;
}

p {
    font-size: 16px;
    line-height: 1.7;
}

/* Enlaces */
a {
    color: #79caff;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 0 0 5px #008cff;
}

a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00c8ff;
}

/* Header */
header {
    background: rgba(0, 20, 50, 0.85);
    padding: 15px;
    text-align: center;
    border-bottom: 3px solid #0080ff;
    box-shadow: 0 0 10px #005dff;
    position: sticky;
    top: 0;
    z-index: 500;
}

/* Cajas */
.box {
    background: rgba(0, 0, 40, 0.5);
    padding: 15px;
    margin: 20px 0;
    border-left: 5px solid #4fa9ff;
    border-right: 5px solid #4fa9ff;
    box-shadow: inset 0 0 15px #0051ff;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 60, 0.7);
    border-top: 2px dashed #79caff;
    color: #b0cdff;
}

/* Parpadeo */
.blink {
    animation: blink 0.9s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Marquee animado */
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Scrollbar azul */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #00214a;
}
::-webkit-scrollbar-thumb {
    background: #00aaff;
    border-radius: 5px;
    box-shadow: inset 0 0 10px #0066ff;
}

/* Imagenes */
img {
    max-width: 100%;
    border: 3px solid #00aaff;
    box-shadow: 0 0 15px #0077ff;
    border-radius: 8px;
}