/* Global Styles */

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

@font-face {
  font-family: "Lato";
  src: url("/assets/assetsFASGW/fontsSAD/lato-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Montserrat";
  src: url("/assets/assetsFASGW/fontsSAD/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white, #fcfcfc);
  color: #000000;
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  padding: 0;
  margin: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 1240px) {
  .container {
    padding: 0 15px;
  }
}

/* Header */
.header {
  background: var(--white, #fcfcfc);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo_image {
  width: 32px;
  height: 21px;
}

.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #e5e7eb;
  text-decoration: none;
}

.nav-desktop ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-desktop a {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  text-decoration: none;
}

.auth-desktop {
  display: flex;
  gap: 16px;
}

.auth-desktop button {
  padding: 10px 22px;
  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  border-radius: 16px;

  text-decoration: none;

  min-width: 135px;
  max-width: 196px !important;

  text-align: center;
}

.auth-desktop button:hover {
  opacity: 0.8;
}

.auth-desktop button:first-child {
  border: 2px solid var(--Color_GR, #00361f);
  background: var(--Color_GOLD, #d7a850);
}

.auth-desktop button:last-child {
  border-radius: 16px;
  background: var(--Color_GR, #00361f);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}

.burger span {
  width: 28px;
  height: 3px;
  background: #00361f;
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background: #ffffff;
  padding: 80px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: 0.3s;
  z-index: 1001;
}

.mobile-menu.open {
  left: 0;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 26px;
  background: none;
  border: none;
  color: #000000;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.mobile-nav a {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  text-decoration: none;
}

.auth-mobile {
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* margin-top: auto; */
}

.auth-mobile button {
  padding: 10px 22px;
  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  border-radius: 16px;

  text-decoration: none;
  text-align: center;
}

.auth-mobile button:first-child {
  border: 2px solid var(--Color_GR, #00361f);
  background: var(--Color_GOLD, #d7a850);
}

.auth-mobile button:last-child {
  border-radius: 16px;
  background: var(--Color_GR, #00361f);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.overlay.show {
  display: block;
}

/* Hero */
.hero {
  padding: 40px 0;
}

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

@media (max-width: 980px) {
  .hero-section {
    align-items: center;
    justify-content: center;
  }
}

.hero-content {
  text-align: start;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 980px) {
  .hero-content {
    align-items: center;
    justify-content: center;
  }
}

.hero-section-about {
  width: 100%;
  flex-direction: row;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 62px;
}
@media (max-width: 991px) {
  .hero-section-about {
    flex-direction: column;
  }
}

.hero-about {
  text-align: start;
  max-width: 795px !important;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}

.hero-about span {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.hero-about h1 {
  color: var(--Color_GOLD, #d7a850);
  font-family: Lato;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hero-about h1 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .hero-about h1 {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .hero-about h1 {
    font-size: 28px;
  }
}

.hero-about p {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* //fasf  */

.hero-content span {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.hero-content h1 {
  color: var(--Color_GOLD, #d7a850);
  font-family: Lato;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 28px;
  }
}

.hero-content p {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero-buttons {
  display: flex;
  height: auto;
}

.hero-buttons .button {
  width: 100%;

  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease;

  padding: 10px 12px;
  display: block;
  border-radius: 5px;
  overflow: hidden;
  position: relative;

  border-radius: 16px;
  border: 2px solid var(--Color_GR, #00361f);
  background: var(--Color_GOLD, #d7a850);
  text-align: center;
}

.button__glare {
  opacity: 0.8;
  position: absolute;
  top: -100px;
  left: -100px;
  display: block;
  background: #fff;
  width: 40px;
  height: 300px;
  transition: all 0.1s;
  transform: rotate(45deg);
  animation-delay: 0.05s;
  animation-timing-function: ease-in-out;
  animation-name: slide;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.hero-buttons a:hover {
  opacity: 0.8;
}

.hero-image-desktop {
  background-image: url("/assets/assetsFASGW/imagesFAaf/hero-item.webp");
  background-size: cover;
  background-position: center;
  width: 626px;
  height: 626px;
}

@media (max-width: 1080px) {
  .hero-image-desktop {
    /* display: none; */
    width: 480px;
    height: 480px;
  }
}
@media (max-width: 980px) {
  .hero-image-desktop {
    display: none;
  }
}

.hero-image-desktop-about {
  background-image: url("/assets/assetsFASGW/iconsSDf/about-item.webp");
  background-size: cover;
  background-position: center;
  width: 250px;
  height: 247px;
}

@media (max-width: 1080px) {
  .hero-image-desktop-about {
    width: 150px;
    height: 138px;
  }
}

.hero-image-mobile {
  background-image: url("/assets/assetsFASGW/imagesFAaf/hero-item.webp");
  background-size: cover;
  background-position: center;
  min-width: 200px;
  min-height: 200px;
  max-width: 201px;
  max-height: 201px;
  aspect-ratio: 1/1;
  display: none;
}

@media (max-width: 980px) {
  .hero-image-mobile {
    display: flex;
  }
}

.time-bar {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

@media (max-width: 991px) {
  .time-bar {
    gap: 15px;
  }
}

.type-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.type-time b {
  color: var(--Color_GOLD, #d7a850);
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.container-time {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid var(--Color_GR, #00361f);
  background: var(--white, #fcfcfc);
}

.container-time span {
  color: var(--Color_GR, #00361f);
  text-align: center;
  font-family: Lato;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (max-width: 991px) {
  .container-time span {
    font-size: 32px;
  }
}

/* Why Us */
.why-us {
  background: #f9f9f9;
  color: #000;
}

.why-us-content h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

.why-us ul {
  gap: 30px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;

  padding: 24px;
  justify-content: center;
  align-items: center;
  gap: 24px;

  border-radius: 16px;
  border: 2px solid var(--Color_GR, #00361f);
}

.why-us li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 205px;
}

.why-us .gif {
  background-image: url("/assets/assetsFASGW/iconsSDf/loader.gif");
  background-size: cover;
  background-position: center;
  width: 60px;
  height: 60px;
}

.why-us li h3 {
  color: var(--Color_GR, #00361f);
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.why-us li p {
  color: var(--Color_GR, #00361f);
  text-align: center;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

/* Top Canadian */
.top-canadian {
  padding: 40px 0;
}

.top-canadian ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
  justify-content: center;
}

.top-canadian li {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 16px;
  border: 2px solid var(--Color_GR, #00361f);
}

@media (max-width: 991px) {
  .top-canadian li {
    padding: 16px;
    max-width: 360px;
  }
}

@media (max-width: 420px) {
  .top-canadian li {
    padding: 10px;
    max-width: 280px;
  }
}

.top-canadian li img {
  margin-bottom: 20px;
}

.top-canadian li span {
  font-size: 24px;
  margin-bottom: 10px;
}

.top-canadian li p {
  font-size: 16px;
  margin-bottom: 20px;
}

.top-canadian li a {
  display: inline-block;
  padding: 10px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 16px;
  border: 2px solid var(--Color_GR, #00361f);
  background: var(--Color_GOLD, #d7a850);
  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;

  text-decoration: none;
  text-align: center;
}

/* Footer */
.footer {
  background: var(--Color_GR, #00361f);
  padding: 40px 0;
}

.footer .first-row-footer {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.footer .first-row-footer span {
  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer .first-row-footer p {
  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  .footer .first-row-footer {
    flex-direction: column;
  }
}

.first-first {
  max-width: 710px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.first-second {
  max-width: 498px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.first-second form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.first-second form input {
  max-width: 458px;
  display: flex;
  padding: 14px 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid var(--Color_GOLD, #d7a850);
  background: var(--white, #fcfcfc);

  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.first-second form button {
  width: 100%;
  display: flex;
  padding: 10px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 16px;
  background: var(--Color_GOLD, #d7a850);

  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.footer nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.second-row-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.second-row-footer ul li a {
  color: var(--white, #fcfcfc);
  text-align: center;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.socials {
  margin: 24px 0;
  width: 100%;
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .socials {
    justify-content: center;
  }
}

.socials img {
  height: auto;
}

.copytight {
  color: var(--white, #fcfcfc) !important;
  text-align: center !important;
  font-family: Lato !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: normal !important;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-desktop,
  .auth-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-content h1 {
    font-size: 32px;
  }

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

  .why-us ul {
    grid-template-columns: 1fr;
  }

  .top-canadian ul {
    grid-template-columns: 1fr;
  }

  .how-to-content {
    grid-template-columns: 1fr;
  }

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

  .footer nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .socials {
    justify-content: center;
  }
}

/* Buy Tickets Page Styles */
.page {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page .header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tickets-page h1 {
  color: var(--Color_GOLD, #d7a850);
  font-family: Lato;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (max-width: 1240px) {
  .tickets-page h1 {
    text-align: center;
    font-size: 38px;
  }
}

@media (max-width: 680px) {
  .tickets-page h1 {
    text-align: center;
    font-size: 26px;
  }
}

.tickets-page h2 {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  margin-bottom: 16px;
  margin-top: 16px;
}

@media (max-width: 1240px) {
  .tickets-page h2 {
    text-align: center;
  }
}

.page .gameWrapper {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  width: 100%;
}

@media (max-width: 1240px) {
  .page .gameWrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.wrappapa {
  width: 100% !important;
  min-width: 770px !important;
  max-width: 841px !important;
}

.gameWrapper .game {
  box-sizing: border-box;
  margin: -16px auto 0;
  display: flex;
  width: 100%;
  max-width: 841px;
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-radius: 20px;
  border: 1px solid #00361f;
}

@media (max-width: 1240px) {
  .gameWrapper .game {
    padding: 20px 10px;
    min-width: 110px !important;

    max-width: 100%;
  }
}
.page .gameWrapper .game .nejdanchik {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.page .tabs {
  max-width: 625px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1240px) {
  .page .tabs {
    align-items: center;
    justify-content: center;
  }
}

.page 
/* .gameWrapper  */
/* .game  */
.gameTab {
  display: flex;
  width: 196px;
  height: 40px;
  padding: 10px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 16px;
  border: 2px solid var(--Color_GR, #00361f);
  background: transparent;

  color: #00361f;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;

  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 680px) {
  .page .gameTab {
    width: 100%;
  }
}

.page 
/* .gameWrapper  */
/* .game  */
.gameTab.active {
  color: #fcfcfc;
  background: var(--Color_GOLD, #d7a850);
}

.wrappapapa {
  display: flex;
  flex-direction: column;
}

.page .gameWrapper .game .numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 772px;
}

@media (max-width: 1240px) {
  .page .gameWrapper .game .numbers {
    min-width: 200px;
    gap: 8px;
    justify-content: center;
  }
}

.page .gameWrapper .game .numbers li {
  list-style: none;
  min-width: 69px;
  min-height: 69px;
  max-width: 70px;
  max-height: 70px;
}

.numberCircle {
  display: flex;

  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 300px;
  border: 1px solid var(--Color_GOLD, #d7a850);
  background: var(--white, #fcfcfc);

  color: var(--Color_GOLD, #d7a850);
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.page .gameWrapper .game .numbers li {
  max-height: 67px !important;
}

.page .gameWrapper .game .numbers .numberCircle:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1240px) {
  .page .gameWrapper .game .numbers li {
    width: 45px !important;
    height: 45px !important;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page .gameWrapper .game .numbers li {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.page .gameWrapper .game .numbers .numberCircle.selected {
  color: #fcfcfc;
  border-radius: 300px;
  background: var(--Color_GOLD, #d7a850);
}

.page .gameWrapper .game > div {
  display: flex;
  gap: 16px;
}

.arrowNumbers {
  display: flex;
  padding: 14px 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid var(--Color_GR, #00361f);
  background: var(--white, #fcfcfc);

  margin: 16px 0 16px 0;
}

.arrowNumbers span {
  display: flex;
  padding: 10px;
  width: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 20/19;
  border-radius: 300px;
  background: var(--Color_GOLD, #d7a850);
  color: var(--white, #fcfcfc);
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.page .gameWrapper .toggles {
  white-space: nowrap;
  display: flex;
  width: 100%;
  max-width: 196px;
  padding: 10px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: var(--Color_GR, #00361f);
  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page .gameWrapper .toggles:active {
  transform: translateY(0);
}

.orderBar {
  margin-top: -65px;
  width: 100%;
  max-width: 380px;
}

@media (max-width: 1240px) {
  .orderBar {
    margin-top: 0;
    align-self: center;
  }
}

.page .gameWrapper .bar {
  display: flex;
  padding: 24px 16px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid var(--Color_GR, #00361f);
  background: var(--white, #fcfcfc);
}

@media (max-width: 1240px) {
  .page .gameWrapper .bar {
    max-width: 100%;
    height: auto;
  }
}

.page .gameWrapper .bar .infoRow {
  width: 100%;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page .gameWrapper .bar .infoRow span {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.page .gameWrapper .bar .totalRow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page .gameWrapper .bar .totalRow {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.totalRow:last-child {
  border-top: 2px solid #00361f;
  padding-top: 16px;
}

.page .gameWrapper .bar .totalRow b {
  margin: 0;
  padding: 0;
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.formOrder {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 338px;
}

.formOrder div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.formOrder div label {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.formOrder div input,
.formOrder div select {
  max-width: 338px;

  display: flex;
  padding: 14px 16px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid var(--Color_GR, #00361f);
  background: var(--white, #fcfcfc);
}

.page .gameWrapper .proceedButton {
  display: flex;
  padding: 10px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 16px;
  background: var(--Color_GR, #00361f);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;

  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.page .gameWrapper .bar .proceedButton:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(234, 32, 32, 0.4);
}

.page .gameWrapper .bar .proceedButton:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkboxInput {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
}

.checkboxInput input {
  width: 15px;
  height: 15px;
}

.checkboxInput p {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0;
  margin: 0;
}

.page .gameWrapper .bar b {
  margin-top: -15px;
  color: var(--white, #fff);
  text-align: center;
  font-family: "Chakra Petch";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 14.4px */
  display: block;
  font-style: italic;
}

.bottomBtn {
  margin-top: 24px;
}

.bottomBtn button {
  display: flex;
  width: 100%;
  height: 40px;
  padding: 10px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  border: 2px solid var(--Color_GR, #00361f);
  background: var(--Color_GOLD, #d7a850);
  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;

  cursor: pointer;
  transition: all 0.3s ease;
}

.bottomBtn button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(234, 32, 32, 0.4);
}

.contact-page {
  display: flex;
  flex-direction: row;
  gap: 80px;
  padding-bottom: 30px;
}

@media (max-width: 1240px) {
  .contact-page {
    gap: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
  }
}

.contact-info {
  display: flex;
  width: 360px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

@media (max-width: 1240px) {
  .contact-info {
    align-self: center;
  }
}

.contact-info span {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contact-info .info p {
  color: var(--Color_GR, #00361f);
  text-align: start;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

.contact-page .first {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.formSec {
  width: 100%;
  display: flex;
}

.formContact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

@media (max-width: 1240px) {
  .formContact {
    align-self: center;
    align-items: start;
    justify-content: center;
  }
}

.formContact input,
textarea {
  width: 100%;
  display: flex;
  padding: 14px 16px;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid var(--Color_GR, #00361f);
  background: var(--white, #fcfcfc);
}

@media (max-width: 1240px) {
  .formContact input,
  textarea {
    width: 360px;
  }
}

@media (max-width: 380px) {
  .formContact input,
  textarea {
    width: auto;
  }
}

.formContact .input-box {
  display: flex;
  flex-direction: column !important;
  align-items: flex-start;
  gap: 4px;
}
.formContact .withcheckbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4px;
}

.formContact .withcheckbox input {
  width: 15px;
  height: 15px;
}

.formContact label,
.formContact p {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.formContact label,
.formContact p {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.formContact button {
  display: flex;
  width: 196px;
  padding: 10px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: var(--Color_GR, #00361f);

  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 25px;
}

/* Utility classes */
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.gap-4 {
  gap: 16px;
}
.gap-3 {
  gap: 12px;
}
.gap-2 {
  gap: 8px;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.w-full {
  width: 100%;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.mt-5 {
  margin-top: 20px;
}
.pt-5 {
  padding-top: 20px;
}
.border-t-\[1px\] {
  border-top: 1px solid;
}
.border-\[#435470\] {
  border-color: #435470;
}
.justify-between {
  justify-content: space-between;
}

@media (max-width: 1240px) {
  .xl\:justify-between {
    justify-content: flex-start;
  }
  .xl\:gap-0 {
    gap: 16px;
  }
}
.typeGame {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@keyframes slide {
  0% {
    transform: translateX(0) rotate(45deg);
  }
  30%,
  100% {
    transform: translateX(350px) rotate(45deg);
  }
  100% {
    transform: translateX(350px) rotate(0deg);
  }
}

.privacy {
  padding: 40px 0;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.privacy-content h1 {
  color: var(--Color_GOLD, #d7a850);
  font-family: Lato;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hero-about h1 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .hero-about h1 {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  .hero-about h1 {
    font-size: 28px;
  }
}

.privacy-content span,
.privacy-content p {
  color: var(--Color_GR, #00361f);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.privacy-content span {
  text-transform: uppercase;
}

.privacy-content ul {
  padding-left: 25px;
  list-style: disc;
}
/* AUTH POPUP */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.auth-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 100%;
  max-width: 540px;
  border-radius: 20px;
  background: var(--Color_GR, #00361f);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

@media (max-width: 980px) {
  .auth-popup {
    padding: 14px;
  }
}

.auth-popup.active,
.auth-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-popup.active {
  transform: translate(-50%, -50%) scale(1);
}

.auth-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--white, #d7a850);
}

.auth-content {
  display: none;
}

.auth-content.active {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.auth-content span {
  color: var(--Color_GOLD, #d7a850);
  text-align: center;
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.auth-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 16px;
}

.auth-switch span.active {
  font-weight: 600;
}

.auth-switch button {
  background: none;
  border: none;
  color: #fcfcfc;
  cursor: pointer;
}

.auth-content label {
  display: block;
  margin-top: 12px;
  color: var(--white, #fcfcfc);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.auth-content input {
  width: 95%;
  padding: 10px;
  margin-top: 4px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.auth-submit {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  border-radius: 16px;
  border: 2px solid var(--Color_GR, #00361f);
  background: var(--Color_GOLD, #d7a850);
  color: #fff;
  border: none;
  cursor: pointer;
}

.checkbox {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  border: none;
  align-items: center;
}
.checkbox input {
  width: 14px;
  height: 14px;
}

/* =========================
   AGE POPUP STYLES
========================= */

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
  z-index: 2000;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.age-overlay.active {
  opacity: 1;
  visibility: visible;
}

.age-popup {
  width: 100%;
  max-width: 543px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15.3px;

  border-radius: 12px;
  background: #031c37;

  animation: fadeInUp 0.4s ease forwards;
}

.age-title {
  color: #e5e7eb;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}

.age-text {
  color: #9ca3af;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
}

.age-actions {
  display: flex;
  gap: 12px;
}

.age-button {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  border: none;
  background: #f916a6;

  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 13.1px;
  font-weight: 700;

  cursor: pointer;
  transition: transform 0.2s ease;
}

.age-button:hover {
  transform: scale(1.05);
}

.age-exit {
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;

  border-radius: 8px;
  border: 2px solid #f916a6;

  color: #f916a6;
  font-family: Lato, sans-serif;
  font-size: 13.1px;
  font-weight: 700;
  text-decoration: none;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   COOKIES POPUP
========================= */

.cookies-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2100;

  display: flex;
  justify-content: flex-end;

  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookies-wrapper.active {
  transform: translateY(0);
}

.cookies-content {
  max-width: 540px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;

  padding: 40px 20px;

  border-radius: 10px;
  border: 1px solid #ef75c2;
  background: #090808;
}

@media (max-width: 768px) {
  .cookies-content {
    padding: 20px;
  }
}

.cookies-text span {
  color: #ffffff;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.cookies-text p {
  margin-top: 20px;
  color: #ffffff;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

.cookies-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

/* Button */
.cookies-actions button {
  max-width: 201px;
  width: 100%;
  padding: 12px 24px;

  border-radius: 30px;
  border: none;

  background: linear-gradient(180deg, #f916a6 0%, #820554 100%);
  color: #ffffff;

  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform 0.2s ease;
}

.cookies-actions button:hover {
  transform: scale(1.05);
}

/* Link */
.cookies-actions a {
  max-width: 289px;
  width: 100%;
  padding: 12px 24px;

  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 30px;
  background: #ffffff;

  color: #090808;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;

  cursor: pointer;
  transition: transform 0.2s ease;
}

.cookies-actions a:hover {
  transform: scale(1.05);
}

/* Custom Notification */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #026727;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  z-index: 10000;
  display: none;
  max-width: 300px;
  word-wrap: break-word;
}

/* Cart Items */
.cart-items {
  margin: 10px 0;
}

.cart-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}

.cart-item .numbers {
  font-weight: bold;
  color: #00361f;
}

.cart-item .type {
  font-size: 14px;
  color: #666;
}
