.terms-header {
    background: linear-gradient(180deg, rgba(10, 26, 42, 0.9) 0%, rgba(5, 15, 23, 0.95) 100%);
    border-bottom: 1px solid var(--vault-accent);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.terms-header::before {
    content: 'LEGAL DOCUMENT';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0, 240, 255, 0.03);
    white-space: nowrap;
    z-index: 0;
    font-family: 'Roboto Mono', monospace;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.document-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-family: 'Roboto Mono', monospace;
    color: var(--vault-silver);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--vault-border);
    padding-bottom: 1rem;
}

.clause {
    margin-bottom: 2.5rem;
    counter-increment: clause-counter;
}

.clause::before {
    content: counter(clause-counter) '.';
    font-family: 'Roboto Mono', monospace;
    color: var(--vault-accent);
    margin-right: 0.5rem;
    font-weight: bold;
}

.clause-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--vault-accent);
    display: flex;
    align-items: center;
}

.clause-title i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.highlight-box {
    background: rgba(10, 26, 42, 0.5);
    border-left: 3px solid var(--vault-accent);
    padding: 1.5rem;
    margin: 2rem 0;
}

.prohibited-list {
    list-style-type: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.prohibited-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.prohibited-list li::before {
    content: '✖';
    position: absolute;
    left: 0;
    color: #ff5555;
}

.legal-notice {
    background: rgba(255, 85, 85, 0.1);
    border: 1px solid #ff5555;
    padding: 1.5rem;
    margin: 3rem 0;
    position: relative;
}

.legal-notice::before {
    content: 'LEGAL NOTICE';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--vault-bg);
    padding: 0 10px;
    font-size: 0.8rem;
    color: #ff5555;
    font-family: 'Roboto Mono', monospace;
}

.seo-transition {
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.1) 0%, rgba(10, 26, 42, 0.7) 100%);
    padding: 2rem;
    margin: 4rem 0;
    border-left: 3px solid var(--vault-accent);
    position: relative;
}

.seo-transition::before {
    content: 'SYSTEM OVERRIDE';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--vault-bg);
    padding: 0 10px;
    font-size: 0.8rem;
    color: var(--vault-accent);
    font-family: 'Roboto Mono', monospace;
}

.document-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--vault-border);
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    color: var(--vault-silver);
}

.seo-transition div{
    text-align: center; margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .terms-header::before {
        font-size: 20vw;
    }
    
    .terms-container {
        padding: 1.5rem;
    }
    
    .document-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}