* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(
    284deg,
    rgb(13, 46, 50) -1.24%,
    rgba(183, 237, 115, 1) 100%
  );
  padding: 20px;
}

.page {
  text-align: center;
  max-width: 500px;
  width: 100%;
}

.logo {
  margin-bottom: 24px;
  max-width: 100%;
  height: auto;
}

.title {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 32px;
}

.notification {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px 24px;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.notification-text {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.link {
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .title {
    font-size: 20px;
  }

  .description {
    font-size: 14px;
  }

  .links {
    flex-direction: column;
    align-items: center;
  }
}
