/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 400px;
  width: 100%;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.4;
  font-weight: 500;
}

.button-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f1f1f;
  border: 1px solid #333;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button-link:hover {
  background-color: #2c2c2c;
}

.logo {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.platform-name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Social Media Styles */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.social-icon img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}

.social-icon img:hover {
  filter: brightness(1.3);
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.2rem;
  }

  .button-link {
    padding: 12px 16px;
  }

  .logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }

  .platform-name {
    font-size: 1rem;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }
}