﻿body {
  margin: 0;
  background: #07030d;
  color: white;
  font-family: Arial, sans-serif;
}

.navbar {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16%;
  background: #07030d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-size: 26px;
  font-weight: 800;
}

.menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.menu a {
  color: white;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-form input {
  height: 42px;
  width: 160px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(150, 90, 255, 0.4);
  background: #12091f;
  color: white;
}

.top-form button,
.discord-btn,
.apply-btn {
  height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  background: #8f36ff;
  color: white;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 24px;
  }

  .menu {
    display: none;
  }

  .top-form input {
    width: 120px;
  }
}