/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

* {
  box-sizing: border-box;
  font-family: Lato, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}
html {
  font-size: 1rem;
  font-family: Lato, sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
section[id] {
  scroll-margin-top: 100px;
}
@media (min-width: 2401px) {
  html {
    font-size: 13px;
  }
}
@media (min-width: 2201px) and (max-width: 2400px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 1901px) and (max-width: 2200px) {
  html {
    font-size: 12px;
  }
}
@media (min-width: 1500px) and (max-width: 1900px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1500px) and (min-width: 1300px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 1299px) {
  html {
    font-size: 11px;
  }
}
::-webkit-scrollbar,
html ::-webkit-scrollbar {
  height: 1rem;
  width: 1rem;
}
::-webkit-scrollbar-track,
html ::-webkit-scrollbar-track {
  background: #f5f1f1;
}
::-webkit-scrollbar-thumb,
html ::-webkit-scrollbar-thumb {
  background-color: #452e24;
  border-radius: 1rem;
  border: 1px solid #e6e6f0;
}
body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: Lato;
  overflow-y: auto;
  overflow-x: auto;
}
.main {
  width: 100%;
  min-height: calc(100vh - 60px);
  position: relative;
  flex-grow: 2;
}
a,
button {
  text-decoration: none;
  cursor: pointer;
}
ul {
  list-style: none;
}
img {
  width: 100%;
}

.text_center {
  text-align: center;
}

:root {
  --geogames-color-bg: #0b1220;
  --geogames-color-surface: #121a2b;
  --geogames-color-accent: #3cd2b4;
  --geogames-color-accent-2: #7aa8ff;
  --geogames-color-text: #e7edf6;
  --geogames-color-muted: #e5e8ee;
  --geogames-radius: 16px;
  --geogames-gap: 20px;
  --geogames-max: 1280px;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/lato-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.geogames_body {
  background: var(--geogames-color-bg);
  color: var(--geogames-color-text);
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.6;
}

.geogames_container {
  width: 100%;
  max-width: var(--geogames-max);
  margin: 0 auto;
  padding: 5rem 16px;
}

.geogames_heading {
  font-size: 2.4rem;
  letter-spacing: 0.4px;
  text-align: center;
}

.geogames_subheading {
  font-size: 1.8rem;
  text-align: center;
}

.geogames_text {
  font-size: 1.4rem;
  color: var(--geogames-color-muted);
}

.geogames_button {
  display: inline-block;
  font-size: 1.4rem;
  padding: 12px 22px;
  color: #0a1220;
  background: linear-gradient(
    135deg,
    var(--geogames-color-accent),
    var(--geogames-color-accent-2)
  );
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(122, 168, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.geogames_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(60, 210, 180, 0.35);
  filter: saturate(1.1);
}

.geogames_header {
  position: relative;
  text-align: center;
}

/* Remove large vertical padding from container inside header */
.geogames_header > .geogames_container {
  padding: 16px;
}

.geogames_header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--geogames-gap);
  padding: 18px 16px;
}

.geogames_header__brand {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.geogames_header__brandIcon {
  font-size: 2rem;
}

.geogames_header__brandText {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--geogames-color-text);
}

.geogames_header__toggle {
  font-size: 1.6rem;
  background: var(--geogames-color-surface);
  color: var(--geogames-color-text);
  border: 1px solid rgba(231, 237, 246, 0.1);
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.geogames_header__toggle:hover {
  transform: translateY(-1px);
  background: #1b2740;
}

.geogames_header__nav {
  display: none;
  width: 100%;
}

.geogames_header__nav--open {
  display: block;
}

.geogames_header__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  padding: 0;
  margin: 10px 0 0 0;
  list-style: none;
}

.geogames_header__link {
  display: inline-block;
  font-size: 1.3rem;
  padding: 5px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--geogames-color-text);
  background: transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.geogames_header__link:hover {
  background: rgba(231, 237, 246, 0.08);
  transform: translateY(-1px);
}

.geogames_header__banner {
  padding: 60px 0 80px 0;
  background: linear-gradient(
      135deg,
      rgba(11, 18, 32, 0.6) 0%,
      rgba(11, 18, 32, 0.6) 100%
    ),
    url("assets/images/0.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.geogames_header__bannerWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 32px;
  position: relative;
  z-index: 1;
  flex-direction: column;
}

.geogames_header__banner .geogames_text {
  font-size: 1.8rem;
  line-height: 1.5;
  max-width: 800px;
  text-align: center;
}

.geogames_header__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.geogames_intro__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.geogames_intro__media {
  flex: 1 1 380px;
  min-width: 280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.geogames_intro__mediaBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: var(--geogames-color-surface);
  border: 1px solid rgba(231, 237, 246, 0.08);
  border-radius: var(--geogames-radius);
  padding: 12px;
}

.geogames_intro__image {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
}

.geogames_intro__content {
  flex: 1 1 420px;
  min-width: 280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.geogames_footer {
  border-top: 1px solid rgba(231, 237, 246, 0.08);
  background: #0a1120;
}

.geogames_footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px 40px;
}

.geogames_footer__brand {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.geogames_footer__logo {
  font-size: 1.6rem;
  text-align: center;
}

.geogames_footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.geogames_footer__link {
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--geogames-color-muted);
  transition: color 0.2s ease;
}

.geogames_footer__link:hover {
  color: var(--geogames-color-accent);
}

.geogames_footer__contactLink {
  text-decoration: none;
  color: var(--geogames-color-text);
}

.geogames_header__nav {
  display: block;
  width: auto;
}

.geogames_header__toggle {
  display: none;
}

.geogames_header__list {
  margin: 0;
}

.geogames_header__inner {
  justify-content: center;
  align-items: flex-end;
  gap: 24px 40px;
}

.geogames_header__brandText {
  font-size: 2rem;
}

.geogames_heading {
  font-size: 3rem;
}

.geogames_subheading {
  font-size: 2rem;
}
.ttext {
  font-size: 1.8rem;
  line-height: 1.5;
  max-width: 800px;
  text-align: center;
}

.geogames_thanks {
  padding: 6rem 0;
  background: var(--geogames-color-bg);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.geogames_thanks__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.geogames_thanks__content {
  max-width: 500px;
  background: var(--geogames-color-surface);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 3rem;
  border: 1px solid rgba(231, 237, 246, 0.1);
}

.geogames_thanks__icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  animation: bounce 1s ease-in-out;
}

.geogames_thanks__title {
  margin-bottom: 1.5rem;
  color: var(--geogames-color-primary);
}

.geogames_thanks__message {
  margin-bottom: 2.5rem;
  color: var(--geogames-color-muted);
}

.geogames_thanks__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.geogames_button--secondary {
  background: rgba(231, 237, 246, 0.1);
  color: var(--geogames-color-text);
  border: 1px solid rgba(231, 237, 246, 0.2);
}

.geogames_button--secondary:hover {
  background: rgba(231, 237, 246, 0.2);
  border-color: rgba(231, 237, 246, 0.3);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 859px) {
  .geogames_thanks {
    padding: 4rem 0;
  }

  .geogames_thanks__content {
    padding: 2.5rem;
  }
}

@media (max-width: 480px) {
  .geogames_thanks__content {
    padding: 2rem;
  }

  .geogames_thanks__actions {
    flex-direction: column;
    align-items: center;
  }
}
