
body {
    background-color: #030811;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}
#effects-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.content-wrap {
    position: relative;
    z-index: 10;
}
.jumbotron {
    background: transparent;
    min-height: 60vh;
    border-bottom: 2px solid #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
}
.jumbotron-heading {
    font-family: 'Philosopher', serif;
    font-size: 3.5rem;
    color: #FFD700;
    margin-top: 30px;
    text-align: center; /* Centrado */
}
.text-shadow-deep {
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9) !important;
}
.lead {
    color: #e0e0e0;
    font-size: 1.3rem;
    text-align: center; /* Centrado */
}
.handwritten {
    font-family: 'Caveat', cursive;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    text-align: center; /* Centrado */
}
.poem-text {
    font-size: 1.25rem;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.2); /* Súper transparente para que se vea la imagen */
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(5px); /* Desenfoque suave para legibilidad */
    text-align: left;
    display: inline-block;
    max-width: 90%;
    margin-bottom: 50px;
}
.signature {
    color: #FFD700; /* Color resaltado para la firma */
    font-weight: bold;
    font-style: italic;
    display: block;
    margin-top: 20px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}
.stanza {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.2s ease;
}
.stanza.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Soporte RTL para árabe */
body.rtl {
    direction: rtl;
}
body.rtl .handwritten, 
body.rtl .poem-text, 
body.rtl .stanza {
    text-align: right !important;
}

@media (max-width: 768px) {
    .jumbotron-heading { font-size: 2.2rem; }
    .poem-text { font-size: 1.1rem; padding: 20px; width: 95%; }
}

.btn-spotify:hover {
    background: #1ed760 !important;
    transform: scale(1.05);
}
