body {
  background-image: url("images/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100vh;
  margin: 0;
  font-family: Inter, sans-serif;
}

.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-message {
  color: #fff;
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  background: rgba(34, 34, 34, 0.7);
  font-family: "Caveat", "Inter", Arial, sans-serif;
  padding: 2.5rem 5rem;
  border-radius: 32px;
}

nav {
  width: 100%;
  padding: 0.5rem 0;
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 100;
}

.nav-list {
  display: flex;
  justify-content: space-evenly;
  gap: 1rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 48px;
}

.nav-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
  font-size: 1.1rem;
}

.nav-list li a.active,
.nav-list li a:hover {
  color: #ffd700;
  text-decoration: underline;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  margin-top: 136px;
  position: relative;
}

.logo {
  max-width: 400px; /* Increased size */
  width: 100%;
  height: auto;
  z-index: 1;
  padding-top: 6rem;
}

/* Add a blurred background behind the logo */
.logo-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  filter: blur(32px);
  z-index: 0;
}

.telegram-btn {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: #229ed9;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(34, 158, 217, 0.15);
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.telegram-btn:hover {
  background: #157bb8;
  box-shadow: 0 6px 32px rgba(34, 158, 217, 0.25);
}

.telegram-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}
