@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700;800;900&display=swap');
html, body{
  margin: 0;
  padding: 0;
  height: 100dvh;
}
body {
  height: 100dvh;
  background: linear-gradient(180deg, #1C1624, #853EFC);
}
.content {
  height: 100svh;
  flex-direction: column;
  font-family: 'Golos Text', sans-serif;
  display: flex;
  overflow: hidden;
}
.container {
  text-align: center;
  color: white;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.icon-bg {
  margin-bottom: 40px;
  width: 75px;
  height:75px;
  background-image: url("icon.webp");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  opacity: 1.0;
}

.title {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 600;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.btn {
  text-decoration: none;
  background-color: white;
  color: #333;
  padding: 12px 24px;
  border-radius: 12px;
  width: 280px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.copyright {
  text-align: center;
  font-size: 14px;
  color:white;
  font-weight: 400;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}