/* 
   SCAMCHECK M2 - "BEAUTIFUL SOVEREIGN" REBORN (V4.1)
   - High Contrast (Pure white and very light grey)
   - Clean Spacing (Proper padding and margins)
   - No Underlines on links
*/

:root {
  --bg: #1B2335;
  --bg2: #1B2335;
  --card: #0F172A;
  --card2: #191c25;
  --acc: #4B57D2;
  --acc-glow: rgba(232, 98, 42, 0.15);
  --border: #232731;
  
  /* HIGH CONTRAST TEXT */
  --text: #ffffff;
  --text2: #e2e8f0;
  --text3: #94a3b8;
  
--sans: 'Inter', sans-serif;
--mono: 'Inter', sans-serif;
}

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

body {
  background: var(--bg);
  background-image: radial-gradient(circle at 50% 0%, #1B2335 0%, #1B2335 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px; 
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NO UNDERLINE GLOBALLY */
a { text-decoration: none !important; color: inherit; }
a:hover { text-decoration: none !important; }

.container-m2 {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 25px;
  width: 100%;
}

/* NAVBAR */
header {
  background: #0F172A;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* MAIN CONTENT SPACING */
main.container-m2 {
  padding-top: 0px; /* DISTANTA FATA DE NAVBAR o fost 50px */
  padding-bottom: 80px;
  min-height: 80vh;
}

.nav-m2 { display: flex; align-items: center; width: 100%; }

.logo-m2 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.logo-m2 span { color: var(--acc); }

.links-m2 { display: flex; gap: 25px; margin-left: 40px; }
.links-m2 a {
  color: var(--text3);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.links-m2 a:hover, .links-m2 a.activ { color: #fff; }

/* BUTOANE */
.btn-m2 {
  background: var(--acc);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232, 98, 42, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-m2:hover { background: #ff7a40; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232, 98, 42, 0.4); }

.btn-m2-sec {
  background: #1e212b;
  border: 1px solid var(--border);
  color: var(--text2) !important;
  box-shadow: none;
}
.btn-m2-sec:hover { background: #2a2e3d; color: #fff !important; border-color: var(--text2); }
.btn-mic { padding: 8px 16px; font-size: 10px; }

/* SEARCH BOX */
.search-m2 {
  display: flex;
  background: #2d374d;
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
  overflow: visible;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  margin-top: 30px;
}
.search-m2:focus-within { border-color: var(--acc); box-shadow: 0 0 25px var(--acc-glow); }
.search-m2 input {
  flex: 1;
  background: none;
  border: none;
  padding: 18px 24px;
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
}
.search-m2 button {
  background: var(--acc);
  border: none;
  padding: 0 35px;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.search-m2 button:hover { background: #ff7a40; }

/* STATS */
.stats-grid-m2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stat-card-m2 {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  border-bottom: 3px solid transparent;
}
.stat-card-m2:hover { border-bottom-color: var(--acc); transform: translateY(-3px); }
.stat-card-m2 .num {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 800;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card-m2 .txt {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text3);
  font-weight: 600;
  letter-spacing: 1.5px;
}

/* CARDS */
.tepa-card-m2, .profil-main-m2, .profil-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.tepa-card-m2 { display: flex; gap: 25px; align-items: center; text-align: left; }
.tepa-card-m2:hover { border-color: var(--acc); background: var(--card2); transform: scale(1.01); }

.avatar-m2 {
  width: 54px; height: 54px; background: #08090a; border: 1px solid var(--border);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--acc); font-weight: 800; font-size: 20px;
}

/* BADGES */
.insigna-m2 {
  font-family: var(--mono); font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
  text-transform: uppercase; border: 1px solid transparent;
}
.i-scammer { color: #ff4d4d; background: rgba(255,77,77,0.1); border-color: rgba(255,77,77,0.3); }
.i-suspect { color: #ffaa00; background: rgba(255,170,0,0.1); border-color: rgba(255,170,0,0.3); }
.i-curat   { color: #2ecc71; background: rgba(46,204,113,0.1); border-color: rgba(46,204,113,0.3); }
.i-tag     { color: var(--text3); background: #0f1117; border-color: var(--border); }

/* FORMS */
.input-m2, .select-m2, .text-m2 {
  width: 100%; padding: 14px 18px; background: #08090a; border: 1px solid var(--border);
  color: #fff; border-radius: 4px; font-family: var(--sans); margin-top: 8px; outline: none; font-size: 15px;
}
.input-m2:focus { border-color: var(--acc); box-shadow: 0 0 20px var(--acc-glow); }

/* RISC BAR */
.risc-container-m2 {
  height: 12px; background: #08090a; border-radius: 20px; margin: 15px 0; overflow: hidden; border: 1px solid var(--border);
}
.risc-progres-m2 { height: 100%; border-radius: 20px; box-shadow: inset 0 0 10px rgba(0,0,0,0.5); }

footer { margin-top: 80px; padding: 60px 0; border-top: 1px solid var(--border); text-align: center; }
.copy-m2 { font-family: var(--mono); font-size: 11px; color: var(--text3); margin-top: 15px; }

@media (max-width: 768px) {
  .hero-m2 h1 { font-size: 32px; }
  .tepa-card-m2 { flex-direction: column; align-items: flex-start; }
}

#sd {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #08090a; 
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  z-index: 999;
  display: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.sd-item {
  display: block;
  padding: 15px 25px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: all 0.2s ease;
}

.sd-item:last-child { border-bottom: none; }

.sd-item:hover {
  background: var(--card2);
  padding-left: 32px; 
  border-left: 4px solid var(--acc);
}