<style>
  /* Reset & base */
  * {
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  body, html {
    margin: 0; padding: 0;
    background-color: #000;
    color: #FFD700;
    font-family: "Arial", sans-serif;
  }

  /* Header */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 999;
  }
  header .logo {
    font-size: 24px;
    font-weight: bold;
  }
  nav {
    display: flex;
    gap: 20px;
  }
  nav a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
  }
  nav a:hover {
    color: #fff;
  }
  header .icons {
    display: flex;
    gap: 15px;
  }
  header .icons a svg {
    fill: #FFD700;
    width: 24px;
    height: 24px;
    transition: fill 0.3s;
  }
  header .icons a:hover svg {
    fill: #fff;
  }
  /* Mobile Hamburger */
  #menu-toggle {
    display: none;
  }
  #menu-toggle-label {
    display: none;
    cursor: pointer;
  }

  /* Hero Section */
  .hero {
    padding: 140px 20px 80px; /* header fixed offset */
    text-align: center;
    background: linear-gradient(90deg, #FFD700 0%, #000 100%);
    color: #000;
  }
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .hero button {
    background: #000;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 12px 28px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
  }
  .hero button:hover {
    background: #FFD700;
    color: #000;
    border-color: #000;
  }

  /* Sections */
  section {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
  }
  section h2 {
    color: #FFD700;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    display: inline-block;
    padding-bottom: 6px;
  }
  ul {
    list-style: none;
    padding-left: 0;
  }
  ul li {
    padding-left: 1.2em;
    text-indent: -1.2em;
    margin-bottom: 10px;
  }
  ul li::before {
    content: "•";
    color: #FFD700;
    padding-right: 8px;
  }
  .twitter-tweet
  {
    margin: 0 auto;
  }
  blockquote {
    background-color: #111;
    border-left: 5px solid #FFD700;
    padding: 20px;
    color: #FFD700;
    font-style: italic;
    margin: 0;
  }

  /* Call to Action */
  .cta {
    text-align: center;
    padding-bottom: 60px;
  }
  .cta button {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 16px 40px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
  }
  .cta button:hover {
    background: #e6c300;
  }

  /* Footer */
  footer {
    background-color: #111;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    color: #555;
  }

  /* Responsive */
  @media (max-width: 768px) {
    nav {
      position: fixed;
      top: 60px;
      right: 0;
      background: #111;
      height: calc(100vh - 60px);
      width: 200px;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      padding-top: 20px;
    }
    nav a {
      margin: 10px 0;
      font-size: 18px;
    }
    #menu-toggle:checked + nav {
      transform: translateX(0);
    }
    #menu-toggle-label {
      display: block;
      color: #FFD700;
    }
    header .icons {
      display: none; /* Hide icons on mobile to simplify */
    }
  }
</style>