@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b0b0c;
  --bg-panel: #141414;
  --orange: #ff5500;
  --orange-2: #ff7a00;
  --text: #f5f5f5;
  --text-dim: #9a9a9a;
  --border: #262626;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #2e2e2e #111317;
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: #0d0d0d;
}

html::-webkit-scrollbar-thumb {
  background: #ff5500;
  border-radius: 5px;
  border: 2px solid #0d0d0d;
}

html::-webkit-scrollbar-thumb:hover {
  background: #ff7a33;
}

body {
  position: relative;
  background-color: var(--bg);
  color: var(--text);
  font-family: Play, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.bg-hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1000px;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(ellipse at 20% 0%, rgba(255, 85, 0, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(28, 19, 13, 0.75) 0%, rgba(11, 9, 8, 0.9) 65%),
    url('/assets/icons/bg.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.bg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

.scroll-indicator {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 0 46px;
  z-index: 2;
}

.scroll-indicator button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.scroll-indicator svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 6px rgba(255, 85, 0, 0.55));
}

.scroll-indicator .ring {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 85, 0, 0.35);
}

header {
  position: relative;
  z-index: 50;
  top: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease);
}

header.scrolled {
  background: rgba(11, 11, 12, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo .dot {
  color: var(--orange);
}

.logo img {
  width: 140px;
}

.nav-link {
  color: #a7a7a7;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: #ff5500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .25s ease, border-color .25s ease, color .25s ease;
}

.btn-primary {
  background: #ff5500;
  color: #ffffff;
  padding: 10px 26px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: Play, sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(-1px);
}

main {
  position: relative;
  z-index: 1;
  background: url(/assets/icons/section-scroll-bg.png) center top 250px;
}

.hero-bg {
  position: relative;
  background-repeat: no-repeat;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

main .hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 8%;
  right: 6%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.16), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Play, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 18px;
  padding: 7px 14px 7px 10px;
  border: 1px solid rgba(255, 85, 0, 0.3);
  border-radius: 999px;
  background: rgba(255, 85, 0, 0.07);
}

.hero-kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 85, 0, 0.55);
  flex-shrink: 0;
}

.hero-copy h1 {
  font-size: 72px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  background-color: transparent;
  background-image: linear-gradient(169deg, #FFFFFF 50%, #FFFFFF45 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  -webkit-text-stroke: 1px white;
}

.hero-copy h1 .accent {
  background-image: linear-gradient(169deg, var(--orange-2) 40%, var(--orange) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--orange);
}

.hero-copy p {
  font-family: 'Inter', sans-serif;
  color: #a7a7a7;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 28px;
}

.hero-btn-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.hero-copy .btn-primary {
  padding: 16px 24px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Play, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}

.btn-ghost svg {
  width: 14px;
  height: 14px;
  transition: transform .25s var(--ease);
}

.btn-ghost:hover {
  color: var(--orange-2);
  border-color: var(--orange-2);
  gap: 13px;
}

.btn-ghost:hover svg {
  transform: translateX(2px);
}

.verify-card {
  position: relative;
  background: linear-gradient(160deg, #171717, var(--bg-panel) 55%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 26px;
  align-items: start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}

.verify-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 15px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.55), transparent 40%, transparent 70%, rgba(255, 85, 0, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .8;
}

.verify-card:hover {
  transform: translateY(-6px);
}

.avatar-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}

.verify-card:hover .avatar-frame img {
  transform: scale(1.05);
}

.avatar-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.65) 100%);
}

.avatar-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 11, 12, 0.85);
  border: 1px solid rgba(255, 85, 0, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 5px 10px 5px 6px;
}

.avatar-badge svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
  flex-shrink: 0;
}

.avatar-badge span {
  font-family: Play, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange);
}

