    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: font-name-1, font-name-2, generic-family;
      background: #000;
      color: #fff;
      min-height: 100vh;
    }

    /* Navigation Bar */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.95);
      padding: 1rem 2rem;
      z-index: 1000;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      letter-spacing: 2px;
      color: #fff;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2.5rem;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: #fff;
      font-size: 0.9rem;
      letter-spacing: 1px;
      transition: all 0.3s;
      position: relative;
      text-transform: uppercase;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 1px;
      background: #fff;
      transition: width 0.3s;
    }

    .nav-links a:hover {
      opacity: 0.7;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
      z-index: 1001;
    }

    .menu-toggle span {
      width: 25px;
      height: 2px;
      background: #fff;
      transition: 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Hero Section */
    header {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
      margin-top: 70px;
      background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
    }

    .hero-content {
      max-width: 900px;
      margin-bottom: 3rem;
    }

    .typing-container {
      font-size: 4rem;
      font-weight: bold;
      min-height: 5rem;
      margin-bottom: 1rem;
      letter-spacing: 3px;
    }

    .typing-text {
      display: inline-block;
      border-right: 3px solid #fff;
      padding-right: 8px;
      animation: blink 0.7s infinite;
    }

    @keyframes blink {
      0%, 50% { border-color: #fff; }
      51%, 100% { border-color: transparent; }
    }

    .subtitle {
      font-size: 1.3rem;
      letter-spacing: 2px;
      opacity: 0;
      animation: fadeIn 1s forwards;
      animation-delay: 2.5s;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 2rem;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    .btn-container {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      opacity: 0;
      animation: fadeIn 1s forwards;
      animation-delay: 3s;
    }

    .btn {
      padding: 1rem 2.5rem;
      background: transparent;
      color: #fff;
      text-decoration: none;
      border: 2px solid #fff;
      font-size: 0.9rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      transition: all 0.3s;
      display: inline-block;
    }

    .btn:hover {
      background: #fff;
      color: #000;
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    }

    /* Footer */
    footer {
      background: #000;
      padding: 2rem;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    footer p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.9rem;
      letter-spacing: 1px;
    }

    footer a {
      color: #fff;
      text-decoration: none;
      transition: opacity 0.3s;
    }

    footer a:hover {
      opacity: 0.7;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s;
        padding: 2rem;
      }

      .nav-links.active {
        right: 0;
      }

      .typing-container {
        font-size: 2.5rem;
      }

      .subtitle {
        font-size: 1rem;
      }

      .btn-container {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
      }

      .btn {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .typing-container {
        font-size: 2rem;
      }

      .logo {
        font-size: 1.2rem;
      }
    }
