:root {
        --bg-dark: #0f0f14;
        --bg-card: #16161d;
        --bg-elevated: #1c1c24;
        --silver: #c0c0c0;
        --silver-dim: rgba(192, 192, 192, 0.15);
        --text-light: #e5e5e5;
        --text-dim: #888;
        --gold: #ffd700;
        --gold-dim: rgba(255, 215, 0, 0.1);
      }
      * {
        margin: 0;
        box-sizing: border-box;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        background-color: var(--bg-dark);
        font-family: "Roboto Condensed", sans-serif;
        color: var(--text-light);
      }

      /* NAV */
      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--bg-dark);
        border-bottom: 1px solid var(--silver-dim);
        padding: 10px 2rem;
        position: fixed;
        width: 100%;
        z-index: 1000;
      }
      .logo img {
        max-height: 40px;
      }
      .nav-links {
        display: flex;
        list-style: none;
        gap: 15px;
        align-items: center;
      }
      .nav-links a {
        text-decoration: none;
        color: var(--text-light);
        font-weight: 800;
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: color 0.3s;
      }
      .nav-links a:hover {
        color: var(--gold);
      }
      .auth-btn {
        background: var(--silver);
        color: var(--bg-dark);
        padding: 8px 12px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        border: none;
        font-size: 0.8rem;
        font-family: "Roboto Condensed", sans-serif;
        transition: background 0.3s;
      }
      .auth-btn:hover {
        background: var(--gold);
      }

       /* HAMBURGER */
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
        background: none;
        border: none;
        z-index: 1001;
      }
      .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--silver);
        border-radius: 2px;
        transition: all 0.3s ease;
      }
      .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      .hamburger.open span:nth-child(2) {
        opacity: 0;
      }
      .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }
      @media (max-width: 768px) {
        .hamburger {
          display: flex;
        }
        .nav-links {
          display: none;
          position: fixed;
          top: 61px;
          left: 0;
          right: 0;
          background: #0f0f14;
          border-bottom: 1px solid rgba(192, 192, 192, 0.2);
          flex-direction: column;
          padding: 20px;
          gap: 15px;
          z-index: 999;
          text-align: center;
        }
        .nav-links.open {
          display: flex;
        }
        .nav-links li {
          width: 100%;
        }
        .nav-links a {
          font-size: 1rem;
          display: block;
          padding: 10px 0;
        }
        .auth-btn {
          width: 100%;
          padding: 12px;
          font-size: 0.95rem;
          margin-top: 5px;
        }
      }

      /* HERO */
      .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
        border-bottom: 1px solid var(--silver-dim);
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(
          ellipse at 50% 80%,
          rgba(255, 215, 0, 0.05) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .hero-tag {
        display: inline-block;
        background: var(--gold-dim);
        border: 1px solid rgba(255, 215, 0, 0.3);
        color: var(--gold);
        padding: 6px 20px;
        border-radius: 50px;
        font-size: 0.75rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 20px;
      }
      .hero h1 {
        font-family: "Playfair Display", serif;
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 900;
        margin-bottom: 15px;
      }
      .hero h1 span {
        color: var(--gold);
      }
      .hero p {
        color: var(--text-dim);
        font-size: 0.9rem;
      }

      /* LAYOUT */
      .page-wrap {
        max-width: 1100px;
        margin: 0 auto;
        padding: 60px 20px;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 60px;
        align-items: start;
      }

      /* SIDEBAR */
      .sidebar {
        position: sticky;
        top: 90px;
      }
      .sidebar h3 {
        color: var(--silver);
        font-size: 0.75rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--silver-dim);
      }
      .sidebar ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 5px;
      }
      .sidebar ul li a {
        color: var(--text-dim);
        text-decoration: none;
        font-size: 0.82rem;
        padding: 6px 10px;
        border-radius: 4px;
        display: block;
        transition: 0.3s;
        border-left: 2px solid transparent;
      }
      .sidebar ul li a:hover {
        color: var(--gold);
        border-left-color: var(--gold);
        background: var(--gold-dim);
      }

      /* CONTENT */
      .content {
        min-width: 0;
      }

      .last-updated {
        background: var(--bg-card);
        border: 1px solid var(--silver-dim);
        border-radius: 8px;
        padding: 12px 18px;
        font-size: 0.82rem;
        color: var(--text-dim);
        margin-bottom: 40px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .last-updated span {
        color: var(--gold);
        font-weight: bold;
      }

      .doc-section {
        margin-bottom: 50px;
      }
      .section-divider {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        margin-top: 60px;
        padding-top: 60px;
        border-top: 1px solid var(--silver-dim);
      }
      .section-divider:first-child {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
      }
      .section-divider-icon {
        width: 40px;
        height: 40px;
        background: var(--gold-dim);
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
      }
      .section-divider h2 {
        font-family: "Playfair Display", serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--text-light);
      }

      .doc-section h3 {
        color: var(--gold);
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin: 25px 0 12px;
        padding-left: 12px;
        border-left: 3px solid var(--gold);
      }
      .doc-section p {
        color: var(--text-dim);
        font-size: 0.9rem;
        line-height: 1.9;
        margin-bottom: 15px;
      }
      .doc-section ul,
      .doc-section ol {
        padding-left: 20px;
        margin-bottom: 15px;
      }
      .doc-section ul li,
      .doc-section ol li {
        color: var(--text-dim);
        font-size: 0.9rem;
        line-height: 1.9;
        margin-bottom: 6px;
      }
      .doc-section ul li::marker {
        color: var(--gold);
      }
      .doc-section ol li::marker {
        color: var(--gold);
        font-weight: bold;
      }

      .highlight-box {
        background: var(--bg-card);
        border: 1px solid var(--silver-dim);
        border-left: 3px solid var(--gold);
        border-radius: 8px;
        padding: 18px 20px;
        margin: 20px 0;
      }
      .highlight-box p {
        color: var(--text-dim);
        font-size: 0.875rem;
        line-height: 1.8;
        margin: 0;
      }
      .highlight-box strong {
        color: var(--text-light);
      }

      .warning-box {
        background: rgba(255, 68, 68, 0.05);
        border: 1px solid rgba(255, 68, 68, 0.2);
        border-left: 3px solid #ff4444;
        border-radius: 8px;
        padding: 18px 20px;
        margin: 20px 0;
      }
      .warning-box p {
        color: #ff8888;
        font-size: 0.875rem;
        line-height: 1.8;
        margin: 0;
      }

      .contact-box {
        background: var(--bg-card);
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 12px;
        padding: 25px;
        margin-top: 20px;
        text-align: center;
      }
      .contact-box p {
        color: var(--text-dim);
        font-size: 0.875rem;
        margin-bottom: 10px;
      }
      .contact-box a {
        color: var(--gold);
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
      }
      .contact-box a:hover {
        text-decoration: underline;
      }

      @media (max-width: 768px) {
        .page-wrap {
          grid-template-columns: 1fr;
        }
        .sidebar {
          display: none;
        }
      }