
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0d1117;
  color: #e6edf3;
  line-height: 1.6;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(13,17,23,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  top: 0;
  z-index: 1000;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #58a6ff;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu li a {
  text-decoration: none;
  color: #e6edf3;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #58a6ff;
}

.btn-discord {
  background: #5865F2;
  padding: 8px 16px;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s;
}
.btn-discord:hover { background: #4752c4; }

.hero {
  height: 90vh;
  background: url('') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #58a6ff;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e6edf3;
}

.hero-text .btn {
  align-self: flex-start;
}

.hero-image img {
  max-width: 350px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.05) rotate(-2deg);
}


@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    margin-top: 30px;
  }
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-primary {
  background: #58a6ff;
  color: #0d1117;
}
.btn-primary:hover { background: #1f6feb; }
.btn-ghost {
  border: 1px solid #58a6ff;
  color: #58a6ff;
}
.btn-ghost:hover {
  background: #58a6ff;
  color: #0d1117;
}


.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-size: 2rem;
  color: #58a6ff;
}


.glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}


.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.card-text { text-align: left; }
.card-image img {
  width: 100%;
  border-radius: 12px;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}
.card.feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s;
}
.card.feature:hover { transform: translateY(-8px); }
.card.feature i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #58a6ff;
}


.server-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}
.server-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s;
}
.server-card:hover { transform: scale(1.03); }
.server-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.badge.online { color: #3fb950; }
.badge.offline { color: #f85149; }


.owners {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.owner {
  text-align: center;
}
.owner img {
  width: 120px;
  border-radius: 50%;
  border: 2px solid #58a6ff;
  transition: transform 0.3s;
}
.owner img:hover { transform: scale(1.1); }
.owner h3 { margin-top: 10px; }


.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e6edf3;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.social-link:hover { background: rgba(88,166,255,0.2); }

.footer {
  text-align: center;
  padding: 20px;
  background: #161b22;
  color: #8b949e;
  font-size: 0.9rem;
}
.discord-icon i {
  font-size: 1.8rem;
  color: #5865F2;
  transition: transform 0.3s;
}
.discord-icon i:hover {
  transform: scale(1.2);
}

.server-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s;
}
.server-card:hover { transform: scale(1.03); }
.server-card h3 { color: #58a6ff; margin-bottom: 10px; }
.server-card p { margin: 5px 0; }

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}
.social-icons a {
  font-size: 2.5rem;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: #58a6ff;
}
.copy-btn {
  margin-top: 10px;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  background: #58a6ff;
  color: #0d1117;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.copy-btn i {
  margin-right: 6px;
}
.copy-btn:hover {
  background: #1f6feb;
  transform: scale(1.05);
}
.total-wrap {
  margin-top: 30px;
  text-align: center;
}

.total-btn {
  font-weight: 600;
  cursor: default;
  pointer-events: none;
}

.total-btn #total-players {
  margin-left: 6px;
}
body {
  overflow-x: hidden;
}
@media (max-width: 900px) {
  .hero-image {
    display: none;
  }
  .nav-right {
    display: none;
  }
}
@media (max-width: 900px) {
  .menu {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.menu {
  flex-wrap: wrap;
  word-break: break-word;
}
@media (max-width: 900px) {
  .navbar {
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu li a {
    font-size: 0.95rem;
  }

  .logo-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}