/* 信息差区块 */
.secret-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--bg-dark), rgba(0, 210, 106, 0.05), var(--bg-dark));
    position: relative;
    overflow: hidden;
}

.secret-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 210, 106, 0.3), transparent);
}

.secret-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.secret-badge {
    display: inline-block;
    background: rgba(0, 210, 106, 0.1);
    color: var(--matrix-green);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 210, 106, 0.3);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 210, 106, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(0, 210, 106, 0); }
}

.secret-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.4;
}

.secret-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--matrix-green), transparent);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.secret-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 35px;
}

.secret-text p {
    margin-bottom: 15px;
}

.secret-text .highlight {
    color: var(--matrix-green);
    font-weight: 600;
}

.secret-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.secret-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.secret-arrow {
    font-size: 2rem;
    color: var(--matrix-green);
    animation: bounce-down 1.5s infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.6; }
}

.secret-hint {
    font-size: 1rem;
    color: var(--matrix-green);
    font-weight: 500;
}

@media (max-width: 768px) {
    .secret-title {
        font-size: 1.7rem;
    }
    
    .secret-text {
        font-size: 1rem;
    }
}