@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0b0b0f;
  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.logo {
  font-size: 2.5rem;
  font-weight: 900;
  color: #00bfff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center; /* keeps logo and links centered vertically */
  padding: 20px 60px;
  background: rgba(15, 15, 20, 0.85);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center; /* vertically center links and button */
}

.nav-links a {
  text-decoration: none;
  color: #ddd;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center; /* vertically center the text */
  height: 100%; /* ensures same height as navbar */
}

.btn-nav {
  display: flex;
  align-items: center; /* vertically center text inside button */
  justify-content: center;
  background: linear-gradient(90deg, #00bfff, #009acd);
  padding: 10px 22px;
  border-radius: 25px;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,191,255,0.4);
  transition: all 0.3s ease;
}

.invite-btn {
  background: #00bfff;
  padding: 6px 18px;
  border-radius: 25px;
  color: #fff !important;
  transition: 0.3s;
}

.invite-btn:hover {
  background: #009acd;
}

/* Main Content */
.content {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

#search {
  padding: 10px 15px;
  width: 250px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #151520;
  color: #fff;
  font-size: 0.95rem;
}

section {
  margin-bottom: 50px;
}

section h2 {
  font-size: 2rem;
  color: #00bfff;
  margin-bottom: 20px;
}

.command {
  background: #151520;
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: transform 0.2s, background 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.command:hover {
  transform: translateX(5px);
  background: #1c1c2b;
}

.command code {
  font-family: monospace;
  color: #00ffea;
  font-weight: 600;
}
