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

.hero-section {
    font-family: 'Electrolize', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d35 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 0 60px;
    position: relative;
}

.hero-section::after {
    pointer-events: none;
}

.hero-section::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-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ---- Card ------------------------------------------------- */
.privacy-card {
    margin: 0 auto;
    max-width: 980px;
    width: 100%;
    background: rgba(10, 10, 20, 0.65);
    border: 1px solid rgba(0, 217, 255, 0.25);
}

/* Status bar */
.privacy-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    background: rgba(0, 217, 255, 0.05);
    font-size: 0.65rem;
    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);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    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: 36px 40px 28px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-doc-tag {
    font-size: 0.65rem;
    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.65rem;
    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.8rem;
    color: rgba(184, 184, 200, 0.7);
    margin: 0;
    letter-spacing: 0.3px;
}

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

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

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

/* Section headings */
.privacy-heading-1 {
    font-family: 'Electrolize', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #00d9ff;
    margin: 0 0 6px;
    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.82rem;
    font-weight: 700;
    color: #00ff41;
    margin: 8px 0 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.3);
}

/* Body text */
.privacy-body p {
    font-size: 0.88rem;
    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;
    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);
}

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

.privacy-list li {
    font-size: 0.88rem;
    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.75rem;
    text-shadow: 0 0 6px rgba(0, 217, 255, 0.4);
}

/* ---- Document footer ------------------------------------- */
.privacy-doc-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    border-top: 1px solid rgba(0, 217, 255, 0.15);
    font-size: 0.7rem;
    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;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 700px) {
    .privacy-doc-header,
    .privacy-body,
    .privacy-doc-footer {
        padding-left: 22px;
        padding-right: 22px;
    }

    .privacy-title {
        font-size: 1.35rem;
    }

    .privacy-status-bar {
        font-size: 0.6rem;
        padding: 7px 12px;
    }

    .status-meta {
        display: none;
    }

    .hero-section {
        padding: 20px 0 40px;
    }
}
