/* Fonts */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: #111;
  color: #eee;
}

header {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(90deg, #222, #444);
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: #f5f5f5;
}

.subtitle {
  font-family: 'Roboto Mono', monospace;
  font-size: 1rem;
  color: #aaa;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  background: #222;
  padding: 1rem;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  text-decoration: none;
  color: #eee;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffcc00;
}

section {
  padding: 2rem;
  text-align: center;
}

h2 {
  font-family: 'Cinzel', serif;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Unified icon styling */
.icon {
  font-size: 2.5rem;
  color: #eee;
  transition: all 0.3s ease;
}

.icon:hover {
  transform: scale(1.2);
}

.icon:active {
  color: #ffcc00;
  text-shadow: 0 0 15px #ffcc00;
}

#support {
  padding: 2rem;
  text-align: center;
}

#support h2 {
  margin-bottom: 1rem;
}

.support-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.support-btn {
  background: #222;
  color: #eee;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  max-width: 200px;
  text-align: center;
}

.support-btn:hover {
  background: #333;
  transform: scale(1.05);
}

.support-btn:active {
  background: #ffcc00;
  color: #111;
  box-shadow: 0 0 15px #ffcc00;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  font-size: 0.9rem;
}

footer p a {
  color: #eee;
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

footer p a:hover {
  color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    padding: 0.5rem;
  }

  nav ul li {
    margin: 0.5rem 0;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .support-buttons {
    flex-direction: column;
    align-items: center;
  }

  .support-btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  body {
    font-size: 0.9rem;
  }
}