@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');

.privacy-main {
    font-family: 'Electrolize', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d35 100%);
    padding: 24px 0 60px;
    position: relative;
}

.privacy-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 217, 255, 0.025) 0px,
        transparent 2px,
        transparent 4px,
        rgba(0, 217, 255, 0.025) 6px
    );
    pointer-events: none;
    z-index: 0;
}

.privacy-container {
    width: 100%;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

/* ---- Card ---- */
.privacy-card {
    width: 100%;
    background: rgba(10, 14, 39, 0.65);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 8px;
    overflow: hidden;
}

/* ---- Status bar ---- */
.privacy-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    background: rgba(0, 217, 255, 0.05);
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.status-bar-left,
.status-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff41;
    box-shadow: 0 0 8px rgba(0, 255, 65, 0.7);
    flex-shrink: 0;
    animation: privacyPulse 2s ease-in-out infinite;
}

@keyframes privacyPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.status-label {
    color: #00ff41;
    font-weight: 700;
}

.status-meta {
    color: rgba(0, 217, 255, 0.6);
    font-weight: 700;
}

/* ---- Document header ---- */
.privacy-doc-header {
    padding: 24px 18px 20px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.privacy-doc-tag {
    font-size: 0.62rem;
    font-weight: 700;
    color: #00ff41;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.35);
}

.privacy-title {
    font-family: 'Electrolize', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #e8f6ff;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 0 12px rgba(0, 217, 255, 0.2);
}

.privacy-subtitle {
    font-size: 0.78rem;
    color: rgba(184, 184, 200, 0.7);
    margin: 0;
}

/* ---- Document body ---- */
.privacy-body {
    padding: 0 18px 28px;
    display: flex;
    flex-direction: column;
}

.privacy-section {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-heading-1 {
    font-family: 'Electrolize', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #00d9ff;
    margin: 0 0 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.3);
}

.privacy-section-num {
    color: rgba(0, 217, 255, 0.5);
    margin-right: 4px;
}

.privacy-heading-2 {
    font-family: 'Electrolize', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #00ff41;
    margin: 4px 0 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.3);
}

.privacy-body p {
    font-size: 0.84rem;
    color: #b8b8c8;
    line-height: 1.75;
    margin: 0;
}

.privacy-body strong {
    color: #e8f6ff;
    font-weight: 700;
}

.privacy-body em {
    color: rgba(184, 184, 200, 0.85);
}

.privacy-body a {
    color: #00d9ff;
    text-decoration: none;
    font-weight: 700;
    word-break: break-all;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.privacy-body a:hover {
    color: #00ff41;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
}

.privacy-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-list li {
    font-size: 0.84rem;
    color: #b8b8c8;
    line-height: 1.75;
    padding-left: 18px;
    position: relative;
}

.privacy-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 2px;
    color: #00d9ff;
    font-size: 0.72rem;
    text-shadow: 0 0 6px rgba(0, 217, 255, 0.4);
}

/* ---- Document footer ---- */
.privacy-doc-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-top: 1px solid rgba(0, 217, 255, 0.15);
    font-size: 0.65rem;
    color: rgba(184, 184, 200, 0.7);
    letter-spacing: 0.5px;
}

.privacy-footer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff00ff;
    box-shadow: 0 0 6px rgba(255, 0, 255, 0.6);
    flex-shrink: 0;
}
