/* ── SCAMKNOWN – Core Stylesheet ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-deep:    #050d14;
  --bg-card:    #0b1825;
  --bg-card2:   #0f2030;
  --border:     rgba(0,255,170,0.15);
  --border-hot: rgba(0,255,170,0.5);
  --accent:     #00ffaa;
  --accent2:    #00c8ff;
  --danger:     #ff4455;
  --text-pri:   #e8f4f8;
  --text-sec:   #7aa0b8;
  --text-dim:   #3d6070;
  --mono:       'Share Tech Mono', monospace;
  --head:       'Rajdhani', sans-serif;
  --body:       'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-pri);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,170,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,170,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Circuit nodes */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(0,200,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0,255,170,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(5,13,20,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0,255,170,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo::before {
  content: '⬡';
  font-size: 18px;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--head);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sec);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent); }

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 14px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-sec);
  transition: border-color 0.2s, color 0.2s;
}

.nav-search:hover { border-color: var(--border-hot); color: var(--accent); }

.btn-report {
  background: var(--accent);
  color: #111 !important;
  font-family: var(--head);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.2px;
  padding: 10px 26px;
  border-radius: 5px;
  text-decoration: none;
  transition: box-shadow 0.2s, opacity 0.2s;
  text-transform: uppercase;
  text-shadow: none;
  border: 2px solid #00ffaa;
  opacity: 1 !important;
  filter: none !important;
}

.btn-report:hover {
  box-shadow: 0 0 20px rgba(0,255,170,0.4);
  opacity: 0.9;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 70px 20px 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  border: 1px solid rgba(0,255,170,0.3);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-badge::before { content: '●'; animation: blink 1.4s infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero h1 {
  font-family: var(--head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 16px;
  color: var(--text-sec);
  max-width: 520px;
  margin: 0 auto 32px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--mono);
  font-size: 28px;
  color: var(--accent);
  display: block;
  text-shadow: 0 0 15px rgba(0,255,170,0.3);
}

.stat-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── SEARCH BAR ──────────────────────────────────────────────── */
.search-wrap {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto 56px;
  padding: 0 20px;
}

.search-inner {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-hot);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,255,170,0.1);
}

.search-inner input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-pri);
  caret-color: var(--accent);
}

.search-inner input::placeholder { color: var(--text-dim); }

