/* ==========================================================================
   Terracraft Privacy Policy (privacy.html) Specific Overrides
   ========================================================================== */

@keyframes legalEntrance {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base state: Hide until animation starts */
.docs-main section {
    opacity: 0;
    animation: legalEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered animation delay for each section (AAA Premium feeling) */
.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; }
.docs-main section:nth-child(6) { animation-delay: 0.6s; }
.docs-main section:nth-child(7) { animation-delay: 0.7s; }
.docs-main section:nth-child(8) { animation-delay: 0.8s; }

/* Interactive Hover state for readability */
.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); /* Subtle glow on current reading section */
    border-color: rgba(16, 185, 129, 0.1);
}