/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #1f1f1f;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
  display: flex;
  gap: 24px;
}
nav a {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
nav a.active {
  background-color: #5865F2;
  color: white;
}
nav a:hover:not(.active) {
  background-color: #333;
  color: #eee;
}

.discord-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #5865F2;
  color: white;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}
.discord-button:hover {
  background-color: #4752c4;
}
.discord-logo {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

main {
  flex-grow: 1;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  min-height: calc(100vh - 72px);
}

section.content-tab {
  display: none;
  max-width: 800px;
}
section.content-tab.active {
  display: block;
}

pre {
  background: #1f1f1f;
  color: #00ffae;
  padding: 16px;
  border-radius: 6px;
  text-align: left;
  overflow-x: auto;
  font-size: 15px;
  margin: 10px auto;
  box-shadow: 0 0 20px rgba(0,255,174,0.15);
}

.update-log {
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  color: #ddd;
  margin-top: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.update-log ul {
  margin-bottom: 10px;
  padding-left: 20px;
}
.update-log ul li {
  margin-bottom: 6px;
}
