/* ====== RESET & BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #111127;
    --bg-card: rgba(22, 22, 50, 0.8);
    --bg-card-hover: rgba(30, 30, 70, 0.9);
    --text-primary: #e8e8f0;
    --text-secondary: #8888aa;
    --text-muted: #555577;
    --accent: #00d4ff;
    --accent-dim: rgba(0, 212, 255, 0.15);
    --accent2: #7b2cf5;
    --accent2-dim: rgba(123, 44, 245, 0.15);
    --danger: #ff4466;
    --danger-dim: rgba(255, 68, 102, 0.15);
    --success: #00ff88;
    --success-dim: rgba(0, 255, 136, 0.15);
    --warning: #ffaa00;
    --warning-dim: rgba(255, 170, 0, 0.15);
    --border: rgba(255, 255, 255, 0.06);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ====== BACKGROUND ANIMATION ====== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(123, 44, 245, 0.04) 0%, transparent 50%);
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-2%, -2%) scale(1.05);
    }
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.matrix-column {
    position: absolute;
    top: -100%;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--accent);
    writing-mode: vertical-rl;
    animation: matrixFall linear infinite;
    opacity: 0.7;
}

@keyframes matrixFall {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(calc(100vh + 100%));
    }
}

/* ====== LAYOUT ====== */
#app {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 16px;
    padding-bottom: 100px;
}

.section {
    margin-bottom: 20px;
}

.hidden {
    display: none !important;
}

/* ====== HEADER ====== */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

.logo-text {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.user-info {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: right;
}

.btn-back-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.btn-back-link:hover {
    opacity: 0.8;
}

/* ====== SECTION HEADERS ====== */
.section-header {
    text-align: center;
    margin-bottom: 24px;
}

.badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    background: var(--accent-dim);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ====== PLATFORM CARDS ====== */
.platforms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}



.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: var(--text-primary);
    font-family: var(--font-main);
    backdrop-filter: blur(10px);
}

.platform-card:hover,
.platform-card:active {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.1);
}

.platform-card.hit {
    border-color: rgba(255, 170, 0, 0.4);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.08), var(--bg-card));
}

.platform-card.hit:hover {
    border-color: var(--warning);
    box-shadow: 0 8px 24px rgba(255, 170, 0, 0.15);
}

.hit-badge {
    position: absolute;
    top: 8px;
    right: -24px;
    background: linear-gradient(135deg, #ff6600, #ffaa00);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 28px;
    transform: rotate(35deg);
    box-shadow: 0 2px 8px rgba(255, 170, 0, 0.4);
    z-index: 2;
}

.platform-icon {
    margin-bottom: 12px;
}

.platform-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.platform-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ====== SEARCH ====== */
.search-box {
    margin-bottom: 16px;
}

.search-input {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.search-input::placeholder {
    color: var(--text-muted);
}

/* ====== BUTTONS ====== */
.btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.btn-full {
    width: 100%;
}

.btn-admin {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: var(--accent2-dim);
    color: var(--accent2);
    border: 1px solid rgba(123, 44, 245, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-admin:hover {
    background: rgba(123, 44, 245, 0.25);
    transform: translateY(-1px);
}

.admin-link {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 448px;
    z-index: 10;
}

/* ====== SCANNING ====== */
.scan-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    backdrop-filter: blur(10px);
}

.scan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.scan-header h2 {
    font-family: var(--font-mono);
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--accent);
}

.scan-pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
}

.scan-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.scan-step.active {
    color: var(--accent);
}

.scan-step.done {
    color: var(--success);
}

.scan-step-icon {
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.scan-progress {
    margin-top: 20px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.scan-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.scan-percent {
    text-align: center;
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

/* ====== RESULTS ====== */
.results-container {
    margin-bottom: 16px;
}

.result-header {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.result-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    margin-bottom: 12px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.result-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.result-username {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent);
}

.result-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

.result-badge.online {
    background: var(--success-dim);
    color: var(--success);
}

.result-badge.offline {
    background: var(--danger-dim);
    color: var(--danger);
}

.result-badge.verified {
    background: var(--accent-dim);
    color: var(--accent);
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.result-card h3 {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 13px;
    color: var(--text-secondary);
    flex-shrink: 0;
    margin-right: 12px;
}

.result-value {
    font-size: 13px;
    font-weight: 500;
    text-align: right;
    word-break: break-word;
}

/* Analysis */
.analysis-card {
    background: var(--bg-card);
    border: 1px solid var(--danger);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.analysis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--danger-dim), transparent);
    pointer-events: none;
}

.analysis-card h3 {
    position: relative;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--danger);
    margin-bottom: 16px;
}

.meter {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.meter-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.meter-fill.low {
    background: var(--success);
}

.meter-fill.medium {
    background: var(--warning);
}

.meter-fill.high {
    background: var(--danger);
}

.meter-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 4px;
}

.meter-label span:first-child {
    color: var(--text-secondary);
}

.meter-label span:last-child {
    font-family: var(--font-mono);
    font-weight: 600;
}

.risk-factors {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.risk-factor {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--warning);
}

.risk-factor::before {
    content: '⚠️';
    font-size: 12px;
}

/* ====== ADMIN PANEL ====== */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-card.accent {
    border-color: rgba(0, 212, 255, 0.2);
    background: var(--accent-dim);
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 12px;
    backdrop-filter: blur(10px);
}

.admin-card h3 {
    font-size: 15px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.platform-stats {
    display: flex;
    gap: 12px;
}

.platform-stat {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.platform-stat-value {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}

.platform-stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Chart */
.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 120px;
    padding: 8px 0;
}

.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    min-height: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent2));
    border-radius: 3px 3px 0 0;
    transition: height 0.5s ease;
}

