/* Basic resets and layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  color: white;
  background: #222;
  overflow-x: hidden;
}

/* Video background */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 60px;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 15px;
  z-index: 10;
}

.nav-btn {
  color: white;
  text-decoration: none;
  font-size: 24px;
  margin: 25px 0;
  transition: transform 0.2s;
}

.nav-btn:hover {
  transform: scale(1.2);
}

/* Main content */
.content {
  margin-left: 70px;
  padding: 20px;
}

.section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.65);
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.discord-btn {
  display: inline-block;
  margin-top: 20px;
  background: #7289da;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s;
}

.discord-btn:hover {
  background: #5b6eae;
}

.support-content p {
  margin: 12px 0;
}
