      .glass {
        background: rgba(10, 10, 11, 0.7);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(39, 39, 42, 0.5);
      }
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
      }
      .reveal.active {
        opacity: 1;
        transform: translateY(0);
      }
      body {
        background-color: #0A0A0B;
        color: #f4f4f5;
        overflow-x: hidden;
      }
      input:focus, textarea:focus {
        border-color: #C5A059 !important;
        outline: none;
      }