/* Fundalul paginii și fontul XODO */
body {
  background: #050509 !important; /* Tema ta dark */
  font-family: "Inter", sans-serif;
  color: #e4e4e7; /* text-zinc-300 */
}

/* Containerul principal (Efect de Glassmorphism) */
.wrap {
  background: rgba(15, 15, 20, 0.8) !important;
  padding: 40px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(255, 31, 74, 0.15) !important;
  border-radius: 20px;
}

/* Link-uri XODO Style */
a {
  color: #FF1F4A; /* Crimson Xodo */
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #FF617D;
}

/* Input-uri Dark */
input[type="text"], input[type="email"], input[type="password"], select {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 1em;
}

input:focus {
  border-color: #FF1F4A !important;
  background: rgba(255, 31, 74, 0.05) !important;
}

/* Butonul XODO (Magnet Effect) */
.button {
  background: #FF1F4A !important;
  padding: 15px 35px;
  border-radius: 50px !important; /* Rounded pill style */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 31, 74, 0.3) !important;
}

.button:hover {
  background: #FF617D !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 31, 74, 0.5) !important;
}

/* Varianta de buton outline */
.button.button-outline {
  background: transparent !important;
  border: 1px solid #FF1F4A !important;
  color: #FF1F4A !important;
}

/* Header & Logo */
.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.header .logo img {
  filter: drop-shadow(0 0 10px rgba(255, 31, 74, 0.4));
}

/* Labels și Texte */
label {
  color: #a1a1aa !important; /* text-zinc-400 */
}

.lists .description {
  color: #71717a !important;
}

/* Footer modernizat */
footer.container, footer a {
  color: #52525b !important;
}

footer a:hover {
  color: #FF1F4A !important;
}

/* Archive list styling */
.archive .date {
  color: #FF1F4A;
  opacity: 0.8;
}

/* Responsive adjustments */
@media screen and (max-width: 650px) {
  .wrap {
    border-radius: 0;
    padding: 25px;
  }
}