:root {
  --primary: #0e1a35;
  --accent: #3a7bfd;
  --text: #ffffff;
  --text-secondary: #a8c3ff;
  --font: "Inter", sans-serif;
  --title-font: "Manrope", sans-serif;
  --minecraft-font: "Minecraftia", sans-serif;
  --button-font: "Lexend", sans-serif;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #f0f0f0 #333;
  overscroll-behavior: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #333;
}

::-webkit-scrollbar-thumb {
  background: #f0f0f0;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f0f0f0;
}

li,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------------------------------------------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
  overflow-x  : hidden;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  font-family: var(--font);
  background-color: #070d1dff;
  color: var(--text);
  min-height: 100vh;
  margin: 0;
}

section {
  border-bottom: #0c1731ff solid 1px;;
}

header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 1rem;
  border-bottom: #0c1731ff solid 1px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 48px;
}

nav a {
  color: var(--text-secondary);
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

nav a:hover {
  text-decoration: none;
  color: var(--text);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
}

nav a:hover::after {
  width: 100%;
  left: 0;
}

.hero {
  flex-grow: 1;
  text-align: center;
  animation: fadeIn 1.5s ease;
  position: relative;
  z-index: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-image: url(../images/background.png);
  background-position: center;
  background-size: 195vh;
  background-repeat: no-repeat;
}

.hero-title {
  font-family: var(--title-font);
  font-size: 4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: popIn 0.8s ease-in-out;
}

.hero-title img {
  height: 0.85em;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-family: var(--minecraft-font);
  margin-top: 1.5rem;
}

.btn {
  font-family: var(--button-font);
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem;
  margin: 1rem 0.5rem 0 0.5rem;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, border 0.3s ease;
}

.btn-filled {
  background: var(--accent);
  color: #fff;
}

.btn-filled a {
  text-decoration: none;
  color: #fff;
}

.btn-filled a:hover {
  text-decoration: none;
}

.btn-filled:hover {
  background: #568dff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: rgba(58, 123, 253, 0.1);
}

.footer-buttons .btn-outline {
  border: none;
  background: var(--accent);
  color: #fff;
}

.footer-buttons .btn-outline:hover {
  background: #568dff;
}

.features {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1rem;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-family: var(--title-font);
}

.features h3 {
  margin-bottom: 2rem;
}

.features h4 {
  font-family: var(--title-font);
  font-size: 1.5em;
  margin-bottom: 0.2em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  width: 24rem;
  /* background: #1c6affff; */
  border-radius: 15px;
  padding: 1rem;
  text-align: left;
}

.feature-box .placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 20rem;
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 4px;
  margin-bottom: 1rem;
}

.feature-box .placeholder-1 img {
  max-width: 50rem;
}

.feature-box .placeholder-2 img {
  width: 38rem;
  margin-right: 2.25em;
}

.feature-box .placeholder-3 img {
  width: 42rem;
  margin-right: 2em;
}

.feature-box .placeholder-4 img {
  width: 38rem;
  margin-right: 1em;
}

.feature-box .placeholder-5 img {
  width: 42rem;
  margin-right: 1em;
}

.feature-box .placeholder-6 img {
  width: 54rem;
  margin-bottom: 2.25em;
}

.feature-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.faq-container {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

.faq {
  min-height: 100vh;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.faq-discord {
  text-decoration: none;
  width: 85%;
  height: 350px;
  padding: 2.5em;
  background: #070d1dff;
  border: #0c1731ff solid 1px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  color: #f0f0f0;
}

.faq-discord:hover {
  text-decoration: none;
  background-color: #0a1630;
}

.faq-discord .top {
  display: flex;
  flex-grow: 1;
  margin-bottom: 22px;
}

.faq-discord .icon {
  width: 80px;
  height: 80px;
  background-color: #5865f2;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-discord .right-icon {
  margin-left: auto;
}

.faq-discord h5 {
  font-size: 28px;
  line-height: 42px;
  margin-bottom: 8px;
}

.faq-discord .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -.1px;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-column h2 {
  font-family: var(--title-font);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.faq-item p {
  margin-top: 0.5rem;
  padding-left: 1rem;
  color: var(--text-secondary);
}

footer {
  position: relative;
  padding: 4rem 1rem 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: #070d1dff;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-buttons {
  margin: 1rem 0;
  width: 50%;
}

.footer-buttons .btn {
  margin: 0.5rem;
  border-radius: 15px;
  min-width: 8em;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

.footer-copy {
  font-size: 0.75rem;
  margin-top: 1rem;
  color: #ccc;
}

@keyframes popIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .btn {
  margin: 0;
  }
  .faq {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }

  .faq-discord {
    width: 100%;
    height: 350px;
  }
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-link {
  font-size: 0.85rem;
  color: #f0f0f0;
  text-decoration: none;
  border-radius: 12px;
  border: transparent 1px solid;
  padding: 0.6em;
  transition: color 0.3s ease, background-color 0.3 ease, border 0.3 ease;
}

.footer-link:hover {
  text-decoration: none;
  background-color: rgba(57, 58, 59, 0.664);
  border: #333 1px solid;
}

.footer-info {
  font-size: 0.7rem;
  color: #888;
  margin-top: 0.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-banner-placeholder {
  width: 100%;
  max-width: 900px;
  height: 200px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--text-secondary);
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hero-buttons .btn {
  min-width: 180px;
  text-align: center;
}
a {
  color: var(--accent);
}

a:hover {
  text-decoration: underline;
}

.copy-ip {
  transition: color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}