    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #1a1919;
      color: #e0e0e0;
      font-family: 'Montserrat', sans-serif;
    }

    /* Welcome Form Container */
    #welcome-form-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      height: 100vh;
      width: 100%;
      padding: 40px;
      gap: 60px;
      overflow-x: hidden;
      position: relative;
      background-image: linear-gradient(-42deg, #40667a 2%, #386375 9%, #1a1919 44%, #1a1919 100%);
    }

    #welcome-form-container.hidden {
      display: none;
    }



/* Top center nav container */
    .welcome-top-nav {
      position: absolute;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 26px;
      z-index: 2;
      background: rgba(11, 11, 11, 0.35);
      padding: 1px 20px;
      padding-top: 15px;
      border-radius: 140px;
      backdrop-filter: blur(12px);
      border: 1px solid rgba(159, 241, 78, 0.1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    /* Individual logo link */
    .nav-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      color: #ffffff;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 6px 10px;
      border-radius: 10px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

     

    /* SVG styling */
    .nav-logo svg {
      width: 26px;
      height: 26px;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Label styling */
    .nav-logo span {
      margin-top: 8px;
      opacity: 0;
      transform: translateY(-6px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      color: #9ff14e;
      text-transform: uppercase;
      font-size: 10px;
      white-space: nowrap;
    }

    /* Hover effects */
    .nav-logo:hover svg {
      transform: translateY(-3px) scale(1.1);
      filter: drop-shadow(0 4px 8px rgba(159, 241, 78, 0.3));
    }

    .nav-logo:hover span {
      opacity: 1;
      transform: translateY(0);
    }

    /* Active state */
    .nav-logo:active {
      transform: scale(0.95);
    }

    /* Responsive design */
    @media (max-width: 768px) {
      .welcome-top-nav {
        gap: 16px;
        padding: 0px 10px;
        padding-top: 15px;
      }

      .nav-logo svg {
        width: 28px;
        height: 28px;
      }

      .nav-logo span {
        font-size: 9px;
      }
    }







    /* Left side - RADON branding */
    .welcome-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 0 60px;
      animation: fadeInLeft 0.8s ease-out;
      margin-left: 70px;
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .brand-container {
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      gap: 38px;
    }

    .brand-name-vertical {
      font-size: 112px;
      /* Bigger */
      font-weight: 700;
      letter-spacing: 10px;
      color: #fff;
      line-height: 1;
      text-transform: uppercase;

      /* Bottom to top */
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    }

    .brand-one {
      font-size: 102px;
    }

.brand-one-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
}

/* Logo above the E */
.brand-logo {
  position: absolute;
  width: 350px;
  top: -140px;          /* vertical position above E */
  left: 175%;           /* horizontally center over ONE */
  transform: translateX(-50%);
  pointer-events: none;
}


    .brand-description {
      font-size: 16px;
      color: #666;
      line-height: 1.6;
      max-width: 500px;
    }

    /* Right side - Login form */
    .welcome-right {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 60px;
      animation: fadeInRight 0.8s ease-out;
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .welcome-content {
      max-width: 620px;
      width: 100%;
      /* border: 2px solid #9ff14e; */
      padding: 20px;
      border-radius: 20px;
      /* background: #1a1919; */
    }

    .form-header {
      margin-bottom: 36px;
    }

    .form-header h1 {
      color: #ffffff;
      font-size: 32px;
      margin-bottom: 8px;
      font-weight: 700;
      letter-spacing: -1px;
    }

    .form-header .subtitle {
      color: #888;
      font-size: 15px;
      line-height: 1.5;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      color: #888;
      font-weight: 500;
      margin-bottom: 8px;
      font-size: 13px;
      letter-spacing: 0.3px;
    }

    .form-group input {
      width: 100%;
      padding: 13px 14px;
      background: #222;
      border: 1px solid #333;
      border-radius: 6px;
      font-size: 15px;
      color: #e0e0e0;
      transition: all 0.2s;
    }

    .form-group input::placeholder {
      color: #555;
    }

    .form-group input:focus {
      outline: none;
      border-color: #9ff14e;
      background: #252525;
    }

    .form-group input.error {
      border-color: #ff4444;
    }

    .error-message {
      color: #ff4444;
      font-size: 12px;
      margin-top: 6px;
      display: none;
    }

    .error-message.show {
      display: block;
    }

    #submit-btn {
      width: 100%;
      padding: 13px;
      background: #000000;
      color: #ffffff;
      border: none;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      margin-top: 8px;
    }

    #submit-btn:hover {
      background: #151515;
      transform: translateY(-1px);
    }

    #submit-btn:active {
      transform: scale(0.98);
    }

    .divider {
      text-align: center;
      margin: 24px 0;
      color: #ffffff;
      font-size: 13px;
      position: relative;
    }

    .divider::before,
    .divider::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 40%;
      height: 1px;
      background: #ffffff;
    }

    .divider::before {
      left: 0;
    }

    .divider::after {
      right: 0;
    }

    .g_id_signin {
      display: flex;
      justify-content: center;
    }

    /* Chatbot Container */
    #noxie-chatbox {
      display: none;
      height: 100vh;
      width: 100%;
      flex-direction: column;
      position: relative;
    }

    #noxie-chatbox.open {
      display: flex;
    }

    .noxie-header {
      background: #1a1919;
      border-bottom: 1px solid #2a2a2a;
      padding: 16px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 56px;
      flex-shrink: 0;
    }

    .noxie-header h2 {
      font-size: 15px;
      font-weight: 600;
      color: #9ff14e;
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: -0.3px;
    }

    #noxie-close {
      background: transparent;
      border: none;
      color: #666;
      font-size: 24px;
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s;
      padding: 0;
      line-height: 1;
    }

    #noxie-close:hover {
      color: #9ff14e;
    }

    #noxie-messages {
      flex: 1;
      overflow-y: auto;
      overflow-x: hidden;
      padding: 20px;
      background: #1a1919;
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 800px;
      width: 100%;
      margin: 0 auto;
      scroll-behavior: smooth;
    }

    #noxie-messages::-webkit-scrollbar {
      width: 6px;
    }

    #noxie-messages::-webkit-scrollbar-track {
      background: transparent;
    }

    #noxie-messages::-webkit-scrollbar-thumb {
      background: #333;
      border-radius: 3px;
    }

    .noxie-message {
      animation: slideUp 0.25s ease-out;
      max-width: 85%;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .noxie-message.noxie-bot {
      align-self: flex-start;
    }

    .noxie-message.noxie-user {
      align-self: flex-end;
    }

    .noxie-message p,
    .noxie-content {
      padding: 0;
      border-radius: 0;
      line-height: 1.65;
      word-wrap: break-word;
      font-size: 15px;
    }

    .noxie-bot p,
    .noxie-bot .noxie-content {
      background: transparent;
      color: #e0e0e0;
      border: none;
    }

    .noxie-bot .noxie-content h2,
    .noxie-bot .noxie-content h3,
    .noxie-bot .noxie-content h4 {
      color: #fff;
      margin: 16px 0 8px;
      font-weight: 600;
      line-height: 1.3;
    }

    .noxie-bot .noxie-content h2 {
      font-size: 18px;
    }

    .noxie-bot .noxie-content h3 {
      font-size: 16px;
    }

    .noxie-bot .noxie-content h4 {
      font-size: 15px;
    }

    .noxie-bot .noxie-content p {
      margin: 10px 0;
      color: #e0e0e0;
    }

    .noxie-bot .noxie-content ul,
    .noxie-bot .noxie-content ol {
      margin: 10px 0;
      padding-left: 24px;
      color: #e0e0e0;
    }

    .noxie-bot .noxie-content li {
      margin: 6px 0;
      line-height: 1.65;
    }

    .noxie-bot .noxie-content strong {
      font-weight: 600;
      color: #fff;
    }

    .noxie-bot .noxie-content em {
      font-style: italic;
      color: #d0d0d0;
    }

    .noxie-bot .noxie-content code {
      background: #2a2a2a;
      padding: 2px 6px;
      border-radius: 4px;
      font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Courier New', monospace;
      font-size: 13px;
      color: #9ff14e;
    }

    .noxie-bot .noxie-content a {
      color: #9ff14e;
      text-decoration: none;
      transition: all 0.2s;
    }

    .noxie-bot .noxie-content a:hover {
      color: #8ee03d;
      text-decoration: underline;
    }

    .noxie-user p {
      background: #9ff14e;
      color: #1a1919;
      font-weight: 500;
      padding: 11px 14px;
      border-radius: 10px;
    }

    .thinking {
      opacity: 0.5;
    }

    .noxie-options {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 8px;
      max-width: 380px;
    }

    .noxie-option-btn {
      padding: 12px 14px;
      background: #222;
      border: 1px solid #333;
      color: #e0e0e0;
      border-radius: 8px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s;
      text-align: left;
    }

    .noxie-option-btn:hover {
      background: #252525;
      border-color: #9ff14e;
      color: #9ff14e;
    }

    .noxie-link-btn {
      display: inline-block;
      background: #9ff14e;
      color: #1a1919;
      padding: 5px 10px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 600;
      font-size: 13px;
      transition: all 0.2s;
    }

    .noxie-link-btn:hover {
      background: #8ee03d;
    }

    .noxie-input-area {
      padding: 16px 20px;
      background: #1a1919;
      border-top: 1px solid #2a2a2a;
      display: flex;
      justify-content: center;
      flex-shrink: 0;
    }

    .noxie-input-wrapper {
      display: flex;
      gap: 10px;
      max-width: 800px;
      width: 100%;
      align-items: flex-end;
    }

    #noxie-userInput {
      flex: 1;
      padding: 11px 14px;
      background: #222;
      border: 1px solid #333;
      border-radius: 8px;
      font-size: 14px;
      color: #e0e0e0;
      resize: none;
      min-height: 44px;
      max-height: 150px;
      font-family: inherit;
      transition: all 0.2s;
      line-height: 1.4;
      overflow-y: auto;
    }

    #noxie-userInput::placeholder {
      color: #555;
    }

    #noxie-userInput:focus {
      outline: none;
      border-color: #9ff14e;
      background: #252525;
    }

    #noxie-userInput::-webkit-scrollbar {
      width: 4px;
    }

    #noxie-userInput::-webkit-scrollbar-thumb {
      background: #444;
      border-radius: 2px;
    }

    #noxie-send {
      padding: 11px 20px;
      background: #9ff14e;
      color: #1a1919;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.2s;
      height: 44px;
      flex-shrink: 0;
    }

    #noxie-send:hover {
      background: #8ee03d;
    }

    #noxie-send:active {
      transform: scale(0.96);
    }

    /* Mobile Responsive */
    @media (max-width: 1026px) {
      #welcome-form-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 40px;
      }

      .welcome-left {
        padding: 0 20px;
        align-items: center;
      }

      .brand-container {
        justify-content: center;
      }

      .brand-description {
        text-align: center;
      }

      .welcome-right {
        padding: 0 20px;
      }
    }

    @media (max-width: 768px) {
      .brand-name-vertical {
        font-size: 56px;
        letter-spacing: 6px;
      }

      .brand-one {
        font-size: 48px;
      }

      .brand-description {
        font-size: 14px;
      }

      .noxie-header {
        padding: 14px 16px;
        min-height: 52px;
      }

      .noxie-header h2 {
        font-size: 14px;
      }

      #noxie-messages {
        padding: 16px;
        gap: 10px;
      }

      .noxie-message {
        max-width: 90%;
      }

      .noxie-message p,
      .noxie-content {
        font-size: 15px;
      }

      .noxie-bot .noxie-content h2 {
        font-size: 17px;
      }

      .noxie-bot .noxie-content h3 {
        font-size: 15px;
      }

      .noxie-user p {
        padding: 10px 12px;
      }

      .noxie-input-area {
        padding: 12px 16px;
      }

      #noxie-userInput {
        font-size: 16px;
        max-height: 120px;
        min-height: 42px;
      }

      #noxie-send {
        padding: 11px 16px;
        height: 42px;
        font-size: 14px;
      }

      .noxie-input-wrapper {
        gap: 8px;
      }

      .form-header h1 {
        font-size: 28px;
      }
    }

    @media (max-width: 1024px) {
      .brand-name-vertical {
        font-size: 48px;
        letter-spacing: 5px;
        transform: rotate(-90deg);
        margin-top: 100px;
      }

      .brand-one {
        font-size: 40px;
      }

      .brand-one-wrapper{
        align-items: flex-start;
      }

      .brand-logo {
        width: 140px;
        top: 10px;
        left: -60px;
      }

      .form-header h1 {
        font-size: 24px;
      }

      .form-header .subtitle {
        font-size: 14px;
      }
    }