body {
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
  background: linear-gradient(180deg, #0f2027, #203a43, #3d7791);
}

canvas#stars {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
}
    
.navbar {
  color: #fff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Orbitron', sans-serif;
}

.navbar .logo {
  font-size: 24px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #66ffcc;
}

.links-section {
  padding: 80px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.links-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #66ffcc;
  white-space: nowrap;
  font-family: 'Orbitron', sans-serif;
}

.links-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.link-btn {
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  width: 250px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 0 15px rgba(102, 255, 204, 0.2);
  font-family: 'Rajdhani', sans-serif;
}

.link-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(102, 255, 204, 0.4);
}

.discord { background: #5865F2; }
.discord:hover { background: #4752c4; }

.telegram { background: #229ED9; }
.telegram:hover { background: #1a7ca5; }

.telegrambot { background: #006492; }
.telegrambot:hover { background: #01577c; }

.funpay { background: #ffc107; color: #000; }
.funpay:hover { background: #e0a800; }

.whatsapp { background: #25D366; }
.whatsapp:hover { background: #1ebe55; }
