/* 神秘信息区域 */
.mystery-message {
    padding: 150px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    min-height: 60vh;
}

.mystery-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.message-content p {
    font-size: 32px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    letter-spacing: 2px;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    text-shadow: 0 0 20px rgba(255, 182, 193, 0.3);
}

.message-content p:nth-child(1) { animation-delay: 0.3s; }
