:root {
  --bg-color: #0a0a0a;
  --accent-color: #ff6b00;
  --secondary-bg-color: #1f1f1f;
  --glow-color: rgba(255, 107, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-color);
  color: #fff;
  font-family: 'Archivo Variable', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  overflow-x: hidden;
}

h2 {
  color: var(--accent-color);
  font-variation-settings: "wdth" 125;
  font-size: 72px;
  font-weight: 700;

  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.2;
  transition: text-shadow 0.3s;
}

h2:hover {
  text-shadow: 0 0 20px var(--glow-color);
}

p {
  font-size: 18px;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

a {
  color: #fff;
  text-decoration: none;
  font-family: 'Archivo Variable', sans-serif;
  transition: color 0.3s, transform 0.3s;
}

a:hover {
  transform: translateY(-2px);
}

img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
}

.section {
  position: relative;
  overflow: hidden;
}

.section.secondary {
  background-color: var(--secondary-bg-color);
}

.button {
  background: linear-gradient(135deg, var(--accent-color), #ff4500);
  color: var(--bg-color);
  text-transform: uppercase;
  border-radius: 0;
  padding: 24px 42px;
  font-size: 17px;
  font-weight: 500;
  box-shadow: 0 4px 15px var(--glow-color);
  transition: box-shadow 0.4s, transform 0.4s;
  display: inline-block;
}

.button:hover {
  box-shadow: 0 8px 25px var(--glow-color);
  transform: translateY(-3px);
}

.navbar {
  z-index: 19;
  background-color: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar-container {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px;
  display: flex;
}

.nav-menu {
  background-color: var(--bg-color);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 40vw;
  height: 100%;
  margin: 0;
  position: fixed;
  inset: 0% 0% 0% auto;
  overflow: hidden;
  display: none;
}

.nav-menu-link-holder {
  background-color: var(--accent-color);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 40vw;
  min-width: 40vw;
  max-width: 40vw;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  padding: 82px 13px;
  display: flex;
}

.nav-links {
  grid-column-gap: 6px;
  border-bottom: 1px solid var(--bg-color);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: background-color 0.8s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}



.nav-link {
  color: var(--secondary-bg-color);
  font-variation-settings: "wdth" 125, "wght" 900;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 62px;
  font-weight: 800;
  transition: font-variation-settings 0.45s, opacity 0.6s;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-link.w--current {
  color: #000;
  font-variation-settings: "wdth" 125, "wght" 100;
}

.menu-button {
  background-color: var(--accent-color);
  justify-content: center;
  align-items: center;
  width: 69px;
  height: 69px;
  transition: background-color 0.375s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
  position: relative;
}

.brand {
  justify-content: center;
  align-items: center;
  width: 69px;
  min-width: 69px;
  padding-bottom: 0;
  display: flex;
}

.middle-name {
  -webkit-backdrop-filter: blur(21px);
  backdrop-filter: blur(21px);
  background-color: #02112038;
  padding: 9px 11px;
}

.game-name {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

.red-text {
  color: var(--accent-color);
}

.menu-icon {
  width: 32px;
  position: relative;
}

.loader-holder {
  z-index: 22;
  background-color: var(--bg-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.loader-container {
  grid-row-gap: 21px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-width: 100vw;
  max-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  position: absolute;
  inset: 0%;
}

.loading-text {
  color: var(--accent-color);
  font-variation-settings: "wdth" 62, "wght" 100;
  font-size: 32px;
  font-weight: 700;
}

.loading-bar {
  background-color: var(--secondary-bg-color);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 200px;
  height: 10px;
  display: flex;
}

.loading {
  background-color: var(--accent-color);
  width: 60%;
  height: 100%;
}

.loading-logo {
  width: 48px;
}

.bg-overlay {
  background-image: radial-gradient(circle, #0000, #0003);
  position: absolute;
  inset: 0%;
}

.fade-in-on-scroll {
  opacity: 0;
}

/* Banner Section */
.contact-banner {
  padding: 130px 0;
  text-align: center;
  position: relative;
}

.banner-text {
  color: var(--accent-color);
  font-variation-settings: "wght" 900, "wdth" 125;
  font-size: 11vw;
  font-weight: 700;
  line-height: 0.9;
  text-shadow: 0 0 15px var(--glow-color);
  animation: pulse 2s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.02);
  }
}

.main-background-holder {
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
  height: 100%;
}

.main-background-image {
  opacity: 0.8;
  width: 100%;
  transform: translate3d(0px, 4.9485%, 0px) scale3d(1.1, 1.1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  filter: brightness(0.85) contrast(1.1);
  transition: filter 0.5s;
}

.main-background-image:hover {
  filter: brightness(1) contrast(1.2);
}

.icons-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.icon,
.contact-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s, filter 0.3s;
}

.icon:hover,
.contact-icon:hover {
  transform: scale(1.2);
  filter: brightness(1.2) drop-shadow(0 0 5px var(--glow-color));
}

/* Contacts Section */
.contacts-section {
  padding: 100px 0;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-item {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px var(--glow-color);
  transition: transform 0.4s;
}

.contact-item:hover {
  transform: translateY(-10px);
}

.contact-title {
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 0 5px var(--glow-color);
  margin: 10px 0;
}

.contact-link {
  font-size: 18px;
  font-weight: 300;
}

/* Form Section */
.form-section {
  padding: 100px 0;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full-width {
  grid-column: span 2;
}

.form-field label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.text-field {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 12px;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.text-field:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 10px var(--glow-color);
  outline: none;
}

.text-field::placeholder {
  color: #c9c9c9;
}

.privacy-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.privacy-link {
  color: var(--accent-color);
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Map Section */
.map-section {
  padding: 100px 0;
}

.map-container {
  position: relative;
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s, box-shadow 0.4s;
}

.map-container:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--glow-color);
}

.map-overlay {
  background: linear-gradient(to top, var(--bg-color), transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--glow-color);
}

.faq-question {
  background: var(--secondary-bg-color);
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--accent-color);
}

.faq-answer {
  display: none;
  padding: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  background: var(--bg-color);
}

/* Footer */
.footer-container {
  z-index: 2;
  background-color: var(--bg-color);
  padding-top: 100px;
  padding-bottom: 20px;
  position: relative;
}

.footer-grid-holder {
  grid-column-gap: 230px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.footer-grid-content {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.footer-heading {
  color: var(--accent-color);
  font-variation-settings: "wdth" 125;
  font-size: 52px;
  font-weight: 900;
}

.footer-links-holder {
  justify-content: space-between;
  display: flex;
}

.footer-links-container {
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.footer-links {
  color: #fff;
  font-size: 25px;
  font-weight: 300;
  transition: color 0.3s;
}

.footer-links:hover {
  color: var(--accent-color);
}

.footer-copy-right {
  grid-row-gap: 24px;
  flex-direction: column;
  padding-top: 120px;
  display: flex;
}

.footer-copy-right-content {
  grid-column-gap: 16px;
  border-top: 1px solid #2f2f2f;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  display: flex;
}

.footer-copy-right-links {
  color: #c9c9c9;
  font-size: 18px;
  transition: color 0.35s;
}

.footer-copy-right-links:hover {
  color: var(--accent-color);
}

.footer-copy-right-links.white {
  color: #fff;
}

.links-holder {
  grid-column-gap: 16px;
  display: flex;
}

.footer-logo-holder {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-logo-container {
  width: 69px;
}

.footer-logo {
  width: 100%;
}

/* Responsive */
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1340px;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 48px;
  }

  .banner-text {
    font-size: 10vh;
  }

  .nav-menu-link-holder {
    width: 60vw;
    min-width: 60vw;
    max-width: 60vw;
  }

  .nav-menu {
    width: 60vw;
  }

  .footer-grid-holder {
    grid-column-gap: 130px;
  }

  .footer-heading {
    font-size: 32px;
  }

  .footer-links-holder {
    grid-column-gap: 40px;
  }

  .footer-copy-right-content {
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full-width {
    grid-column: span 1;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 36px;
  }

  p {
    font-size: 16px;
  }

  .nav-menu-link-holder {
    width: 80vw;
    min-width: 80vw;
    max-width: 80vw;
  }

  .nav-menu {
    width: 80vw;
  }

  .banner-text {
    font-size: 7vh;
  }

  .footer-grid-holder {
    grid-row-gap: 60px;
    flex-direction: column;
    display: flex;
  }

  .footer-heading {
    font-size: 42px;
  }

  .footer-links-holder {
    grid-column-gap: 0px;
  }

  .links-holder {
    justify-content: space-between;
    width: 100%;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {

  .container,
  .container.navbar-container {
    padding: 1em;
  }

  h2 {
    font-size: 28px;
  }

  .banner-text {
    font-size: 13vw;
  }

  .nav-menu-link-holder {
    grid-row-gap: 70px;
    justify-content: center;
    align-items: center;
    width: 90vw;
    min-width: 90vw;
    max-width: 90vw;
    padding: 80px 14px;
  }

  .nav-menu {
    justify-content: center;
    align-items: center;
    width: 90vw;
    display: flex;
  }

  .nav-link {
    font-size: 38px;
  }

  .button {
    padding: 18px 30px;
    font-size: 15px;
  }

  .footer-heading {
    font-size: 32px;
  }

  .footer-links {
    font-size: 20px;
  }

  .footer-copy-right-content {
    grid-row-gap: 30px;
  }

  .links-holder._02 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .map-container iframe {
    height: 300px;
  }
}

@font-face {
  font-family: 'Archivo Variable';
  src: url('https://cdn.prod.website-files.com/66db7f57ef9c0c7a7026f696/66db7f57ef9c0c7a7026f6ca_Archivo-VariableFont_wdth%2Cwght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}