.disclosure-container {
    position: relative;
    max-width: 1400px;
    margin: 60px auto;
    padding: 40px 20px;
    overflow: hidden;
}

.disclosure-container::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80"><path fill="%23f8f9fa" fill-opacity="1" d="M0,64L80,58.7C160,53,320,43,480,42.7C640,43,800,53,960,58.7C1120,64,1280,64,1360,64L1440,64L1440,100L1360,100C1280,100,1120,100,960,100C800,100,640,100,480,100C320,100,160,100,80,100L0,100Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.novel-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.text-content {
    flex: 1 1 45%;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInRight 1s ease forwards 0.5s;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #333;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease forwards 0.3s;
}

h1::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.6s;
}

.paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

.image-container {
    flex: 1 1 45%;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInLeft 1s ease forwards 0.7s;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .main-image {
    transform: scale(1.05);
}

.decor-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    z-index: 1;
    opacity: 0;
}

.decor-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: fadeIn 1.2s ease forwards 1s;
}

.decor-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: fadeIn 1.2s ease forwards 1.2s;
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 响应式调整 */
@media (max-width: 992px) {
    .novel-layout {
        flex-direction: column;
    }

    .text-content,
    .image-container {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .text-content {
        padding: 20px;
    }
}
