body {
  font-family: 'Arial', sans-serif;
  text-align: center;
  background: linear-gradient(135deg, #141e30, #243b55);
  color: white;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container with Glass Effect */
.container {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  margin: 15px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  max-width: 350px;
  width: 90%;
}

/* Logo Glow Effect */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 172, 237, 0.7);
  transition: 0.3s ease-in-out;
}

.logo:hover {
  box-shadow: 0 0 20px rgba(0, 172, 237, 1);
}

/* Text Styles */
h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Loader Animation */
.loader {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #00aced;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Telegram Link with SVG Icon */
.telegram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  color: #00aced;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s;
}

.telegram-link:hover {
  color: #0088cc;
  text-decoration: underline;
}

/* Telegram SVG Icon */
.telegram-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.2s ease-in-out;
}

.telegram-link:hover .telegram-icon {
  transform: scale(1.2);
}
