@charset "utf-8";
/* CSS Document */


    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #111;
      color: #fff;
      min-height: 100vh;
      display: flex;
      align-items: stretch;
      justify-content: center;
    }

    .container {
      display: flex;
      width: 100%;
      min-height: 100vh;
    }

    .panel {
      flex: 1;
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .panel-left {
      background: #1b1b1b;
    }

    .panel-right {
      background: #222;
    }

    h1 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      letter-spacing: 0.05em;
    }

    p {
      margin-bottom: 20px;
      max-width: 420px;
      line-height: 1.4;
    }

    .btn-main {
      display: inline-block;
      margin-bottom: 25px;
      padding: 12px 24px;
      border-radius: 999px;
      border: 2px solid #fff;
      color: #111;
      background: #fff;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.85rem;
      transition: all 0.2s ease;
    }

    .btn-main:hover {
      background: transparent;
      color: #fff;
    }

    .lang-note {
      font-size: 0.8rem;
      opacity: 0.8;
      margin-bottom: 25px;
    }

    .preview-img {
      width: 180px;
      max-width: 60%;
      height: auto;
      margin-bottom: 25px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      object-fit: cover;
    }

    .secondary-link {
      color: #fff;
      text-decoration: none;
      font-size: 0.9rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      padding-bottom: 2px;
    }

    .secondary-link:hover {
      border-bottom-color: #fff;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .panel {
        min-height: 50vh;
      }
    }
  