.chart-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-muted);
    margin-top: 4px;
    transform: rotate(-45deg);
    white-space: nowrap;
}

.chart-value {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

/* Broadcast */
.broadcast-input {
    width: 100%;
    padding: 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 14px;
    resize: vertical;
    outline: none;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.broadcast-input:focus {
    border-color: var(--accent);
}

.broadcast-result {
    margin-top: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 13px;
    text-align: center;
}

.broadcast-result.success {
    background: var(--success-dim);
    color: var(--success);
}

.broadcast-result.error {
    background: var(--danger-dim);
    color: var(--danger);
}

.broadcast-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.broadcast-item:last-child {
    border-bottom: none;
}

.broadcast-item-date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
}

.broadcast-item-stats {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    margin-top: 4px;
}

/* Table */
.table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.admin-table th {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 8px 6px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table td {
    padding: 8px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* ====== LOADING ====== */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 40px auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error card */
.error-card {
    background: var(--bg-card);
    border: 1px solid var(--danger);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
}

.error-card h2 {
    color: var(--danger);
    margin-bottom: 8px;
}

.error-card p {
    color: var(--text-secondary);
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section:not(.hidden) {
    animation: fadeIn 0.3s ease-out;
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 2px;
}

/* ====== UTILITIES ====== */
.text-accent {
    color: var(--accent);
}

.text-danger {
    color: var(--danger);
}

.text-success {
    color: var(--success);
}

.text-warning {
    color: var(--warning);
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

/* Profile link */
.profile-link {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: var(--accent-dim);
    color: var(--accent);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.profile-link:hover {
    background: rgba(0, 212, 255, 0.25);
}

/* No-token notice */
.no-token-notice {
    background: var(--warning-dim);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 12px;
    color: var(--warning);
    margin-bottom: 12px;
    text-align: center;
}

/* ====== FOUND BADGE ====== */
.result-found-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 16px;
    background: var(--success-dim);
    color: var(--success);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ====== BLURRED CONTENT ====== */
.blurred-section {
    position: relative;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    transition: filter 0.5s ease;
}

.blurred-section.revealed {
    filter: none;
    -webkit-filter: none;
    user-select: auto;
    -webkit-user-select: auto;
    pointer-events: auto;
}

/* ====== LEAKED DATA ALERTS ====== */
.leaked-alerts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.leaked-alert {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    animation: leakedPulse 2.5s ease-in-out infinite;
}

.leaked-photos {
    background: linear-gradient(135deg, rgba(255, 68, 102, 0.12), rgba(255, 68, 102, 0.04));
    border: 1px solid rgba(255, 68, 102, 0.35);
    box-shadow: 0 0 20px rgba(255, 68, 102, 0.08);
}

.leaked-videos {
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.12), rgba(255, 170, 0, 0.04));
    border: 1px solid rgba(255, 170, 0, 0.35);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.08);
}

.leaked-links {
    background: linear-gradient(135deg, rgba(123, 44, 245, 0.12), rgba(123, 44, 245, 0.04));
    border: 1px solid rgba(123, 44, 245, 0.35);
    box-shadow: 0 0 20px rgba(123, 44, 245, 0.08);
}

@keyframes leakedPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 68, 102, 0.06);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 68, 102, 0.12);
    }
}

