    html {
      scrollbar-width: none;
    }
    ::-webkit-scrollbar {
      display: none;
    }

    body {
      margin: 0;
      font-family: sans-serif;
      background-color: #0e0e0e;
      color: #e0e0e0;
      line-height: 1.6;
    }

    .container {
      max-width: 960px;
      margin: 0 auto;
      padding: 1rem;
      display: flex;
      align-items: center;
    }

    .site-header,
    .site-footer {
      background: linear-gradient(135deg, #1e1e1e, #111);
      padding: 1rem 0;
      border-bottom: 1px solid #2a2a2a;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
    }

    .logo-img {
      width: 64px;
      height: 64px;
      margin-right: 15px;
    }

    .logo-text {
      font-size: 42px;
      letter-spacing: 3px;
      background: linear-gradient(135deg, #dfc68e, #9f7f45, #dfc68e);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: serif;
      font-weight: 500;
    }

    .nav {
      margin-left: auto;
    }

    .nav a {
      margin-left: 1.5rem;
      font-weight: 500;
      color: #bbbbbb;
      text-decoration: none;
      position: relative;
      transition: color 0.3s;
    }

    .nav a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: #dfc68e;
      transition: width 0.3s;
    }

    .nav a:hover {
      color: #dfc68e;
    }

    .nav a:hover::after {
      width: 100%;
    }

    .hero {
      background: linear-gradient(135deg, #121212, #1f1f1f);
      padding: 4rem 1rem;
      text-align: center;
      box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.03);
    }

    .hero h2 {
      font-size: 2.5rem;
      background: linear-gradient(90deg, #dfc68e, #cab278);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
      color: #b0b0b0;
    }

    .btn-gold {
      display: inline-block;
      margin-top: 2rem;
      padding: 0.75rem 1.5rem;
      background: linear-gradient(135deg, #dfc68e, #8a6e3f);
      color: #000;
      font-weight: 600;
      text-decoration: none;
      border-radius: 10px;
      box-shadow: 0 0 12px rgba(223, 198, 142, 0.5);
      transition: transform 0.2s, box-shadow 0.3s;
    }

    .btn-gold:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(223, 198, 142, 0.7);
    }

    .features {
      background-color: #121212;
      padding: 2rem 1rem;
      box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.02);
    }

    .features h3 {
      font-size: 1.8rem;
      background: linear-gradient(90deg, #dfc68e, #9f7f45);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1.5rem;
    }

    .feature-list {
      list-style: none;
      padding: 0;
    }

    .feature-list li {
      padding: 0.75rem 0;
      font-size: 1.1rem;
      border-bottom: 1px solid #2a2a2a;
      background: linear-gradient(90deg, #dfc68e, #cab278);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .site-footer p {
      margin: 0;
      color: #aaaaaa;
      text-align: center;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        align-items: flex-start;
      }
      .nav {
        margin-left: 0;
        margin-top: 1rem;
      }
      .logo-text {
        font-size: 28px;
      }
      .hero h2 {
        font-size: 1.8rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }