    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: #0f0f15;
      color: #f1f5f9;
      line-height: 1.6;
    }

    .wrapper {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 40px;
    }

    
    header {
      background-color: #242432;
      width: 100%;
      padding: 16px 0;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      height: 48px;
    }

    .header-buttons {
      display: flex;
      gap: 12px;
    }

    .btn {
      padding: 10px 24px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      text-align: center;
      transition: transform 0.2s ease, opacity 0.2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
      opacity: 0.95;
    }

    .btn-register {
      background-color: #FFD700;
      color: #000;
    }

    .btn-login {
      background-color: #000000;
      color: #fff;
    }
    .hero-section {
      background-color: #14141c;
      width: 100%;
      padding: 80px 0;
    }

    .hero-content {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .text-block {
      flex: 1;
      min-width: 0;
    }

    .text-block h1 {
      font-size: 38px;
      margin-bottom: 24px;
      color: white;
    }

    .text-block p {
      font-size: 20px;
      color: #e2e8f0;
      line-height: 1.7;
    }

    .image-block {
      flex: 0 0 auto;
      width: 320px;
      opacity: 0.9;
    }

    .image-block img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }

    footer {
      text-align: left;
      padding: 30px 0;
      color: #94a3b8;
      font-size: 0.95rem;
    }

    @media (max-width: 992px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
      }

      .text-block {
        text-align: left;
      }

      .image-block {
        width: 240px;
        margin-top: 30px;
      }
    }

    @media (max-width: 768px) {
      .wrapper {
        padding: 0 20px;
      }

      .header-content {
        padding: 0;
      }

      .logo {
        height: 40px;
      }

      .header-buttons {
        gap: 8px;
      }

      .btn {
        padding: 8px 16px;
        font-size: 0.95rem;
      }

      .hero-section {
        padding: 60px 0;
      }

      .text-block h1 {
        font-size: 2.4rem;
      }

      .text-block p {
        font-size: 1.2rem;
      }

      .image-block {
        width: 200px;
      }
    }