.why-verify .eyebrow {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background-color: transparent;
  background-image: linear-gradient(169deg, #ff5500 50%, #ff550045 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #ff5500;
}

.why-verify p {
  font-family: 'Inter', sans-serif;
  color: #a7a7a7;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.75;
}

.important {
  position: relative;
  padding: 120px 24px 100px;
  text-align: center;
}

.important h2 {
  color: var(--orange);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.important-sub {
  font-family: 'Inter', sans-serif;
  color: var(--text-dim);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.important-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.important-box {
  position: relative;
  overflow: hidden;
  border: 1px solid #282828;
  border-left: 3px solid var(--orange);
  background: linear-gradient(270deg, #0e0e0e 0%, #1a1a1a 85%);
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  text-align: left;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}

.important-box:hover {
  transform: translateY(-8px);
}

.important-box .rule-num {
  position: absolute;
  top: -18px;
  right: 6px;
  font-family: Play, sans-serif;
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  user-select: none;
}

.important-box .icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease), background .35s ease;
}

.important-box:hover .icon {
  transform: scale(1.08);
  background: rgba(255, 85, 0, 0.16);
}

.important-box .icon svg {
  width: 26px;
  height: 26px;
}

.important-box .tag {
  font-family: Play, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-2);
}

.important-box p {
  font-size: 19px;
  color: #e6e6e6;
  line-height: 1.4;
  position: relative;
}

.important-box strong {
  color: #fff;
  font-weight: 700;
}

.verify-steps {
  padding: 100px 24px 120px;
}

.verify-steps-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.verify-steps-copy h2 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1.05;
  background-image: linear-gradient(169deg, #ffffff 50%, #ffffff45 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 26px;
  -webkit-text-stroke: 1px white;
}

.verify-steps-copy p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 20px;
}

.verify-steps-copy-fix {
  position: sticky;
  top: 0;
}

.verify-steps-copy .btn-primary {
  display: inline-block;
  margin-top: 14px;
  padding: 16px 30px;
  font-size: 14px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 40px;
  transition: transform .3s var(--ease);
}

.step-row:hover {
  transform: translateX(6px);
}

.step-arrow {
  width: 120px;
  display: flex;
  justify-content: center;
  color: var(--text-dim);
  padding: 6px 0;
}

.step-arrow svg {
  width: 18px;
  height: 18px;
}

.step-icon-frame {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s var(--ease);
}

.step-row:hover .step-icon-frame {
  transform: scale(1.08);
}

.step-icon-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.18), transparent 70%);
}

.step-icon-frame img {
  position: relative;
  width: 200px;
  height: 200px;
  z-index: 1;
  object-fit: contain;
}

.step-icon-frame.final::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
}

.step-icon-frame.final img {
  width: 200px;
  height: 200px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

.step-label .eyebrow {
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.step-label .title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 900px) {
  .verify-steps-inner {
    grid-template-columns: 1fr;
  }
}

.prove-legit {
  padding: 100px 24px 120px;
}

.prove-legit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.prove-badges {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.prove-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 30px 14px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #2a1f14, #141414 70%);
  transition: transform .3s var(--ease), border-color .3s ease;
  width: fit-content;
}

.prove-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 85, 0, 0.4);
}

.prove-badge:nth-child(2) {
  align-self: flex-end;
  background: linear-gradient(135deg, #1a1a1a, #0e0e0e 70%);
}

.prove-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  flex-shrink: 0;
}

.prove-badge-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Play, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.prove-badge-name svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.prove-badge-sub {
  font-family: 'Inter', sans-serif;
  color: var(--text-dim);
  font-size: 15px;
  margin-top: 4px;
}

.prove-copy h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1.05;
  background-image: linear-gradient(169deg, #ffffff 50%, #ffffff45 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
  margin-bottom: 18px;
}

.prove-copy h2 .accent {
  background-image: linear-gradient(169deg, var(--orange-2) 40%, var(--orange) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--orange);
}

.prove-lead {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.prove-copy p {
  font-family: 'Inter', sans-serif;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
}

@media (max-width: 900px) {
  .prove-legit-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .prove-badge:nth-child(2) {
    align-self: flex-start;
  }
}

.trust-cta {
  padding: 60px 24px 140px;
  text-align: center;
}

.trust-visual {
  position: relative;
  max-width: 760px;
  height: 420px;
  margin: 0 auto 20px;
}

.trust-stars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-stars img {
  width: 600px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.5));
}

.trust-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 7px 18px 7px 7px;
  backdrop-filter: blur(6px);
  z-index: 3;
  text-align: left;
  transition: transform .3s var(--ease), border-color .3s ease;
}

.trust-chip:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(255, 85, 0, 0.5);
}

