@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

body {
  background: #111;
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  min-height: 100vh;
}

.navbar {
  width: 100%;
  background: #181818;
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 56px;
  box-shadow: none;
  border-bottom: 1.5px solid #222;
}

.navbar-logo {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  margin-right: 36px;
  border-radius: 12px;
  padding: 4px 14px;
  transition: background 0.2s, color 0.2s;
  font-family: 'Montserrat', Arial, sans-serif;
  user-select: none;
}

.navbar-logo:hover {
  background: #222;
  color: #00e6b8;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  font-family: 'Montserrat', Arial, sans-serif;
  user-select: none;
}


/* Diğer sayfalar için eski hover */
body .navbar-menu li a:hover {
  background: #222;
  color: #00e6b8;
}

.main-content {
  max-width: 480px;
  margin: 64px auto 0 auto;
  padding: 32px 18px;
  background: #181818;
  border-radius: 22px;
  box-shadow: none;
  text-align: center;
}

.main-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', Arial, sans-serif;
}

.main-content p {
  font-size: 1.08rem;
  color: #b2becd;
  font-family: 'Montserrat', Arial, sans-serif;
}

body, .main-content, .navbar, .navbar-logo, .navbar-menu, h1, h2, h3, h4, h5, h6, p, span, li, ul, div {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}