/* =========================
   GLOBAL
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: radial-gradient(circle at top, #1f3a8a, #0b1324 75%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 50px;
}

.brand {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand span {
    opacity: 0.8;
    margin-left: 4px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Base links */
.nav-right a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

/* Dropdown wrapper */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  display: block;
  padding: 8px 4px;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 180px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 8px 14px;
  color: #e5e7eb;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}



/* =========================
   HERO
========================= */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: 30px;
}

.cta {
    background: #2563eb;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.cta:hover {
    background: #1d4ed8;
}

/* =========================
   FOOTER
========================= */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    font-size: 13px;
    opacity: 0.85;
}

.status.online {
    color: #22c55e;
}
