        /* Custom styles for a dark, subtle ARG feel (Pure CSS) */
        body {
          font-family: 'Inter', sans-serif;
          background-color: #0d0d1a; /* Very dark blue/black */
          color: #e5e7eb; /* Light gray text */
          min-height: 100vh;
          margin: 0;
          padding: 0;
          line-height: 1.6;
      }
      .container {
          max-width: 1120px;
          margin-left: auto;
          margin-right: auto;
          padding-left: 1rem;
          padding-right: 1rem;
      }
      .text-gold {
          color: #d4af37; /* Gold accent color */
      }
      .bg-card {
          background-color: #1a1a2e; /* Darker blue/purple background for contrast */
      }

      /* Header/Navigation */
      .header {
          background-color: #1a1a2e;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
          position: fixed;
          width: 100%;
          z-index: 10;
          height: 64px;
          display: flex;
          align-items: center;
      }
      .header-content {
          display: flex;
          justify-content: space-between;
          align-items: center;
          height: 100%;
      }
      .logo {
          font-size: 1.5rem;
          font-weight: 700;
      }
      .nav {
          display: flex;
          gap: 1rem;
      }
      .nav-link {
          padding: 8px 12px;
          border-radius: 6px;
          font-size: 0.875rem;
          font-weight: 500;
          transition: color 150ms ease-in-out;
          text-decoration: none;
          color: inherit;
      }
      .nav-link:hover {
          color: #d4af37;
      }
      .nav-link:focus {
          outline: 2px solid #d4af37;
          outline-offset: 2px;
      }

      /* Main Content */
      .main {
          padding-top: 96px;
          padding-bottom: 48px;
      }
      .content-area {
          max-width: 896px;
          margin: 0 auto;
          padding-left: 1rem;
          padding-right: 1rem;
      }

      /* Hero Card */
      .hero-card {
          background-color: #1a1a2e;
          border-radius: 12px;
          padding: 32px;
          transition: all 500ms ease-in-out;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      }
      .hero-card:hover {
          box-shadow: 0 0 40px rgba(138, 43, 226, 0.5); /* subtle glow */
      }

      /* Typography */
      h1 {
          font-size: 3rem;
          font-weight: 800;
          margin-bottom: 1rem;
          line-height: 1.2;
      }
      h2 {
          font-size: 1.25rem;
          color: #9ca3af;
          margin-bottom: 2rem;
      }
      .intro-text {
          font-size: 1.125rem;
      }
      .intro-text p {
          margin-bottom: 1.5rem;
      }

      /* Discretion Bar Style */
      .discretion-quote {
          border-left: 4px solid #d4af37;
          padding-left: 1rem;
          font-style: italic;
          color: #d1d5db;
      }

      /* Footer */
      .footer {
          margin-top: 3rem;
          padding: 1.5rem 0;
          background-color: #1a1a2e;
      }
      .footer-content {
          max-width: 896px;
          margin: 0 auto;
          text-align: center;
          font-size: 0.875rem;
          color: #6b7280;
      }
      .footer-gold {
          margin-top: 0.5rem;
          font-size: 1rem;
          color: #d4af37;
          font-weight: 500;
      }

      /* Responsive adjustments */
      @media (min-width: 768px) {
          h1 {
              font-size: 4rem;
          }
          h2 {
              font-size: 1.5rem;
          }
          .hero-card {
              padding: 48px;
          }
      }