.leaked-alert-icon {
    font-size: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.leaked-alert-info {
    flex: 1;
    min-width: 0;
}

.leaked-alert-title {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.leaked-alert-desc {
    font-size: 11px;
    color: var(--text-muted);
}

.leaked-alert-count {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    min-width: 50px;
    text-align: center;
}

.leaked-photos .leaked-alert-count {
    color: var(--danger);
    text-shadow: 0 0 12px rgba(255, 68, 102, 0.5);
}

.leaked-videos .leaked-alert-count {
    color: var(--warning);
    text-shadow: 0 0 12px rgba(255, 170, 0, 0.5);
}

.leaked-links .leaked-alert-count {
    color: var(--accent2);
    text-shadow: 0 0 12px rgba(123, 44, 245, 0.5);
}

/* ====== PHOTOS GRID ====== */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.photo-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ====== TAGS ====== */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.tag-accent {
    background: var(--accent-dim);
    color: var(--accent);
    border-color: rgba(0, 212, 255, 0.25);
}

.tag-blue {
    background: rgba(41, 182, 246, 0.12);
    color: #29B6F6;
    border-color: rgba(41, 182, 246, 0.25);
}

.tag-green {
    background: var(--success-dim);
    color: var(--success);
    border-color: rgba(0, 255, 136, 0.25);
}

.tag-pink {
    background: rgba(255, 68, 136, 0.12);
    color: #ff4488;
    border-color: rgba(255, 68, 136, 0.25);
}

/* ====== PHONE RESULT PLACEHOLDER ====== */
.result-photo-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 3px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 12px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* ====== LOCKED PHOTOS GRID ====== */
.locked-photos-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
}

.locked-photos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.locked-photos-header h3 {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: 0.5px;
}

.locked-photos-badge {
    font-size: 11px;
    color: var(--danger);
    background: rgba(255,68,102,0.1);
    border: 1px solid rgba(255,68,102,0.3);
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.locked-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.locked-photo-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.locked-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(12px);
    transform: scale(1.1);
}

.locked-photo-fake {
    width: 100%;
    height: 100%;
    filter: blur(8px) saturate(1.2) brightness(0.95);
    transform: scale(1.15);
    background-size: cover;
}

.locked-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 30, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.locked-photo-lock {
    font-size: 22px;
    opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.5));
}

.locked-photos-hint {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
    padding: 6px;
    background: rgba(255,68,102,0.06);
    border-radius: 6px;
    border: 1px dashed rgba(255,68,102,0.2);
}

/* ====== BLUR DATA (phone inaccurate fields) ====== */
.blur-data {
    filter: blur(6px);
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    display: inline-block;
    position: relative;
}

.blur-data-sm {
    filter: blur(4px);
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    display: inline-block;
}

/* ====== PROMO BANNER ====== */
.promo-banner {
    background: linear-gradient(135deg, rgba(123,44,245,0.12), rgba(0,212,255,0.08));
    border: 1px solid rgba(123,44,245,0.25);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    margin-top: 20px;
}

.promo-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.promo-title {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.promo-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.promo-text strong {
    color: var(--accent);
}

.promo-features {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 11px;
    color: var(--text-muted);
}

.promo-features span {
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.15);
    padding: 4px 10px;
    border-radius: 20px;
}

/* ====== PAYWALL ====== */
.paywall {
    margin-top: 8px;
    position: relative;
    z-index: 5;
    padding-top: 0;
}

.paywall-card {
    background: linear-gradient(135deg, rgba(22, 22, 50, 0.95), rgba(15, 15, 40, 0.98));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5), 0 8px 32px rgba(0, 212, 255, 0.1);
}

.paywall-lock {
    font-size: 48px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.4));
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.paywall-title {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.paywall-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.paywall-price-box {
    background: var(--accent-dim);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 20px;
}

.paywall-price {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.paywall-price-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 1px;
}

.btn-pay {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, #00c853, #00b248);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.3);
    margin-bottom: 20px;
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.4);
}

.btn-pay:active {
    transform: translateY(0);
}

.paywall-features {
    text-align: left;
    padding: 0 8px;
}

