:root {
  --bg: #070707;
  --panel: #111;
  --orange: #ff8a00;
  --orange2: #ffb000;
  --text: #f5f5f5;
  --muted: #aaa;
  --border: rgba(255, 138, 0, .22);
  --shadow: 0 20px 60px rgba(255, 105, 0, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 115, 0, .18), transparent 35%),
    linear-gradient(180deg, #080808 0%, #050505 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo strong {
  display: block;
  color: var(--orange);
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
}

.logo span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.2;
}

.menu {
  display: flex;
  gap: 26px;
  align-items: center;
  color: #ddd;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.menu a:hover,
.menu a.active {
  color: var(--orange);
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  border: 1px solid rgba(255,255,255,.12);
  background: #151515;
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  border-color: var(--orange);
}

.btn.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #090909;
  border: none;
  box-shadow: 0 14px 32px rgba(255, 138, 0, .28);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  color: #777;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 950px) {
  .menu {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .actions .btn {
    flex: 1;
  }
}

.admin-floating-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #090909;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 14px 32px rgba(255, 138, 0, .28);
}

.admin-floating-btn:hover {
  transform: translateY(-2px);
}