:root {
  --blue: #006dff;
  --blue-dark: #0055cc;
  --white: #ffffff;
  --black: #050505;
  --dark: #101010;
  --dark-soft: #161616;
  --text: #f5f5f5;
  --muted: #c7c7c7;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background-image: url("../img/webBG.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at center, rgba(0, 109, 255, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.38);
}

a {
  color: inherit;
  text-decoration: none;
}

.main-area {
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.label {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.description {
  max-width: 620px;
  margin-top: 28px;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.65;
}

.description-second {
  margin-top: 14px;
}

.small-note {
  max-width: 470px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.access-card {
  padding: 58px 48px;
  background: rgba(16, 16, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 760px) {
  .main-area {
    min-height: auto;
    padding: 52px 16px;
  }

  .access-card {
    padding: 38px 26px;
  }

  .description {
    font-size: 1.05rem;
  }
}