body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg, #FFD700 0%, #DAA520 100%);
  animation: gradientFlow 10s ease infinite;
  overflow: hidden;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 60px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
  width: 240px;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.twitter { background: rgba(29, 161, 242, 0.8); }
.telegram { background: rgba(0, 136, 204, 0.8); }
.report { background: rgba(26, 181, 106, 0.8); }

.social-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .glass-card {
    padding: 30px;
    margin: 20px;
  }
  .logo {
    width: 180px;
  }
}