* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: #0a0a0a;
    color: #ccc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 60px;
}

.priv-header {
    background: #111;
    border-bottom: 1px solid #1e1e1e;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.priv-back {
    color: #ee8a04;
    text-decoration: none;
    font-size: 22px;
    line-height: 1;
    padding: 4px 8px 4px 2px;
    flex-shrink: 0;
}

.priv-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.priv-subtitle {
    color: #555;
    font-size: 10px;
    margin-top: 1px;
}

/* ---- TAB BAR ---- */
.priv-tabs {
    display: flex;
    background: #111;
    position: sticky;
    top: 57px;
    z-index: 99;
    padding: 10px 12px;
    gap: 8px;
    border-bottom: 1px solid #1a1a1a;
}

.priv-tab {
    flex: 1;
    padding: 9px 6px;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid #1e1e1e;
    background: #161616;
    text-align: center;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
    letter-spacing: 0.1px;
    line-height: 1.3;
}

.priv-tab.active {
    color: #fff;
    background: #ee8a04;
    border-color: #ee8a04;
}

.priv-tab:not(.active):active {
    background: #1e1e1e;
}

.priv-panel {
    display: none;
    padding: 18px 16px 40px;
    max-width: 720px;
    margin: 0 auto;
}

.priv-panel.active { display: block; }

.priv-section {
    margin-bottom: 28px;
}

.priv-section h2 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #1e1e1e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.priv-section h2 .sec-num {
    background: rgba(238,138,4,0.15);
    color: #ee8a04;
    font-size: 11px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.priv-section p {
    color: #aaa;
    margin-bottom: 8px;
    font-size: 13px;
}

.priv-section ul {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.priv-section ul li {
    color: #aaa;
    font-size: 13px;
    padding: 5px 0 5px 16px;
    position: relative;
    border-bottom: 1px solid #141414;
}

.priv-section ul li:last-child { border-bottom: none; }

.priv-section ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ee8a04;
}

.priv-section ul li strong {
    color: #ddd;
    font-weight: 600;
}

.priv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.priv-table th {
    background: #1a1a1a;
    color: #ee8a04;
    font-weight: 700;
    padding: 8px 10px;
    text-align: left;
    border: 1px solid #222;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.priv-table td {
    padding: 8px 10px;
    border: 1px solid #1a1a1a;
    color: #999;
    vertical-align: top;
}

.priv-table tr:nth-child(even) td { background: #0d0d0d; }

.priv-highlight {
    background: rgba(238,138,4,0.08);
    border: 1px solid rgba(238,138,4,0.2);
    border-radius: 10px;
    padding: 14px 16px;
    margin: 12px 0;
}

.priv-highlight p {
    color: #cc9a3d;
    font-size: 12px;
    margin: 0;
}

.priv-highlight strong { color: #ee8a04; }

.priv-contact-box {
    background: #161616;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 16px;
    margin: 10px 0;
}

.priv-contact-box p { margin: 4px 0; font-size: 13px; }

.priv-contact-box a { color: #ee8a04; text-decoration: none; }

.priv-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #1a1a1a;
}

.priv-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: 12px;
}

.priv-rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 10px 0;
}

@media (max-width: 480px) {
    .priv-rights-grid { grid-template-columns: 1fr; }
    .priv-panel { padding: 14px 12px 40px; }
    .priv-section h2 { font-size: 14px; }
    .priv-tab { font-size: 10px; padding: 8px 4px; }
}

.priv-right-card {
    background: #141414;
    border: 1px solid #1e1e1e;
    border-radius: 10px;
    padding: 12px;
}

.priv-right-card .right-icon {
    font-size: 18px;
    margin-bottom: 6px;
}

.priv-right-card .right-name {
    color: #ee8a04;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.priv-right-card .right-desc {
    color: #777;
    font-size: 11px;
    line-height: 1.5;
}

.priv-date {
    color: #444;
    font-size: 11px;
    text-align: right;
    margin-top: 30px;
}

.priv-date a { color: #444; }
