/* General Styles */
body {
  background: #111;
  color: #f0f0f0;
  font-family: Arial, sans-serif;
  margin: 0;
  transition: background 0.3s, color 0.3s;
}

/* Light mode */
body.light-mode {
  background: #f5f5f5;
  color: #222;
}

body.light-mode .navbar {
  background: #e0e0e0;
  border-bottom: 1px solid #ccc;
}

body.light-mode .navbar button {
  color: #222;
}

body.light-mode .navbar button:hover,
body.light-mode .navbar button.active {
  background: #ddd;
}

body.light-mode .tabs button {
  background: #fff;
  color: #222;
  border: 1px solid #ccc;
}

body.light-mode .tabs button:hover {
  background: #eee;
}

/* Navbar */
.navbar {
  background: #1a1a1a;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar button {
  background: none;
  border: none;
  color: #f0f0f0;
  font-size: 16px;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.2s;
}

.navbar button:hover,
.navbar button.active {
  background: #333;
}

/* Container */
.container {
  padding: 30px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Heading */
h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.subtitle {
  color: #aaa;
  margin-bottom: 20px;
}

/* Tabs (Buttons for categories) */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.tabs button {
  background: #1a1a1a;
  color: #f0f0f0;
  border: 1px solid #333;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s, transform 0.2s;
}

.tabs button:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Discord Button */
.discord-btn {
  background: #5865f2;
  color: white !important;
  font-weight: bold;
  border-radius: 6px;
  padding: 8px 12px;
  text-decoration: none;
  display: inline-block;
}

.discord-btn:hover {
  background: #4752c4;
}

.navbar-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Card Styles (for content sections) */
.card {
  background: #222;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.2s;
}

.card:hover {
  background: #333;
  transform: translateY(-3px);
}

.card h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  padding: 8px;
  border-bottom: 1px solid #333;
}

.card input, .card textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #444;
  background: #222;
  color: #f0f0f0;
}

.card button {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background: #5865f2;
  color: white;
  cursor: pointer;
}

.card button:hover {
  background: #4752c4;
}

/* Footer */
.footer {
  background: #1a1a1a;
  padding: 15px;
  text-align: center;
  color: white;
  margin-top: 30px;
}
