:root {
  --ro-blue:   #002B7F;
  --ro-yellow: #FCD116;
  --ro-red:    #CE1126;
}


:root {
  --bg:           #ffffff;
  --bg-card:      #f8f8f8;
  --fg:           #111111;
  --fg-muted:     #555555;
  --fg-faint:     #999999;
  --accent:       #1a9e8f;
  --border:       #e2e2e2;
  --nav-bg:       rgba(255, 255, 255, 0.93);
  --shadow:       0 2px 16px rgba(0, 0, 0, 0.06);
  --badge-bg:     #111111;
  --badge-fg:     #ffffff;
  --badge-m-bg:   #e5e5e5;
  --badge-m-fg:   #777777;
  --uptime-bg:    #22c55e;
  --uptime-fg:    #ffffff;
  --pill-os-bg:   #111111;
  --pill-os-fg:   #ffffff;
  --pill-c-bg:    #eeeeee;
  --pill-c-fg:    #555555;
  --motif-color:  rgba(0, 0, 0, 0.18);
}



.ro-tricolor {
  display: flex;
  height: 4px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}

.ro-tricolor span {
  flex: 1;
}

.ro-blue   { background: var(--ro-blue); }
.ro-yellow { background: var(--ro-yellow); }
.ro-red    { background: var(--ro-red); }


.lro-button {
  display: inline-block;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 210px;
  height: 1rem;
  margin: 4px;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--ro-blue);
  border-bottom: 4px solid var(--ro-blue);
  border-radius: 6px;
  color: var(--ro-blue);
}

.lro-button:hover {
  border-color: var(--ro-yellow);
  border-bottom: 4px solid var(--ro-yellow);
  background: var(--ro-red);
  color: #ffffff;
}


.mx_Welcome {
   /*background: var(--ro-blue) !important;
   border: 2px solid var(--ro-yellow);*/
   border-radius: 6px;
   padding: 12px;
   width: 420px;
}


/* ── HERO ───────────────────────────────────────────── */
.hero {
  display: block;
  margin: auto;
  width: 420px;
  background: #0d0d0d;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5.5rem 2rem 2rem;
}

/* Glitch */
.glitch-wrap {
  position: relative;
  margin-bottom: 1.2rem;
}

.glitch {
  font-family: var(--font);
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ro-yellow);
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

/* Glitch în culorile tricolorului românesc */
.glitch::before {
  color: var(--ro-blue);
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
  animation: glitch-top 5s infinite;
  opacity: 0;
}

.glitch::after {
  color: var(--ro-red);
  clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
  animation: glitch-bot 5s infinite;
  opacity: 0;
}

@keyframes glitch-top {
  0%, 88%, 100% { transform: none; opacity: 0; }
  90%  { transform: translate(-3px, -2px); opacity: .85; }
  92%  { transform: translate( 3px,  1px); opacity: .85; }
  94%  { transform: translate(-2px,  0  ); opacity: .85; }
  96%  { transform: none; opacity: 0; }
}

@keyframes glitch-bot {
  0%, 88%, 100% { transform: none; opacity: 0; }
  89%  { transform: translate( 3px,  2px); opacity: .85; }
  91%  { transform: translate(-3px, -1px); opacity: .85; }
  93%  { transform: translate( 2px,  1px); opacity: .85; }
  95%  { transform: none; opacity: 0; }
}

.hero-desc {
  max-width: 520px;
  font-family: var(--font);
  font-size: 1.82rem;
  font-weight: 400;
  color: var(--bg);
  line-height: 1.75;
  margin-bottom: 3.5rem;
}

#mesaj_lro {
  color: var(--bg);

}

