body { font-family: 'Segoe UI', sans-serif; background: #0c0c0c; color: #fff; }
header {
  background: #0c0c0c; display: flex; justify-content: space-between; align-items: center;
  padding: 15px 20px; border-bottom: 3px solid rgba(255,255,255,0.1);
}
.logo-container { display: flex; align-items: center; gap: 8px; }
.logo-img { height: 32px; }
.access-btn {
  padding: 8px 20px; font-weight: 600; color: #d4af37;
  border: 1px solid #d4af37; background: transparent;
  border-radius: 6px; text-decoration: none; cursor: pointer; transition: all 0.3s;
}
.access-btn:hover { background: rgba(212,175,55,0.10); color: #ffe066; }
.modal-login {
  display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.52); justify-content: center; align-items: center;
}
.modal-login.active { display: flex; }
.login-content {
  background: #000; border-radius: 13px; padding: 34px 32px 26px 32px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.21); max-width: 350px;
  margin: auto; position: relative; border: 1px solid #d4af37;
  display: flex; flex-direction: column; align-items: center;
}
.close-btn {
  position: absolute; top: 10px; right: 10px; background: transparent;
  border: none; font-size: 1.7rem; color: #bbb; cursor: pointer;
}
.close-btn:hover { color: #ffd700; }
.btn-login {
  padding: 8px 20px; font-weight: 600; color: #d4af37; border: 1px solid #d4af37;
  background: transparent; border-radius: 6px; text-decoration: none;
  transition: all 0.3s; font-size: 1rem; cursor: pointer; width: 100%; margin-top: 20px;
}
.btn-login:hover { background-color: #1a1407; color: #ffe066; border-color: #ffe066; }
.login-msg { margin-top: 10px; color: #bbb; font-size: 0.97rem; }
.login-msg a { color: #ffe066; text-decoration: underline; }
@media (max-width: 600px) {
  .logo-img { height: 27px !important; max-width: 80vw; }
  header { padding: 7px 7vw; }
}
