@font-face {
  font-family: "Tilda Sans";
  src: url("TildaSans/TildaSans-Regular/TildaSans-Regular.woff2")
      format("woff2"),
    url("TildaSans/TildaSans-Regular/TildaSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tilda Sans";
  src: url("TildaSans/TildaSans-Semibold/TildaSans-Semibold.woff2")
      format("woff2"),
    url("TildaSans/TildaSans-Semibold/TildaSans-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: "Tilda Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background-color: #ffffff;
  color: #1f1f1f;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.popup {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.12);
  padding: 32px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon {
  width: 64px;
  height: 64px;
  background: #0d6eff;
  border-radius: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 41px;
  height: 34px;
}

.title {
  font-family: "Tilda Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #1f1f1f;
  flex: 1;
}

.description {
  font-family: "Tilda Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #1f1f1f;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 18px 16px;
  border-radius: 16px;
  text-decoration: none;
  font-family: "Tilda Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.1111111111111112em;
  text-align: center;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  opacity: 0.8;
}

.btn-accent {
  background: #0d6eff;
  color: #ffffff;
}

.btn-secondary {
  background: rgba(13, 110, 255, 0.2);
  color: #0d6eff;
}

.btn-basic {
  background: #f2f4f7;
  color: #1f1f1f;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .popup {
    padding: 16px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .description {
    font-size: 18px;
  }

  .btn {
    font-size: 18px;
    height: 56px;
    padding: 16px;
  }
}
