@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
}

:root {
  --bs-black: #000000;
  --bs-black-50: #00000080;
  --bs-gray-one: #2f2f2f;
  --bs-gray-two: #cccccc;
  --bs-gray-three: #f8f9fa;
  --bs-white: #ffffff;
  --bs-white-50: #ffffff80;
  --bs-custom-bg: #1b2318;
  --bs-custom-one: #F5F5DC;
  --bs-custom-one-50: #F5F5DC80;
  --bs-custom-two: #D2B48C;
  --bs-custom-two-50: #D2B48C80;
  --bs-custom-three: #fbb70e;
  --bs-custom-three-50: #fbb70e80;
  --bs-custom-four: #1b2318;
  --bs-custom-four-50: #1b231880;
  --bs-custom-five: #d30dc0;
  --bs-custom-five-50: #d30dc080;
  --bs-custom-six: #3e1366;
  --bs-custom-six-50: #3e136680;
  --bs-nav-color: #ffffff;
  --bs-table-bg: #ffffff;
  --bs-title-color: linear-gradient(180deg, #f3ebac, #fbb81d, #ff7d01);
  --bs-header-color: linear-gradient(180deg, #1b2318, #d30dc0, #3e1366);
  --bs-border-solid: #deb92a;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}
#loading-screen .loader {
  width: 300px;
  font-size: 24px;
  text-align: center;
  animation: blink 1s infinite;
}
#loading-screen .loader img {
  width: 100%;
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

h1 {
  font-size: 4rem;
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 575px) and (min-height: 800px) {
  h1 {
    font-size: calc(2rem + 1vh);
  }
}

h2 {
  font-size: 3rem;
}
@media screen and (max-width: 575px) {
  h2 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 575px) and (min-height: 800px) {
  h2 {
    font-size: calc(1.75rem + 1vh);
  }
}

h3 {
  font-size: 1.25em;
}

.header-top {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100px;
  padding: 8px;
  z-index: 2;
}
.header-top.home-scroll {
  justify-content: start;
  height: 64px;
  background: var(--bs-black-50);
}
.header-top.scroll {
  height: 64px;
  background: var(--bs-black-50);
}
.header-top img {
  height: 100%;
}

.header {
  position: fixed;
  bottom: 1.5vw;
  left: 50%;
  width: 70%;
  height: 48px;
  min-width: 360px;
  background: var(--bs-header-color);
  border: 2px solid var(--bs-border-solid);
  border-radius: 8px;
  transform: translateX(-50%);
  z-index: 99;
}
.header .navbar {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 90px 1fr 1px 1fr;
  list-style: none;
  height: 100%;
  padding: 0;
}
@media screen and (max-width: 575px) {
  .header .navbar {
    grid-template-columns: 1fr 1px 1fr 70px 1fr 1px 1fr;
  }
}
.header .navbar i {
  background: var(--bs-white);
  height: 100%;
}
.header .navbar .nav-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.header .navbar .nav-list a {
  display: flex;
  align-items: center;
  color: var(--bs-white);
  font-size: 1.5em;
  text-decoration: none;
  gap: 8px;
}
.header .navbar .nav-list a.logo-btn {
  position: absolute;
  bottom: -16px;
  width: 110%;
  height: 0;
  padding-bottom: 110%;
  background: linear-gradient(45deg, #FFD700, #D4AF37, #D4AF37, #FFD700, #FFEC8B, #D4AF37, #FFD700, #D4AF37);
  border-radius: 50%;
}
@media screen and (max-width: 575px) {
  .header .navbar .nav-list a.logo-btn {
    bottom: -8px;
  }
}
.header .navbar .nav-list a.logo-btn img {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: var(--bs-header-color);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--bs-black) inset;
}
@media screen and (max-width: 575px) {
  .header .navbar .nav-list a span {
    display: none;
  }
}
.header .navbar .nav-list .header-list {
  position: absolute;
  bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 575px) {
  .header .navbar .nav-list .header-list {
    right: 0;
  }
}
.header .navbar .nav-list .header-list.hidden {
  display: none;
}
.header .navbar .nav-list .header-list a {
  white-space: nowrap;
  background: var(--bs-header-color);
  border: 2px solid var(--bs-border-solid);
  border-radius: 8px;
  padding: 4px 16px;
}

#fp-nav.fp-left {
  left: 0;
}

.section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/5889627.webp) no-repeat center/cover;
  color: var(--bs-white);
  font-size: 2em;
}
@media screen and (max-width: 575px) {
  .section {
    font-size: 1em;
  }
}
.section .fp-overflow {
  padding: 64px 0;
}
@media screen and (max-width: 575px) {
  .section .fp-overflow h1 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 575px) and (min-height: 800px) {
  .section .fp-overflow h1 {
    font-size: calc(1.5rem + 1vh);
  }
}
.section .fp-overflow h2 {
  width: 60%;
  background: linear-gradient(to top, #f25b09, #ebe14f);
  background: -webkit-linear-gradient(to top, #f25b09, #ebe14f);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .section .fp-overflow h2 {
    width: 80%;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 575px) and (min-height: 800px) {
  .section .fp-overflow h2 {
    font-size: calc(1.5rem + 1vh);
  }
}
.section .fp-overflow > p {
  width: 80%;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 575px) {
  .section .fp-overflow > p {
    width: 90%;
    font-size: 1rem !important;
    margin-bottom: 0.25rem;
  }
}
@media screen and (max-width: 575px) and (min-height: 800px) {
  .section .fp-overflow > p {
    font-size: calc(1rem + 1vh) !important;
  }
}
.section.section1 {
  background: url(../images/home-bg.webp) no-repeat center/cover;
}
@media screen and (max-width: 575px) {
  .section.section1 {
    background: url(../images/home-bg.webp) no-repeat left/cover;
  }
}
.section.section1 .first-img {
  position: absolute;
  top: -35%;
  left: -10%;
  width: 30%;
  transform: rotateZ(-15deg);
}
@media screen and (max-width: 575px) {
  .section.section1 .first-img {
    left: -5%;
  }
}
.section.section1 .web-introduce {
  position: absolute;
  top: 50%;
  left: 35%;
  display: flex;
  flex-direction: column;
  width: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 575px) {
  .section.section1 .web-introduce {
    top: 40%;
    left: 50%;
    width: 90%;
  }
}
.section.section1 .web-introduce:before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 110%;
  height: 120%;
  background: var(--bs-custom-six-50);
  border-radius: 35% 20%/25% 50%;
  z-index: -1;
}
@media screen and (max-width: 575px) {
  .section.section1 .web-introduce:before {
    top: -10%;
    left: -5%;
  }
}
.section.section1 .web-introduce h1 {
  text-align: right;
  padding-right: 10%;
}
.section.section1 .web-introduce p {
  width: 95%;
  margin: auto;
  font-size: 2rem !important;
}
@media screen and (max-width: 575px) {
  .section.section1 .web-introduce p {
    font-size: 1rem !important;
  }
}
@media screen and (max-width: 575px) and (min-height: 800px) {
  .section.section1 .web-introduce p {
    font-size: calc(1rem + 1vh) !important;
  }
}
.section.section1 .first-btn-group {
  position: absolute;
  top: 50%;
  right: 25%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 575px) {
  .section.section1 .first-btn-group {
    top: 75%;
    right: 50%;
  }
}
.section.section1 .first-btn-group a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  height: 64px;
  min-width: 300px;
  background: var(--bs-header-color);
  border: 4px solid var(--bs-border-solid);
  border-radius: 8px;
  color: var(--bs-border-solid);
  font-weight: 900;
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  .section.section1 .first-btn-group a {
    font-size: 2em;
  }
}
@media screen and (max-width: 575px) {
  .section.section1 .fp-overflow {
    flex-direction: column;
  }
}
.section.section2 .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  .section.section2 .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.section.section2 .grid > div {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  gap: 1rem;
}
@media screen and (max-width: 575px) {
  .section.section2 .grid > div {
    gap: 0.25rem;
  }
}
.section.section2 .grid > div h3 {
  padding: 0 1.5rem;
}
@media screen and (max-width: 575px) {
  .section.section2 .grid > div h3 {
    padding: 0;
  }
}
@media screen and (max-width: 575px) and (min-height: 800px) {
  .section.section2 .grid > div h3 {
    font-size: calc(1rem + 1vh) !important;
  }
}
.section.section2 .grid > div .swiper-container {
  position: inherit;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.section.section2 .grid > div .swiper-container .swiper-wrapper {
  width: 100%;
  display: flex;
}
.section.section2 .grid > div .swiper-container .swiper-wrapper .swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
}
.section.section2 .grid > div .swiper-container .swiper-wrapper .swiper-slide a {
  display: flex;
  border: 4px solid var(--bs-border-solid);
  border-radius: 8px;
  overflow: hidden;
}
.section.section2 .grid > div .swiper-container .swiper-wrapper .swiper-slide a img {
  width: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section.section3 .web-swiper {
  width: 80%;
  padding: 1rem;
}
.section.section3 .web-swiper .person-img img {
  width: 100%;
}
.section.section3 .web-swiper .web-introduce {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  height: 100%;
  background: var(--bs-black-50);
  border: 2px solid var(--bs-border-solid);
  border-radius: 8px;
  box-shadow: 0 0 10px 8px var(--bs-custom-five);
  padding: 1rem;
  z-index: 1;
}
.section.section3 .web-swiper .web-introduce h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.section.section3 .web-swiper .web-introduce h3 div {
  color: var(--bs-custom-three);
  font-size: 6rem;
  opacity: 0.5;
  margin-bottom: -2.75rem;
}
.section.section3 .web-swiper .web-introduce h3 span {
  margin-left: 1.5rem;
}
.section.section3 .web-swiper .web-introduce p {
  font-size: 1.25rem;
}
@media screen and (max-width: 575px) {
  .section.section3 .web-swiper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .section.section3 .web-swiper .person-img {
    width: 50%;
    margin-left: auto;
    margin-bottom: -25%;
    transform: rotateY(180deg);
  }
}
.section.section4 .fp-overflow > p {
  font-size: 1.5rem;
}
.section.section4 .triple-slider {
  position: relative;
  display: flex;
  justify-content: center;
  width: 80%;
}
.section.section4 .triple-slider .triple-slider-prev,
.section.section4 .triple-slider .triple-slider-next {
  opacity: 0.2;
  scale: 0.9;
  pointer-events: none;
  z-index: 1;
}
.section.section4 .triple-slider .triple-slider-prev {
  left: 0;
}
.section.section4 .triple-slider .triple-slider-next {
  right: 0;
}
.section.section4 .triple-slider .triple-slider-main {
  position: relative !important;
  cursor: pointer;
  z-index: 2;
}
.section.section4 .triple-slider .swiper {
  position: absolute;
  top: 0;
  width: 50%;
  background: var(--bs-black);
  border-radius: 1rem;
  border: 2px solid var(--bs-border-solid);
}
@media screen and (max-width: 575px) {
  .section.section4 .triple-slider .swiper {
    width: 80%;
  }
}
.section.section4 .triple-slider .swiper .swiper-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1.5rem;
}
@media screen and (max-width: 575px) {
  .section.section4 .triple-slider .swiper .swiper-slide {
    padding: 1rem;
  }
}
.section.section4 .triple-slider .swiper .swiper-slide .bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.6);
}
.section.section4 .triple-slider .swiper .swiper-slide .logo-image {
  position: absolute;
  width: 50%;
  max-width: 600px;
  transition: transform 0.4s ease;
  z-index: 2;
}
.section.section4 .triple-slider .swiper .swiper-slide h3 {
  margin-bottom: 1rem;
}
@media screen and (max-width: 575px) and (min-height: 800px) {
  .section.section4 .triple-slider .swiper .swiper-slide h3 {
    font-size: calc(1.25rem + 1vh) !important;
  }
}
.section.section4 .triple-slider .swiper .swiper-slide p {
  font-size: 1.5rem;
}
@media screen and (max-width: 575px) {
  .section.section4 .triple-slider .swiper .swiper-slide p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 575px) and (min-height: 800px) {
  .section.section4 .triple-slider .swiper .swiper-slide p {
    font-size: calc(0.75rem + 1vh) !important;
  }
}
@media screen and (max-width: 575px) {
  .section.section4 .triple-slider {
    width: 90%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.section.section5 .pay-nav {
  position: relative;
  display: flex;
  width: 40%;
  background: var(--bs-black-50);
  border-radius: 1rem;
}
@media screen and (max-width: 575px) {
  .section.section5 .pay-nav {
    width: 80%;
  }
}
.section.section5 .pay-nav button {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 1rem;
  cursor: pointer;
}
.section.section5 .pay-nav button.active {
  border: 2px solid var(--bs-border-solid);
}
.section.section5 .pay-nav button.active img {
  opacity: 1;
}
.section.section5 .pay-nav button:hover {
  border: 2px solid var(--bs-border-solid);
}
.section.section5 .pay-nav button:hover img {
  opacity: 1;
}
.section.section5 .pay-nav img {
  width: 100%;
  opacity: 0.5;
}
.section.section5 .pay-swiper {
  width: 80%;
}
.section.section5 .pay-swiper .swiper-slide {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 575px) {
  .section.section5 .pay-swiper .swiper-slide {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.section.section5 .pay-swiper .swiper-slide div {
  width: 100%;
  border: 2px solid var(--bs-border-solid);
  border-radius: 1rem;
  padding: 1rem;
}
@media screen and (max-width: 575px) {
  .section.section5 .pay-swiper .swiper-slide div {
    padding: 0.5rem;
  }
}
.section.section5 .pay-swiper .swiper-slide div.pros {
  background: rgba(76, 255, 123, 0.5);
}
@media screen and (max-width: 575px) {
  .section.section5 .pay-swiper .swiper-slide div.pros p {
    font-size: 1.5rem;
  }
}
.section.section5 .pay-swiper .swiper-slide div.cons {
  background: rgba(255, 76, 76, 0.5);
}
@media screen and (max-width: 575px) {
  .section.section5 .pay-swiper .swiper-slide div.cons p {
    font-size: 1.5rem;
  }
}
.section.section5 .pay-swiper ul {
  font-size: 1.5rem;
  margin-left: 2rem;
}
@media screen and (max-width: 575px) {
  .section.section5 .pay-swiper ul {
    font-size: 1rem;
    margin-left: 1.5rem;
  }
}
.section.section6 .game-kind {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 80%;
  gap: 2rem;
}
@media screen and (max-width: 755px) {
  .section.section6 .game-kind {
    grid-template-columns: repeat(2, 1fr);
    width: 90%;
    gap: 0.5rem;
  }
}
.section.section6 .game-kind .game-card {
  background: var(--bs-header-color);
  border: 2px solid var(--bs-border-solid);
  border-radius: 1rem;
  color: unset;
  text-decoration: none;
  transition: transform 0.4s ease;
  padding: 1rem;
}
.section.section6 .game-kind .game-card:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 575px) {
  .section.section6 .game-kind .game-card {
    padding: 0.75rem;
  }
}
.section.section6 .game-kind .game-card h3 {
  font-size: 0.875em;
  margin-bottom: 1rem;
  -webkit-text-decoration: underline var(--bs-border-solid);
          text-decoration: underline var(--bs-border-solid);
}
@media screen and (max-width: 575px) {
  .section.section6 .game-kind .game-card h3 {
    font-size: 1.25em;
    margin-bottom: 0.5rem;
  }
}
.section.section6 .game-kind .game-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 755px) {
  .section.section6 .game-kind .game-card p {
    display: -webkit-box;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
.section.section6 .game-kind .game-card a {
  width: 100%;
}
.section.section6 .game-kind .game-card img {
  width: 100%;
}
.section .fp-overflow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 8px;
}

.fp-watermark {
  display: none;
}

.btn-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--bs-white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.3s;
}
.btn-top:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 575px) {
  .btn-top {
    position: fixed;
    right: 10px;
    bottom: 58px;
  }
}

/* Swiper 輪播容器 */
.swiper-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-container .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.5em;
  overflow: hidden;
}
.swiper-container .swiper-pagination-bullet {
  background: var(--bs-custom-three);
  opacity: 0.7;
}
.swiper-container .swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
  color: var(--bs-custom-three);
}/*# sourceMappingURL=style.css.map */