@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./fonts/archivo-vietnamese.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./fonts/archivo-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./fonts/archivo-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font: 'Archivo', system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 6vw, 64px) clamp(20px, 5vw, 40px);
}

.wrap {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 6vw, 48px);
}

.top-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.logo {
  height: clamp(64px, 12vw, 88px);
  width: auto;
  display: block;
}

.lang-toggle {
  display: flex;
  border: 2px solid #fff;
  flex-shrink: 0;
}
.lang-toggle button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  padding: 6px 12px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  background: #000;
  color: #fff;
}
.lang-toggle button + button { border-left: 2px solid #fff; }
.lang-toggle button.active { background: #fff; color: #000; }

.heading-block { width: 100%; text-align: left; }
.kicker {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ec3013;
  margin-bottom: 8px;
  font-weight: 700;
}
h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(28px, 6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}
.rule { height: 2px; width: 56px; background: #fff; margin-top: 16px; }

.providers {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 2px solid #fff;
}
.provider-btn {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.provider-btn:hover { background: #fff; color: #000; }
.provider-icon {
  width: 28px;
  height: 28px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.provider-label { flex: 1; text-align: left; }
.provider-arrow { font-size: 18px; line-height: 1; }

.reason-box {
  width: 100%;
  border: 2px solid #fff;
  padding: 16px;
}
.reason-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}
.reason-text { margin: 0; font-size: 15px; line-height: 1.5; color: #fff; }

.retry-btn {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.retry-btn:hover { background: #000; color: #fff; }

.terms {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0;
  max-width: 320px;
}
