/* ==========================================================================
   Terracraft Agreement (agreement.html) Specific Overrides
   ========================================================================== */

@keyframes legalEntrance {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered delay for standard legal clauses */
.docs-main section {
    opacity: 0;
    animation: legalEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.docs-main section:nth-child(1) { animation-delay: 0.1s; }
.docs-main section:nth-child(2) { animation-delay: 0.2s; }
.docs-main section:nth-child(3) { animation-delay: 0.3s; }
.docs-main section:nth-child(4) { animation-delay: 0.4s; }
.docs-main section:nth-child(5) { animation-delay: 0.5s; }

/* Interactive Hover state */
.docs-main section {
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.docs-main section:hover {
    background: rgba(16, 185, 129, 0.02);
    border-color: rgba(16, 185, 129, 0.1);
}

/* Warnings and Disclaimers pulsating glow */
@keyframes glowPulse {
    0% { border-color: rgba(16, 185, 129, 0.2); }
    50% { border-color: rgba(16, 185, 129, 0.5); }
    100% { border-color: rgba(16, 185, 129, 0.2); }
}

.info-box {
    animation: glowPulse 3s infinite ease-in-out;
}