/* 爱情独白模块 */
.love-monologue {
    margin: 10px 0;
    animation: fadeIn 3s ease-in;
}

.monologue-header {
    text-align: center;
    margin-bottom: 10px;
}

.monologue-subtitle {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    color: #fff;
    animation: fadeIn 2s ease-in;
}

.monologue-container {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
}

.monologue-card {
    background: transparent;
    border-radius: 0;
    padding: 30px 25px;
    box-shadow: none;
    border: none;
    transition: none;
    animation: none;
    opacity: 1;
}

.monologue-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
    background: transparent;
}

.monologue-greeting {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ff6b9d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 107, 157, 0.6);
    animation: pulse-scale 2s ease-in-out infinite alternate;
    font-family: 'Noto Serif SC', serif;
}

.monologue-card .monologue-content p {
    font-size: 1.2rem;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
    text-align: left;
    text-indent: 2em;
    color: #ffe4e1;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    font-family: 'Noto Serif SC', serif;
}

.monologue-card .monologue-content p:nth-child(2) { animation-delay: 0.2s; }
.monologue-card .monologue-content p:nth-child(3) { animation-delay: 0.4s; }
.monologue-card .monologue-content p:nth-child(4) { animation-delay: 0.6s; }
.monologue-card .monologue-content p:nth-child(5) { animation-delay: 0.8s; }
.monologue-card .monologue-content p:nth-child(6) { animation-delay: 1s; }
.monologue-card .monologue-content p:nth-child(7) { animation-delay: 1.2s; }
.monologue-card .monologue-content p:nth-child(8) { animation-delay: 1.4s; }
.monologue-card .monologue-content p:nth-child(9) { animation-delay: 1.6s; }
.monologue-card .monologue-content p:nth-child(10) { animation-delay: 1.8s; }

.monologue-signature {
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 15px;
    color: #ff6b9d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 107, 157, 0.6);
    font-style: italic;
    animation: pulse-scale 2s ease-in-out infinite;
    letter-spacing: 1px;
    animation-delay: 2s;
    font-family: 'Noto Serif SC', serif;
}
