/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #121212;
  color: #f0f0f0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

header {
  background: #1f2937;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

header h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: 2px;
  color: #38bdf8;
}

nav {
  text-align: center;
  margin-top: 0.5rem;
}

nav a {
  color: #a1a1aa;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #38bdf8;
  border-bottom: 2px solid #38bdf8;
  padding-bottom: 4px;
}

main {
  flex-grow: 1;
  padding: 2rem 0;
}

h2 {
  margin-bottom: 1rem;
  color: #60a5fa;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

input[type='text'],
input[type='email'],
select,
textarea {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

button {
  background: #38bdf8;
  border: none;
  color: #121212;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.3s ease;
}

button:hover {
  background: #0ea5e9;
}

.note {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin-top: 1rem;
}

.donate-section {
  margin: 1.5rem 0;
  text-align: center;
}

.cashapp-button {
  background: #00c244;
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.cashapp-button:hover {
  background: #009f35;
}

.discord-widget {
  margin-top: 2rem;
  text-align: center;
}

footer {
  background: #1f2937;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #71717a;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.7);
}

/* Responsive */
@media (max-width: 600px) {
  nav a {
    display: block;
    margin: 8px 0;
  }

  .discord-widget iframe {
    width: 100%;
    height: 400px;
  }
}
