    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

    body {
      background-color: #121212;
      color: #e0e0e0;
      font-family: 'Poppins', Arial, sans-serif;
      margin: 0;
      text-align: center;
    }

    header.navbar{
      height: 64px;
      background-color: #343434;
      display: flex;align-items: center;justify-content: space-between;
      padding: 0 16px;
      position: fixed;top: 0;left: 0;right: 0;
      z-index: 998;
      box-sizing: border-box;
      overflow-x: auto;
    }

    .nav-left, .nav-right{
      display: flex;align-items: center;gap: 12px;
      flex-wrap: nowrap;
    }

    .nav-right {
      flex-shrink: 0;
      white-space: nowrap;
    }

    .brand{
      display: flex;align-items: center;gap: 10px;
      font-weight: 600;font-size: 1rem;color: #fff;
      text-decoration: none;
      white-space: nowrap;
    }

    .brand .logo{
      width: 38px;height: 38px;border-radius: 8px;
      background: linear-gradient(135deg,#e6e9ef,#cfd6e3);
      display: inline-flex;align-items: center;justify-content: center;color: #121212;font-weight: 700;
      flex-shrink: 0;
    }

    .btn{
      display: inline-flex;align-items: center;gap: 8px;padding: 8px 12px;border-radius: 8px;background: transparent;cursor: pointer;font-size: 0.95rem;color: #e0e0e0;text-decoration: none;border: 1px solid transparent;
      white-space: nowrap;
    }
    .btn:hover{background-color: #555;}
    .btn.primary{background: #03DAC6;color: black;}
    .btn.primary:hover{background: #018786;}

    .home-link{display: inline-flex;align-items: center;gap: 8px;padding: 8px;border-radius: 8px;text-decoration: none;color: #e0e0e0;white-space: nowrap;}
    .home-link:hover{background-color: #555;}

    main {
      margin-top: 70px;
      padding: 20px;
    }

    h1, h2, h3, h4 {
      color: #ffffff;
    }

    a {
      color: #03DAC6;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }