* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
}

.container {
  max-width: 600px;
  width: 100%;
}

.logo-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto 25px;
  display: block;
}

.subtitle {
  font-size: 1.6rem;
  margin-top: 10px;
  color: #ccc;
}

.description {
  font-size: 1rem;
  margin-top: 12px;
  color: #aaa;
  line-height: 1.5;
}

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

.social-links a {
  color: #fff;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #00ffe5;
}

@media screen and (max-width: 480px) {
  .subtitle {
    font-size: 1.3rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .social-links a {
    font-size: 1.5rem;
  }
}
