/* ---------- ریشه متغیرها ---------- */
:root {
  --accent-1: #760f2e;
  --accent-2: #d4068f;
  --bg-start: #041b4d96;
  --bg-end: #e9e9e9;
  --text: #000;
  --muted: rgba(24, 21, 21, 0.8);
  --glass: rgba(255, 255, 255, 0.06);
}

/* ---------- تنظیمات پایه ---------- */
* {
  box-sizing: border-box;
}

@font-face {
  font-family: "vazir";
  src: url("/fonts/Vazir.woff");
}

body {
  margin: 0;
  font-family: "vazir";
}

/* ---------- هدر ---------- */
.darakar-banner {
  width: 100%;
  min-height: 84px;
  padding: 16px 24px;
  background: linear-gradient(90deg, var(--bg-start), var(--bg-end));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.darakar-banner::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: 60vmax;
  height: 60vmax;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(120deg, rgba(186, 242, 252, 0.06), transparent 40%);
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 0;
}

.brand img {
  height: 68px;
}

.right-block .btn-cta {
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  border: none;
  color: white;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
}

.alert {
  width: 100%;
  margin: 0 auto;
  /* margin-top: 3px; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: rgb(237, 205, 203);
  color: rgba(111, 77, 73, 255);
  border-radius: 10px;
}

.alert span {
  width: 100%;
  padding: 10px 10px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-wrap: wrap;
}

svg {
  width: 15px;
  height: 15px;
}

/* mobile */
@media (max-width: 800px) {
  .darakar-banner {
    padding: 12px;
  }

  .brand img {
    height: 60px;
  }
}