/* General */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: 0.3s;
}

:root {
  --bg: #111;
  --text: #fff;
  --accent: #00ccff;
}

.dark-mode {
  --bg: #fff;
  --text: #111;
}

/* Header */
header {
  text-align: center;
  padding: 2rem;
  background-color: #1a1a1a;
}

.nav-links a, #toggle-dark {
  margin: 0 10px;
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

#toggle-dark {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Stream Sections */
.stream-box {
  margin: 2rem auto;
  width: 90%;
  max-width: 1000px;
  text-align: center;
}

iframe {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Socials */
.socials {
  text-align: center;
  margin-top: 2rem;
}

.social-icons a {
  margin: 0 10px;
  font-size: 2rem;
  color: var(--accent);
  transition: 0.2s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: var(--text);
}

/* Footer */
footer {
  background: #000;
  color: #888;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}


/* Donations */

.donation-section {
  text-align: center;
  padding: 2rem;
}

.goal-box {
  margin-top: 2rem;
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 1.5rem;
  color: var(--text);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.goal-box progress {
  width: 100%;
  height: 20px;
  border-radius: 10px;
  background-color: #333;
}

/* ABOUT */


.about-section {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  line-height: 1.6;
}

.about-section h2 {
  color: var(--accent);
  margin-top: 2rem;
}

.discord-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #5865F2;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.discord-button:hover {
  background-color: #4e58db;
}


footer a:hover {
  text-decoration: underline;
}

footer i {
  margin-right: 0.3rem;
  vertical-align: middle;
}


.container { max-width: 800px; margin: 0 auto; padding: 20px; }
.announcements { list-style: none; padding: 0; }
.announcement { border-bottom: 1px solid #ccc; padding: 15px 0; }
.announcement h2 { margin: 0; color: #333; }
.announcement p { margin: 5px 0; }
.success { background: #d4ffd4; padding: 10px; border-left: 4px solid green; }