.paywall-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.pf-icon {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.paywall-secure {
    margin-top: 16px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.paywall-bonus {
    background: linear-gradient(135deg, rgba(0, 212, 100, 0.15), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(0, 212, 100, 0.4);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: bonusPulse 2s ease-in-out infinite;
}

@keyframes bonusPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 212, 100, 0.1); }
    50% { box-shadow: 0 0 20px rgba(0, 212, 100, 0.25); }
}

.paywall-bonus-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.paywall-bonus-text {
    font-size: 13px;
    color: #6feca0;
    line-height: 1.4;
}

.paywall-bonus-text strong {
    color: #4fffb0;
    font-size: 15px;
}

/* ====== ADMIN UNLOCK BUTTON ====== */
.btn-admin-unlock {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.15), rgba(255, 170, 0, 0.05));
    border: 1px dashed rgba(255, 170, 0, 0.5);
    border-radius: var(--radius-sm);
    color: #ffaa00;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-admin-unlock:hover {
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.25), rgba(255, 170, 0, 0.1));
    box-shadow: 0 0 15px rgba(255, 170, 0, 0.15);
}

/* ====== UPSELL BLOCK ====== */
.upsell-block {
    margin-top: 20px;
}

.deep-blurred-section {
    filter: blur(6px);
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.deep-blurred-section.revealed {
    filter: none;
    user-select: auto;
    -webkit-user-select: auto;
    pointer-events: auto;
    opacity: 1;
}

.upsell-paywall {
    margin-top: 16px;
    position: relative;
    z-index: 5;
}

.upsell-paywall-card {
    background: linear-gradient(135deg, rgba(22, 22, 50, 0.95), rgba(15, 15, 40, 0.98));
    border: 1px solid rgba(255, 170, 0, 0.25);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(255, 170, 0, 0.08);
}

.upsell-lock {
    font-size: 36px;
    margin-bottom: 8px;
}

.upsell-title {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: #ffaa00;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upsell-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.upsell-price-box {
    background: rgba(255, 170, 0, 0.08);
    border: 1px solid rgba(255, 170, 0, 0.2);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 16px;
}

.upsell-price {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: #ffaa00;
    text-shadow: 0 0 15px rgba(255, 170, 0, 0.3);
}

.upsell-price-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.upsell-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.upsell-features span {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255, 170, 0, 0.06);
    border: 1px solid rgba(255, 170, 0, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
}

/* ====== ADMIN TABS ====== */
.admin-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 4px;
    border: 1px solid var(--border);
}

.admin-tab {
    flex: 1;
    padding: 10px 8px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.admin-tab.active {
    background: var(--accent-dim);
    color: var(--accent);
}

.admin-tab:hover:not(.active) {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* Settings form */
.settings-group {
    margin-bottom: 20px;
}

.settings-group-title {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.settings-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.settings-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.settings-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.settings-input:focus {
    border-color: var(--accent);
}

.settings-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 2px;
    top: 2px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all 0.3s;
}

.toggle-switch input:checked+.toggle-slider {
    background: var(--accent-dim);
    border-color: var(--accent);
}

.toggle-switch input:checked+.toggle-slider::before {
    transform: translateX(20px);
    background: var(--accent);
}

/* Top entries */
.top-entry {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.top-entry:last-child {
    border-bottom: none;
}

.top-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-dim);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.top-name {
    flex: 1;
    font-size: 13px;
    color: var(--text-secondary);
}

.top-count {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* Empty state */
.empty-msg {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    padding: 20px 0;
}

/* ====== CUSTOM TOAST NOTIFICATION ====== */
.toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.toast-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.toast-card {
    background: linear-gradient(135deg, rgba(20, 20, 45, 0.98), rgba(12, 12, 35, 0.99));
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 16px;
    padding: 28px 24px 20px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 136, 0.05);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-overlay.active .toast-card {
    transform: scale(1) translateY(0);
}

.toast-icon {
    font-size: 44px;
    margin-bottom: 16px;
    line-height: 1;
}

.toast-message {
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 24px;
    white-space: pre-line;
    font-weight: 500;
}

.toast-close {
    background: #00ff88;
    color: #000000;
    border: none;
    border-radius: 10px;
    padding: 12px 40px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.35);
}

.toast-close:active {
    transform: scale(0.96);
    background: #00cc6e;
}