    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  	body {
  	  background: #0a0a12;
  	  min-height: 100vh;
  	  display: flex;
  	  flex-direction: column;
  	  align-items: center;
  	  justify-content: center;
  	  font-family: 'Poppins', sans-serif;
	}

    .ls-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding: 20px;
    }

    .ls-logo img {
      height: 80px;
      opacity: .92;
    }

    .ls-prompt {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    .ls-buttons {
      display: flex;
      gap: 20px;
    }

    .ls-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 10px;
      padding: 22px 38px;
      cursor: pointer;
      transition: border-color .2s, background .2s, transform .15s;
      text-decoration: none;
    }

    .ls-btn:hover {
      border-color: rgba(255,255,255,0.55);
      background: rgba(255,255,255,0.05);
      transform: translateY(-2px);
    }

    .ls-btn:active { transform: translateY(0); }

    .ls-flag {
      width: 48px;
      height: 32px;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
      display: block;
    }

    .ls-flag svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .ls-label {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
    }

    @media (max-width: 480px) {
      .ls-btn { padding: 18px 28px; }
      .ls-flag { width: 40px; height: 27px; }
    }
	.seo-content {
  	  max-width: 600px;
  	  margin: 20px auto 0;
 	  padding: 0 20px;
  	  text-align: center;
	}

	.seo-content h1 {
  	  font-size: 14px;
  	  font-weight: 500;
  	  color: rgba(255,255,255,0.6);
  	  margin: 0 0 8px;
	}

	.seo-content p {
  	  font-size: 13px;
  	  color: rgba(255,255,255,0.3);
  	  line-height: 1.6;
  	  margin: 0;
	}