.trust-chip .chip-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.trust-chip .chip-name {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.trust-chip .chip-name svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.trust-chip .chip-sub {
  font-size: 12px;
  color: var(--text-dim);
  white-space: nowrap;
}

.chip-1 {
  left: 0%;
  top: 26%;
}

.chip-2 {
  left: 12%;
  top: 52%;
}

.chip-3 {
  right: 6%;
  top: 20%;
}

.chip-4 {
  right: 0%;
  top: 46%;
}

.trust-cta h2 {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 30px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;

}

.trust-cta .trust-sub {
  color: var(--text-dim);
  font-size: 18px;
  margin-bottom: 36px;
}

.trust-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.trust-buttons-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-buttons .btn-primary {
  padding: 18px 38px;
  font-size: 15px;
}

.btn-outline {
  padding: 15px 30px;
  font-size: 13.5px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #3a3a3a;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .trust-visual {
    height: 340px;
  }

  .trust-stars img {
    width: 260px;
  }

  .trust-chip {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-bg {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-bg::before {
    width: 380px;
    height: 380px;
    right: -10%;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .verify-card {
    grid-template-columns: 150px 1fr;
  }

  .important-grid {
    grid-template-columns: 1fr;
  }

  .nav-link {
    display: none;
  }
}

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid #1c1c1c;
  padding: 30px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo img {
  width: 26px;
}

.footer-links-primary,
.footer-links-secondary {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links-primary a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color .2s;
}

.footer-links-primary a:hover {
  color: var(--orange);
}

.footer-divider {
  width: 1px;
  height: 16px;
  background: #2c2c2c;
  flex-shrink: 0;
}

.footer-links-secondary a,
.footer-links-secondary span {
  color: #6b6b6b;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: color .2s;
}

.footer-links-secondary a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.footer-social a {
  display: flex;
  color: #fff;
  opacity: .9;
  transition: opacity .2s, color .2s, transform .25s var(--ease);
}

.footer-social a:hover {
  opacity: 1;
  color: var(--orange);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-social {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 6, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease);
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.verify-modal {
  width: 600px;
  max-width: calc(100vw - 32px);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 26px 26px;
  transform: translateY(18px) scale(.97);
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.modal-overlay.is-open .verify-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.verify-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.verify-modal-back {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: transform .2s var(--ease);
}

.verify-modal-back:hover {
  transform: translateX(-3px);
}

.verify-modal-back img {
  width: 18px;
}

.verify-modal-tag {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5c5c5c;
  font-weight: 700;
  cursor: pointer;
}

.verify-modal-content {
  max-width: 450px;
  margin: auto;
  padding: 20px 0;
}

.verify-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.verify-row .icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin-top: 2px;
  color: var(--orange);
}

.verify-row .icon svg {
  width: 100%;
  height: 100%;
}

.verify-row .icon.ok {
  color: #3ecf6d;
}

.verify-row-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.verify-row-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}

.verify-row-desc ul {
  list-style: none;
  margin-top: 2px;
}

.verify-row-desc li {
  position: relative;
  padding-left: 12px;
  margin-top: 4px;
}

.verify-row-desc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
}

.verify-modal-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0 20px;
}

.verify-modal-cta {
  text-align: center;
}

.verify-modal-cta p {
  font-size: 13.5px;
  color: #d6d6d6;
  margin-bottom: 14px;
}

.verify-modal-btn {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  font-size: 13px;
}

.verify-modal-btn svg {
  width: 15px;
  height: 15px;
}

.verify-modal-help {
  text-align: center;
  margin-top: 18px;
  font-size: 12.5px;
  color: #767676;
}

.verify-modal-help a {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}

.verify-modal-help a:hover {
  color: var(--orange);
}

/* Steam OpenID Modal Styles */
.m-b-back {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,.6);
  z-index: 999999;
  overflow: auto;
}

.m-window-t092 {
  background: #191a1d;
  border-radius: 10px;
  box-sizing: border-box;
  width: 960px;
  max-width: 95vw;
  border: 1px solid #505053;
  position: relative;
}

.m-1-flex {
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  padding: 0 16px;
  cursor: default;
}

.m-1-text {
  display: flex;
  gap: 7px;
  color: #ffffff;
  box-sizing: border-box;
  font-size: 12px;
  align-items: center;
  font-weight: 500;
  margin: 0px;
  font-family: 'Inter', sans-serif;
  padding-top: 5px;
}

.m-1-inner {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  gap: 20px;
  margin: 0px;
  padding-top: 5px;
  margin-bottom: 9px;
  color: #fff;
}

.m-1-inner svg {
  cursor: pointer;
  box-sizing: border-box;
}

.col-line-thiselement-querly {
  width: 100%;
  height: 1px;
  box-sizing: border-box;
  background-color: #505053;
}

.m-2-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 11px;
  box-sizing: border-box;
  margin: 0;
  transition: all 0.3s ease;
}

.m-2-flex:hover {
  background-color: #2d2e31;
}

.m-2-1 p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #9aa0a6;
  margin: 0;
  padding: 4px 0;
  box-sizing: border-box;
}

.i-fr-ame-co-ntent iframe {
  width: 100%;
  height: 700px;
  border: none;
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}