/* Privacy Policy Specific Styles */
.privacy-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;
}

.privacy-header::before {
    content: 'DATA PROTOCOLS';
    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;
}

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

.privacy-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;
}

.privacy-section {
    margin-bottom: 3rem;
    counter-increment: section;
}

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

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

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

.data-flow {
    background: rgba(10, 26, 42, 0.5);
    border: 1px solid var(--vault-border);
    padding: 1.5rem;
    margin: 2rem 0;
}

.data-diagram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.data-node {
    background: rgba(0, 240, 255, 0.1);
    border: 1px dashed var(--vault-accent);
    padding: 1rem;
    text-align: center;
    position: relative;
}

.data-node::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vault-accent);
}

.data-node:last-child::after {
    display: none;
}

.encryption-badge {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--vault-accent);
    padding: 0.5rem 1rem;
    display: inline-block;
    margin: 1rem 0;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
}

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

.data-types li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.data-types li::before {
    content: '⌲';
    position: absolute;
    left: 0;
    color: var(--vault-accent);
}

.no-log {
    background: rgba(255, 85, 85, 0.1);
    border-left: 3px solid #ff5555;
    padding: 1.5rem;
    margin: 2rem 0;
}

.no-log-title {
    color: #ff5555;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.compliance-item {
    background: rgba(10, 26, 42, 0.5);
    border: 1px solid var(--vault-border);
    padding: 1.5rem;
}

.compliance-item h4 {
    color: var(--vault-accent);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.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);
}

.document-footer a {
    color: var(--vault-accent);
}
table {
    width: 100%; border-collapse: collapse; margin: 1rem 0; font-family: 'Roboto Mono', monospace;
}
thead tr, tbody tr:not(:last-child) {
    border-bottom: 1px solid var(--vault-border);
}
thead th {
    text-align: left; padding: 0.5rem;
}
tbody td {
    padding: 0.5rem;
}
@media (max-width: 768px) {
    .privacy-header::before {
        font-size: 20vw;
    }
    
    .privacy-container {
        padding: 1.5rem;
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .data-diagram {
        grid-template-columns: 1fr;
    }
    
    .data-node::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -15px;
        transform: translateX(50%);
    }
}