.search-inner button {
  background: var(--accent);
  border: none;
  color: var(--bg-deep);
  font-family: var(--head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 28px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.search-inner button:hover { opacity: 0.85; }

/* ── SECTION ─────────────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.section-title {
  font-family: var(--head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-pri);
}

.section-title span {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  margin-left: 12px;
  font-weight: 400;
}

.section-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent2);
  text-decoration: none;
  letter-spacing: 1px;
}

.section-link:hover { text-decoration: underline; }

/* ── REPORT GRID ─────────────────────────────────────────────── */
.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 20px;
}

/* ── REPORT CARD ─────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  border-color: var(--border-hot);
  box-shadow: 0 8px 40px rgba(0,255,170,0.08), inset 0 1px 0 rgba(0,255,170,0.1);
  transform: translateY(-2px);
}

.card-main {
  display: flex;
  gap: 20px;
  padding: 22px;
}

.card-photo {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
  filter: saturate(0.8);
}

.card-photo-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  background: var(--bg-card2);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  color: var(--text-dim);
}

.card-info { flex: 1; min-width: 0; }

.card-name {
  font-family: var(--head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--text-pri);
}

.card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.meta-item {}

.meta-label {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.meta-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-pri);
}

.meta-value.danger { color: var(--danger); font-weight: 600; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid rgba(0,200,255,0.3);
  color: var(--accent2);
  background: rgba(0,200,255,0.05);
}

.card-footer {
  border-top: 1px solid var(--border);
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-views {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-views svg { opacity: 0.5; }

.card-reported {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
}

.card-alleged {
  font-size: 10px;
  color: var(--text-dim);
  font-style: italic;
  padding: 0 22px 12px;
}

/* ── CATEGORIES ──────────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.cat-card:hover {
  border-color: var(--border-hot);
  background: var(--bg-card2);
}

.cat-icon { font-size: 28px; display: block; margin-bottom: 10px; }

.cat-name {
  font-family: var(--head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-pri);
  letter-spacing: 0.5px;
}

.cat-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  margin-top: 4px;
  display: block;
}

/* ── DISCLAIMER BANNER ───────────────────────────────────────── */
.disclaimer {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.disclaimer-inner {
  background: rgba(255,68,85,0.06);
  border: 1px solid rgba(255,68,85,0.25);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.disclaimer-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.disclaimer-text {
  font-size: 12px;
  color: var(--text-sec);
  line-height: 1.6;
  width: 100%;
  text-align: center;
}

.disclaimer-text strong { color: var(--danger); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 40px 40px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: gap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(0,255,170,0.3);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
}

.footer-links a:hover { color: var(--text-sec); }

.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
}

/* ── PROFILE PAGE ────────────────────────────────────────────── */
.profile-wrap {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.profile-back {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}

.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.profile-header {
  display: flex;
  gap: 28px;
  padding: 32px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: saturate(0.8);
  flex-shrink: 0;
}

.profile-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  background: var(--bg-card2);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  flex-shrink: 0;
}

.profile-title { flex: 1; }

.profile-name {
  font-family: var(--head);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.profile-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.profile-section {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
}

.profile-section:nth-child(odd) { border-right: 1px solid var(--border); }

.profile-section-title {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.profile-section-content {
  font-size: 15px;
  color: var(--text-pri);
}

.profile-section-content.danger { color: var(--danger); font-size: 22px; font-weight: 600; font-family: var(--head); }

.profile-full {
  grid-column: 1 / -1;
  border-right: none !important;
}

.report-narrative {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.8;
  white-space: pre-wrap;
}

.profile-alleged-notice {
  margin: 24px 32px;
  padding: 14px 18px;
  background: rgba(255,68,85,0.06);
  border: 1px solid rgba(255,68,85,0.2);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-sec);
  line-height: 1.6;
}

.dispute-link {
  color: var(--accent2);
  text-decoration: underline;
}

/* ── SUBMIT / DISPUTE FORMS ──────────────────────────────────── */
.form-wrap {
  max-width: 680px;
  margin: 40px auto;
  padding: 0 24px 80px;
  position: relative;
  z-index: 1;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}

.form-title {
  font-family: var(--head);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--text-pri);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--border-hot);
  box-shadow: 0 0 0 3px rgba(0,255,170,0.06);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-select option { background: var(--bg-deep); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-btn {
  width: 100%;
  background: var(--accent);
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-family: var(--head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bg-deep);
  cursor: pointer;
  transition: box-shadow 0.2s, opacity 0.2s;
  margin-top: 8px;
}

.form-btn:hover {
  box-shadow: 0 0 25px rgba(0,255,170,0.35);
  opacity: 0.9;
}

.form-btn.danger-btn {
  background: var(--danger);
  color: #fff;
}

.form-btn.danger-btn:hover { box-shadow: 0 0 25px rgba(255,68,85,0.35); }

.form-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
  line-height: 1.6;
}

/* ── CATEGORIES PAGE ─────────────────────────────────────────── */
.cats-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

/* ── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .navbar { padding: 0 16px; }
  .nav-links { display: none; }
  .report-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .profile-body { grid-template-columns: 1fr; }
  .profile-section:nth-child(odd) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .card-meta { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card, .cat-card, .hero, .disclaimer-inner {
  animation: fadeUp 0.5s ease both;
}

.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.10s; }
.card:nth-child(3) { animation-delay: 0.15s; }
.card:nth-child(4) { animation-delay: 0.20s; }

/* ── EVIDENCE GALLERY ────────────────────────────────────────── */
.evidence-section {
  margin-top: 32px;
}

.evidence-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.evidence-title-text {
  font-family: var(--head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-pri);
}

.evidence-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-dim);
  font-style: italic;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.evidence-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.evidence-item:hover {
  border-color: var(--border-hot);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,255,170,0.08);
}

.evidence-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.2s;
}

.evidence-item:hover img { filter: saturate(1); }

.evidence-caption {
  padding: 10px 14px;
  font-size: 11px;
  color: var(--text-sec);
  line-height: 1.5;
  font-family: var(--mono);
  border-top: 1px solid var(--border);
}

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,9,16,0.96);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 2;
  max-width: min(900px, 92vw);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 60px;
}

.lightbox-inner img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-sec);
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: -8px;
  background: rgba(11,24,37,0.9);
  border: 1px solid var(--border);
  color: var(--text-sec);
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s;
  z-index: 10;
  line-height: 1;
}

.lightbox-close:hover { color: var(--danger); border-color: var(--danger); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11,24,37,0.9);
  border: 1px solid var(--border);
  color: var(--text-pri);
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  z-index: 10;
  line-height: 1;
}

.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-prev:hover,
.lightbox-next:hover { border-color: var(--accent); color: var(--accent); }
