* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  color: white;
}
.spacer {
  height: 400px;
  background-color: 000000;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px; 
  background-color: #000000;
  flex-wrap: nowrap;
}

header .logo img {
  width: 50px;
  border-radius: 50%;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px; 
  flex-wrap: nowrap; 
  margin-right: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

nav ul li a:hover {
  color: #00fff2;
}


.buttons {
  display: flex;
  flex-direction: row; 
  gap: 5px; 
  flex-wrap: nowrap;
  margin-top: 0; 
}

.buttons a {
  text-decoration: none;
  padding: 8px 15px; 
  background-color: #00fff2;
  color: black;
  border-radius: 5px;
  margin-left: 5px; 
}

.buttons .join-server {
  background-color: transparent;
  border: 2px solid #00fff2;
  color: white;
}

.buttons a:hover {
  background-color: transparent;
  color: #00fff2;
}


.hero {
  text-align: center;
  margin-top: 100px;
  padding: 50px;
}

.hero h1 {
  font-size: 60px;
  color: white;
  line-height: 1.2;
}

.hero h1 span {
  color: #00fff2;
  font-weight: bold;
}

.hero p {
  font-size: 18px;
  color: #b3b3b3;
  margin: 20px auto;
  max-width: 600px;
  line-height: 1.6;
}

.hero .cta-buttons {
  margin-top: 30px;
}

.hero .cta-buttons .btn {
  text-decoration: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 5px;
  margin: 0 10px;
  transition: background-color 0.3s, color 0.3s;
}

.hero .cta-buttons .btn.invite {
  background-color: #00fff2;
  color: black;
}

.hero .cta-buttons .btn.join-server {
  background-color: transparent;
  border: 2px solid #00fff2;
  color: white;
}

.hero .cta-buttons .btn:hover {
  background-color: transparent;
  color: #00fff2;
}


.features {
  margin: 100px 0;
  text-align: center;
  background-color: #000000;
  padding: 50px 20px;
  color: white;
}
#features h1 {
  font-size: 50px; 
  color: white; 
  margin-bottom: 40px; 
  line-height: 1.2; 
  text-align: center; 
}

#features h1 span {
  color: #00fff2; 
  font-weight: bold; 
}


.features h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 20px;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 27px;
}

.feature-card {
  background-color: #000000;
  color: white;
  border: 1px solid #00fff2;
  border-radius: 8px;
  width: 300px;
  height: 230px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card h3 {
  font-size: 35px;
  margin-bottom: 15px;
  color: #00fff2;
}

.feature-card p {
  font-size: 19px;
  color: #b3b3b3;
  line-height: 1.6;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 0 15px 3px #00fff2;
  border-color: #00fff2;
}


.developers {
  margin: 100px 0;
  text-align: center;
  background-color: #000000;
  padding: 50px 20px;
  color: white;
}

.developers h1 {
  font-size: 50px;
  color: white;
  margin-bottom: 40px;
  line-height: 1.2;
}

.developers h1 span {
  color: #00fff2;
  font-weight: bold;
}

.developer-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.developer-card {
  background-color: #000000;
  color: white;
  border: 1px solid #00fff2;
  border-radius: 8px;
  width: 300px;
  height: 350px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.developer-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.developer-card h3 {
  font-size: 35px;
  margin-bottom: 15px;
  color: #00fff2;
}

.developer-card p {
  font-size: 19px;
  color: #b3b3b3;
  line-height: 1.6;
}

.developer-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 0 15px 3px #00fff2;
  border-color: #00fff2;
}


.footer {
  background-color: #000000;
  color: white;
  padding: 40px 0;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.footer p {
  font-size: 16px;
  color: #b3b3b3;
  margin: 0;
}

.footer-links {
  margin-top: 10px;
}

.footer-link {
  color: #00fff2;
  text-decoration: none;
  font-size: 16px;
}

.footer-link:hover {
  text-decoration: underline;
  color: #ffffff;
}


@media only screen and (max-width: 768px) {
  header {
    padding: 20px;
    flex-direction: row;
    align-items: center; 
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  nav ul {
    flex-direction: row;
    gap: 10px; 
    margin-right: 0;
    align-items: center; 
    justify-content: flex-start;
    flex-wrap: nowrap; 
  }

  nav ul li a {
    font-size: 14px; 
  }

  .buttons {
    flex-direction: row;
    gap: 5px; 
    margin-top: 0;
    align-items: center; 
    justify-content: flex-start; 
    flex-wrap: nowrap;
  }

  .buttons a {
    font-size: 14px; 
    padding: 6px 12px; 
    white-space: nowrap; 
    margin-left: 5px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .cta-buttons .btn {
    font-size: 14px;
    padding: 12px 20px;
    margin: 10px 0; 
    width: auto; 
    display: inline-block; 
  }

  .feature-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .feature-card, .developer-card {
    width: 100%;
    max-width: 320px;
    padding: 20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .hero h1 {
    font-size: 35px;
  }

  .feature-card, .developer-card {
    width: 100%;
    max-width: 280px;
    padding: 15px;
  }

  .footer p {
    font-size: 14px;
  }

  .buttons a {
    font-size: 12px; 
    padding: 5px 10px; 
    white-space: nowrap; 
    margin-left: 5px; 
  }

  .hero .cta-buttons .btn {
    font-size: 12px; 
    padding: 10px 15px;
    width: auto; 
    display: inline-block;
  }
}

::-webkit-scrollbar {
  width: 10px; 
  height: 10px; 
}


::-webkit-scrollbar-track {
  background: #000000; 
  border-radius: 5px; 
}

::-webkit-scrollbar-thumb {
  background: #00fff2;
  border-radius: 5px; 
  border: 2px solid #000000; 
}

::-webkit-scrollbar-thumb:hover {
  background: #00fff2; 
}

