:root {
  --primary-color-100: #efe5d8;
  --primary-color-200: #fef186;
  --primary-color-300: #fef186;
  --primary-color-400: #fef3c6;
  --primary-color-500: #f0e5d9;
  --primary-color-600: #f0e5d9;
  --primary-color-700: #973b00;
  --primary-color-800: #7b3306;
  --primary-color-900: #675441;
  --primary-color: #f0e5d9;
  --secondary-color: #35495e;
  --text-color: #333;
  --background-color: #fff;
  --app-text-color: #2c3e50;
  --header-gradient-start: #f0e5d9;
  --header-gradient-end: transparent;
  --white: #fff;
  --black: #000;
  --gray-light: #91939d;
  --card-bg: #f0e5d9;
  --button-bg: red;
  --button-hover: #c10007;
  --button-shadow-bg: rgb(175, 0, 0);
  --marquee-color: #cea882;
  --scroll-button-border: rgba(0, 0, 0, 0.2);
  --grid-color: #fe9900;
  --mobile-breakpoint: 768px;
  --tablet-breakpoint: 992px;
  --desktop-breakpoint: 1200px;
  --spacing-small: 8px;
  --spacing-medium: 16px;
  --spacing-large: 24px;
  --spacing-xlarge: 32px;
  --font-size-small: 12px;
  --font-size-medium: 16px;
  --font-size-large: 20px;
  --font-size-xlarge: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--background-color);
  font-family: Arial, sans-serif;
  color: var(--text-color);
}

#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: var(--app-text-color);
}

.home {
  position: relative;
  font-family: Arial, sans-serif;
  color: var(--text-color);
  min-height: 100vh;
  background-color: var(--background-color);
  padding-top: 48px;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, var(--header-gradient-start), var(--header-gradient-end));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  color: var(--primary-color-900);
  font-family: "Arial", sans-serif;
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}
.snowfall-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  opacity: 1;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .snowfall-container {
    height: 100%;
    position: absolute;
    min-height: 600px;
  }
}
.snowfall-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.main-content {
  position: relative;
  z-index: 1;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
}

.hero-section {
  position: relative;
  margin-bottom: 16px;
  margin-top: 16px;
}

.carousel-container {
  position: relative;
  border-radius: 16px;
  border: 0.5px solid rgba(var(--primary-color-900), 0.2);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 10px 25px -5px rgba(var(--primary-color-900), 0.2);
}

.swiper {
  width: 100%;
}

.carousel-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.carousel-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .carousel-image {
    padding-bottom: 37.5%;
  }
}
@media (max-width: 767px) {
  .carousel-image {
    padding-bottom: 43.75%;
  }
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: var(--white);
}

.swiper-button-white {
  color: var(--white);
}

.games-section {
  padding-top: 0;
  padding-bottom: 28px;
}

.games-container {
  max-width: 1200px;
  margin: 0 auto;
}

.games-grid-1,
.games-grid-2 {
  display: flex;
  flex-direction: column;
  margin: -12px;
  flex-wrap: nowrap;
}

@media (min-width: 768px) {
  .games-grid-1,
  .games-grid-2 {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.game-card-wrapper {
  width: 100%;
  padding: 6px;
  box-sizing: border-box;
  flex: 1;
}

@media (min-width: 768px) {
  .game-card-wrapper {
    flex: 0 0 auto;
    width: 50%;
  }
  .game-card-wrapper:nth-child(n+3) {
    width: 33.3333333333%;
  }
}
.card-style1 {
  position: relative;
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 8px;
  border: 0.5px solid rgba(var(--primary-color-900), 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px 0 rgba(103, 84, 65, 0.1);
}

.card-style1:hover {
  box-shadow: 0 10px 15px rgba(var(--primary-color-900), 0.6);
}

@media (min-width: 768px) {
  .card-style1 {
    padding: 8px;
  }
}
.card-style1-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.card-style1-logo {
  cursor: pointer;
  height: 80px;
  width: 80px;
  padding: 8px;
  margin-bottom: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--primary-color-600);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  box-shadow: 0 8px 24px 0 rgba(103, 84, 65, 0.1);
}

@media (min-width: 768px) {
  .card-style1-logo {
    margin-bottom: 0;
    height: 117px;
    width: 117px;
    flex: 1;
    max-width: 117px;
  }
  .card-style1-logo img {
    max-width: 90px !important;
  }
  .game-card-wrapper:nth-child(1), .game-card-wrapper:nth-child(2) {
    color: var(--black);
  }
  .game-card-wrapper:nth-child(1) .card-style1-logo, .game-card-wrapper:nth-child(2) .card-style1-logo {
    max-width: 100%;
    width: 100%;
  }
}
.card-style1-logo img {
  max-width: 100%;
  max-height: 100%;
}

.card-style1-info {
  display: flex;
  flex-direction: column;
  padding-top: 0;
  flex: 1;
  align-items: center;
  max-width: 100%;
}

.card-style1-title {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 2px;
  color: var(--black);
  text-align: left;
  margin-top: 0;
}

@media (min-width: 768px) {
  .card-style1-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
.card-style1-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 150px;
  justify-content: center;
}

.card-style1-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: var(--button-bg);
  color: var(--white);
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

.card-style1-button::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--button-shadow-bg);
  border-radius: 12px;
  z-index: -1;
}

.card-style1-button:hover {
  background-color: var(--button-hover);
  color: var(--white);
}

.card-style1-marquee-container {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-style1-marquee-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--marquee-color);
  font-size: 14px;
  justify-content: center;
}

.card-style1-marquee-content p {
  margin: 6px 0;
}

@media (min-width: 768px) {
  .card-style1-marquee-content {
    font-size: 16px;
  }
}
.featured-section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.featured-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary-color-900);
}

@media (min-width: 768px) {
  .featured-title {
    font-size: 30px;
  }
}
.featured-description {
  text-align: center;
  margin-bottom: 48px;
  font-size: 16px;
  color: var(--gray-light);
}

@media (min-width: 768px) {
  .featured-description {
    font-size: 18px;
  }
}
.footer {
  text-align: center;
  padding: 16px;
  background-color: rgba(var(--primary-color), 0.1);
  color: var(--gray-light);
  position: relative;
  z-index: 1;
}

.scroll-button {
  margin-left: -24px;
  position: fixed;
  bottom: 32px;
  left: 50%;
  z-index: 50;
  width: 48px;
  height: 48px;
  background-color: var(--primary-color-200);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--scroll-button-border);
  transform: translateX(-50%);
  box-shadow: 0 10px 15px -3px rgba(var(--primary-color-900), 0.8);
  animation: bounce 2s infinite;
}

@media (min-width: 768px) {
  .scroll-button {
    left: auto;
    right: 8px;
    transform: none;
  }
}
.arrow-down {
  font-size: 24px;
}

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

/*# sourceMappingURL=main.css.map */