/* Shared navbar styles across all pages */
:root {
    --nav-height: 90px;
  }
  
  /* Reserve space below fixed nav */
  body {
    padding-top: calc(var(--nav-height) + 12px);
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    background: rgba(10, 20, 32, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--panel-border, rgba(255,255,255,0.06));
  }
  
  .nav-inner {
    width: min(1100px, 92%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: var(--text-primary, #fff);
  }
  
  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.18));
    border: 1px solid var(--panel-border, rgba(255,255,255,0.06));
    display: grid;
    place-items: center;
    color: var(--accent, #1fb6ff);
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(31, 182, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--text-secondary, #b6c2cf);
    font-weight: 500;
    font-size: 17px;
    line-height: 1.2;
  }
  
  .nav-links a {
    padding: 8px 10px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
  }
  
  .nav-links a:hover {
    background: rgba(31, 182, 255, 0.08);
    color: var(--text-primary, #fff);
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .nav-cta {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--panel-border, rgba(255,255,255,0.06));
    color: var(--text-secondary, #b6c2cf);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .nav-cta small {
    font-size: 12px;
    color: var(--text-muted, #7f8fa3);
    line-height: 1.2;
  }
  
  .nav-cta:hover {
    background: rgba(31, 182, 255, 0.08);
    color: var(--text-primary, #fff);
  }

