* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --bg-input: #2a2a2a;
    --bg-header: #0a0a0a;
    --red: #c62828;
    --red-light: #ef5350;
    --red-glow: rgba(198, 40, 40, 0.3);
    --white: #ffffff;
    --gray: #9e9e9e;
    --border: #333333;
}
body {
    font-family: "Exo 2", -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
}
.container { max-width: 420px; width: 100%; min-height: 100vh; display: flex; flex-direction: column; }

/* Header */
.header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-left, .header-right { display: flex; align-items: center; gap: 10px; }
.header-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s;
}
.header-btn:hover { border-color: var(--red); box-shadow: 0 0 15px var(--red-glow); }
.burger-btn span { display: block; width: 18px; height: 2px; background: var(--white); border-radius: 2px; }
.header-logo {
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 29px;
    font-weight: 800;
    letter-spacing: 2px;
}
.logo-img { height: 37px; width: auto; filter: drop-shadow(0 0 12px var(--red-glow)); }
.logo-accent { color: var(--red); }

/* Content */
.search-box, .results, .loading, .not-found { margin: 0 16px; }
.search-box { margin-top: 15px; margin-bottom: 15px; display: flex; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.search-box input { flex: 1; background: transparent; border: none; color: var(--white); font-size: 15px; padding: 10px 16px; outline: none; font-family: "Exo 2", sans-serif; }
.search-box input::placeholder { color: var(--gray); }
.btn-search {
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 0;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 14px;
    font-family: "Exo 2", sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px var(--red-glow);
    transition: all 0.2s;
}
.btn-search:hover { background: var(--red-light); }
.btn-search:active { transform: scale(0.98); }

/* Profile */
.profile-center { text-align: center; padding: 20px 0; }
.avatar-big { width: 165px; height: 165px; border-radius: 12px; margin: 0 auto 20px; object-fit: cover; border: 3px solid var(--red); box-shadow: 0 0 30px var(--red-glow); }
.avatar-big.vip { border-color: #ffd700; box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
.avatar-big.safe { border-color: #4caf50; box-shadow: 0 0 30px rgba(76, 175, 80, 0.5); }
.avatar-big.scam { border-color: var(--red); box-shadow: 0 0 30px var(--red-glow); }
.avatar-big.fallback { background: linear-gradient(135deg, var(--red), #1e1e1e); display: flex; align-items: center; justify-content: center; font-size: 44px; font-weight: 700; color: var(--white); }
.profile-name { font-size: 26px; font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.name-status { padding: 4px 12px; border-radius: 6px; font-size: 14px; font-weight: 700; text-transform: uppercase; }
.name-status.vip { background: rgba(255,215,0,0.15); border: 2px solid #ffd700; color: #ffd700; box-shadow: 0 0 10px rgba(255,215,0,0.4); }
.name-status.safe { background: rgba(76,175,80,0.15); border: 2px solid #4caf50; color: #4caf50; box-shadow: 0 0 10px rgba(76,175,80,0.4); }
.name-status.scam { background: rgba(220,38,38,0.15); border: 2px solid #dc2626; color: #dc2626; box-shadow: 0 0 10px rgba(220,38,38,0.4); }
.profile-sub { display: flex; justify-content: center; align-items: center; gap: 16px; color: var(--gray); font-size: 21px; margin-bottom: 16px; }
.profile-id { background: var(--bg-card); border: 1px solid var(--border); padding: 6px 12px; border-radius: 8px; font-size: 18px; color: var(--white); }
.status-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-card); border: 1px solid var(--border); padding: 10px 22px; border-radius: 25px; font-size: 17px; margin-bottom: 10px; }
.status-dot { width: 10px; height: 10px; background: #4caf50; border-radius: 12px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Badges */
.badges { display: flex; justify-content: center; gap: 12px; margin-bottom: 0; flex-wrap: wrap; }
.badge { padding: 10px 20px; border-radius: 25px; font-size: 12px; font-weight: 700; border: 1px solid; text-transform: uppercase; }
.badge-operator { border-color: var(--red); color: var(--red); background: var(--red-glow); }
.badge-verified { border-color: #4caf50; color: #4caf50; }
.badge-warning { border-color: #ff9800; color: #ff9800; }

/* Deposit */
.deposit-box { background: linear-gradient(135deg, var(--red-glow) 0%, transparent 100%); border: 1px solid var(--red); border-radius: 14px; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.deposit-info small { color: var(--red-light); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.deposit-info strong { font-size: 29px; font-weight: 700; }
.deposit-icon { font-size: 29px; }

/* Info */
.info-row { display: flex; gap: 12px; margin-bottom: 16px; }
.info-col { flex: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.info-col h4 { color: var(--gray); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; font-weight: 600; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: var(--bg-input); border: 1px solid var(--border); padding: 8px 14px; border-radius: 20px; font-size: 13px; }
.perf-item { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 18px; }
.perf-item span:last-child { color: var(--red-light); font-weight: 600; }

/* Stats */
.stats-row { display: flex; gap: 12px; margin-bottom: 10px; }
.stat-box { flex: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 24px 16px; text-align: center; }
.stat-val { font-size: 29px; font-weight: 700; }
.stat-val.accent { color: var(--red-light); }
.stat-lbl { color: var(--gray); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* Section */
.section-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; margin-bottom: 16px; }
.section-box h4 { color: var(--gray); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; font-weight: 600; }
.section-box .hint { color: var(--gray); font-size: 14px; float: right; margin-top: -24px; }

/* Feedback */
.feedback { background: var(--bg-input); border-left: 3px solid var(--red); padding: 8px 16px; border-radius: 0 10px 10px 0; margin-bottom: 10px; }
.feedback p { font-style: italic; font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
.feedback-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray); }
.feedback-meta .verified { color: var(--red-light); font-weight: 600; }

/* Contacts */
.contact-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border: none; }
.contact-lbl { color: var(--gray); font-size: 12px; text-transform: uppercase; }
.contact-val { color: var(--red-light); font-size: 14px; }

/* States */
.hidden { display: none !important; }
.loading { text-align: center; padding: 60px; }
.spinner { width: 44px; height: 44px; border: 3px solid var(--border); border-top-color: var(--red); border-radius: 12px; animation: spin 1s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.not-found { text-align: center; padding: 60px; }
.not-found-icon { font-size: 52px; margin-bottom: 16px; color: var(--gray); }
.not-found p { color: var(--gray); font-size: 15px; }
.results { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Status colors */
.status-pill.online .status-dot { background: #00d4aa; box-shadow: 0 0 8px #00d4aa; }
.status-pill.recently .status-dot { background: #fbbf24; box-shadow: 0 0 8px #fbbf24; }
.status-pill.offline .status-dot { background: #6b7280; box-shadow: none; }


/* SC Typing Animation */
.logo-accent { display: inline-flex; }
.logo-accent .cursor { animation: blink 0.8s step-end infinite; }
@keyframes typeIn { to { opacity: 1; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* All status colors */
.status-pill.online .status-dot { background: #00d4aa; box-shadow: 0 0 8px #00d4aa; }
.status-pill.offline .status-dot { background: #fbbf24; box-shadow: 0 0 8px #fbbf24; }
.status-pill.recently .status-dot { background: #fbbf24; box-shadow: 0 0 8px #fbbf24; }
.status-pill.last_week .status-dot { background: #f97316; box-shadow: 0 0 8px #f97316; }
.status-pill.last_month .status-dot { background: #ef4444; box-shadow: 0 0 8px #ef4444; }
.status-pill.hidden .status-dot { background: #6b7280; box-shadow: none; }
.status-pill.unknown .status-dot { background: #1f2937; box-shadow: none; }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 16px 15px;
}
.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
}
.stat-item .value {
    font-size: 22px;
    font-weight: 700;
    color: var(--red-light);
}
.stat-item .label {
    font-size: 10px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Report Scam Button */

.report-btn, .continue-reading-btn, .btn-search {
    font-size: 17px !important; font-weight: 700;
}
.report-btn {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px 15px;
    padding: 14px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.report-btn:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    transform: translateY(-1px);
}

/* News Feed Box */
.news-feed-box {
    width: calc(100% - 32px);
    aspect-ratio: 1 / 1;
    margin: 0 16px 15px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Exo 2", sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Title */
.section-title {
    margin: 0 16px 15px; text-align: center;
    font-family: "Exo 2", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    width: 100%;
    padding: 20px 16px;
    margin-top: auto;
    text-align: center;
    font-family: "Exo 2", sans-serif;
    font-size: 12px;
    color: var(--gray);
    background: var(--bg-header); border-top: 1px solid var(--border);
}

/* Sidebar Menu */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}
.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.sidebar-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--bg-header);
    border-left: 1px solid var(--border);
    z-index: 999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.sidebar-menu.active {
    right: 0;
}
.sidebar-header {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sidebar-title {
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.sidebar-close {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar-nav {
    flex: 1;
    padding: 16px;
}
.sidebar-link { width: 100%; justify-content: center; text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}
.sidebar-link:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.sidebar-link-icon {
    font-size: 14px;
}

/* News Container */
.news-container {
    width: calc(100% - 32px);
    margin: 0 16px 15px;
    min-height: 300px;
}
.news-empty {
    padding: 40px 20px;
    text-align: center;
    font-family: "Exo 2", sans-serif;
    font-size: 16px;
    color: var(--gray);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

/* IBAN/Wallet Found Badge */
.found-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: 2px solid #ef4444;
    border-radius: 0;
    color: #fff;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.blacklist-text {
    font-family: "Exo 2", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* Scam warning box */
.scam-warning {
    background: rgba(220, 38, 38, 0.15);
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
    text-align: center;
    color: #ef4444;
    font-size: 14px;
    font-weight: 600;
}

/* News feed image */
.news-feed-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* News overlay */
.news-feed-box {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
}
.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}
.news-overlay b {
    color: #4fc3f7;
}

/* News featured */
.news-featured {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    margin: 10px 0;
}
.news-featured img {
    width: 100%;
    display: block;
}



/* Continue reading button */
.continue-reading-btn {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px 15px;
    padding: 14px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.continue-reading-btn:hover {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    transform: translateY(-1px);
}

/* Stats container */
.stats-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 0 16px 16px;
}
.stats-header {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.stats-list .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.stats-list .stat-label {
    color: #aaa;
}
.stats-list .stat-value {
    color: #fff;
    font-weight: 600;
}

/* News block unified */
.news-feed-box {
    border-radius: 12px 12px 0 0 !important;
    margin-bottom: 0 !important;
}
.continue-reading-btn {
    border-radius: 0 0 12px 12px !important;
    margin-top: 0 !important;
}

/* News text block */
.news-featured {
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    overflow: hidden;
}
.news-featured img {
    width: 100%;
    display: block;
}
.news-text-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.news-text-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 15px 20px;
    margin: 0 0 16px 0;
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}
.pagination button {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
}
.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.pagination button:not(:disabled):hover {
    background: var(--red);
    border-color: var(--red);
}
#pageInfo {
    color: var(--gray);
    font-size: 14px;
}

/* Scam Warning Box */
.scam-warning-box {
    background: rgba(220, 38, 38, 0.15) !important;
    border-color: #dc2626 !important;
    text-align: center;
}
.scam-warning-box h4 {
    color: #dc2626 !important;
    font-size: 24px !important;
    margin-bottom: 10px;
}
.scam-warning-box p {
    color: #dc2626;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* Caution Warning */
.caution-warning {
    background: rgba(234, 179, 8, 0.15);
    border: 2px solid #eab308;
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
    text-align: center;
    color: #fbbf24;
    font-size: 14px;
    font-weight: 600;
}
