
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: white;
}

.container {
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

.support {
  display: flex;
  align-items: center;
  color: white;
}

.support img {
  width: 24px;
  margin-right: 8px;
}

.help img {
  width: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: #1e1e1e;
  border: 2px solid #ff004c;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

a.card {
  display: block;
  text-decoration: none;
  color: inherit;
}


.card img {
  height: 40px;
  margin-bottom: 15px;
}

footer {
  margin-top: 60px;
  text-align: center;
  color: gray;
}

.tagline {
  background: #1e1e1e;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.tagline strong {
  color: #ff004c;
  font-size: 20px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: auto;
  font-size: 12px;
}

.footer-links a {
  text-decoration: none;
  color: inherit;
}

.footer-links a:hover {
  text-decoration: underline; /* Optional */
}
