body {
    margin: 0;
    background: #020409;
    color: #cfd8ff;
    font-family: "Courier New", monospace;
    overflow-x: hidden;
}

/* WATER ATMOSPHERE */
.water {
    min-height: 200vh;
    padding: 100px 20px;
    background: radial-gradient(circle at 50% 20%, #0a1a2a, #020409 70%);
}

/* POEM */
.poem {
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
    font-size: 15px;
}

/* TEXT BLOCKS */
.poem p {
    margin: 80px 0;
    opacity: 0.6;
    transition: all 0.6s ease;
}

/* HOVER = clarity */
.poem p:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* BREAK MOMENT */
.break {
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* END (god’s favorite line) */
.end {
    font-size: 18px;
    text-align: center;
    opacity: 1;
}

/* FINAL FADE */
.fade {
    opacity: 0.3;
    filter: blur(1px);
}

/* SUBTLE FLOATING EFFECT */
.poem p {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(6px); }
    100% { transform: translateY(0px); }
}