:root {
  --bs-primary: #00b894;
  --bs-primary-rgb: 0, 184, 148;
}

[data-theme=dark] {
  --bs-secondary-bg: #0f1f1b;
  --bs-secondary-bg-rgb: 15, 31, 27;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: auto;
  scrollbar-color: rgba(0, 184, 148, 0.4) rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar {
  width: 20px;
  height: 20px;
}

::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 184, 148, 0.4);
  border-radius: 4px;
  border: 3px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 184, 148, 0.6);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  background-color: #0f1f1b;
  min-height: 100vh;
  background-image: url('/img/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body[data-theme=dark] {
  background-color: #0f1f1b;
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
}

p {
  color: rgba(255, 255, 255, 0.9);
}

.content {
  margin: 0;
  padding: 0 1.5rem;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.content > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.maintenance-title {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.discord-btn {
  background: #5865F2;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 0.9rem 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 0 #3f49b9;
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.2s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.discord-btn:hover {
  background: #5865F2;
  color: #fff;
  filter: brightness(1.1);
}

.discord-btn:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #3f49b9;
}

.discord-btn:focus,
.discord-btn:focus-visible {
  background: #5865F2;
  color: #fff;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

@media (max-width: 767.98px) {
  .content {
    min-height: 100vh;
    padding: 0 1.25rem;
  }

  .maintenance-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .discord-btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-radius: 8px;
  }
}

@media (max-width: 575.98px) {
  .content {
    min-height: 100vh;
    padding: 0 1rem;
  }

  .maintenance-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }

  .discord-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
    box-shadow: 0 4px 0 #3f49b9;
    border-radius: 6px;
  }

  .discord-btn:active {
    box-shadow: 0 2px 0 #3f49b9;
  }
}
