:root {
  --bg-dark: #1a1a1a;
  --bg-darker: #0f0f0f;
  --text-white: #ffffff;
  --accent-gold: #FBD585;
  --accent-gold-light: #f4d03f;
  --text-gray: #999999;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
.root {
  font-size: 16px;
  scroll-behavior: smooth;
}

.body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
  background-color: var(--bg-darker);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.img {
  max-width: 100%;
  height: auto;
  display: block;
}

.link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.link:hover {
  opacity: 0.8;
}

.header {
  background-color: var(--bg-darker);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 5rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.3);
}

.header-container {
  height: 100%;
  max-width: 87.5rem;
  display: flex;
  margin-left: 13.125rem;
  position: relative;
}

.logo-section {
  display: flex;
  align-items: center;
  margin-right: 4.375rem;
}

.logo-image {
  height: 4.325rem;
  width: auto;
  object-fit: contain;
}

.header-center-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.header-center-logo-image {
  height: auto;
  max-height: 4rem;
  width: auto;
  object-fit: contain;
}

.nav {
  display: none;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.nav .link {
  font-size: 1rem;
  color: var(--text-gray);
  padding: 0.5rem 1rem;
  position: relative;
}

.nav .link.active {
  color: var(--accent-gold);
}

.nav .link.active::after {
  width: 80%;
}

.nav .link strong {
  /* background: linear-gradient(0deg, #c5a27a 0%, #dcc8a5 50%, #c5a27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold; */
}

.nav .link.active {
  background: linear-gradient(0deg, #c5a27a 0%, #dcc8a5 50%, #c5a27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.hotel-menu-bar {
  position: absolute;
  top: 5rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  /* padding: 1rem 0; */
  z-index: 999;
  padding-top: 0rem;
  background: rgba(21, 21, 21, 0.6);
}

.hotel-menu-item {
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  padding: 0.5rem 1.5rem;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
  width: 12.25rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hotel-menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background: linear-gradient(90deg,rgba(197,162,122,1), #dcc8a5 49%, rgba(194,155,116,1));
  pointer-events: none;
  z-index: -1;
}

/* .hotel-menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.05) 2px,
    rgba(255, 255, 255, 0.05) 4px
  );
  border-radius: 4px;
  pointer-events: none;
} */

.hotel-menu-item:hover {
  color: #DCC8A5;
  border-bottom: 1px solid #DCC8A5;
}

.hotel-menu-item.active {
  color: #DCC8A5;
  border-bottom: 1px solid #DCC8A5;
}

.hero-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-swiper-container {
  width: 100%;
  height: 32.0625rem;
}

.hero-swiper-container .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  display: block;
}

.hero-swiper-container video.hero-image {
  object-fit: cover;
}

.hero-image-mobile {
  display: none;
}

.hero-image-desktop {
  display: block;
}

.hero-swiper-container .swiper-button-next,
.hero-swiper-container .swiper-button-prev {
  color: var(--accent-gold) !important;
  width: 50px !important;
  height: 50px !important;
}

.hero-swiper-container .swiper-button-next::after,
.hero-swiper-container .swiper-button-prev::after {
  font-size: 24px !important;
}

.hero-swiper-container .swiper-pagination-bullet {
  background-color: var(--accent-gold) !important;
  opacity: 0.5 !important;
}

.hero-swiper-container .swiper-pagination-bullet-active {
  opacity: 1 !important;
}

.vip-junket-section {
  background-color: #151515;
  padding: 4rem 13.125rem;
  padding-top: 5.5rem;
  position: relative;
  overflow: hidden;
}

.vip-junket-container {
  height: 21.1875rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  border-radius: 12px 0px 0px 12px;
}

.vip-junket-wrapper {
  background-image: url('../images/index-bg-left.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  display: flex;
}

.vip-junket-content {
  flex: 1;
  display: flex;
  align-items: center;
  z-index: 2;
}

.vip-junket-titles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vip-junket-title-en {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: absolute;
  top: 1.75rem;
  left: 1.4rem;
  background: linear-gradient(0deg, #c5a27a 0%, #dcc8a5 50%, #c5a27a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-junket-title-cn {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  margin-left: 1.4rem;
  background: linear-gradient(0deg, #c5a27a 0%, #dcc8a5 50%, #c5a27a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-junket-divider {
  height: 120px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: 1.4rem;
  margin-right: 2rem;
}

.vip-junket-divider-mobile {
  display: none;
}

.vip-junket-descriptions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.vip-junket-desc-item {
  font-size: 1rem;
  color: var(--text-white);
  line-height: 1.6;
  opacity: 0.85;
  white-space: nowrap;
}

.vip-junket-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  height: 21.5625rem;
  background-image: url('../images/index-bg-right.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vip-junket-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  top: -1.4rem;
  left: 2.5rem
  /* object-fit: contain; */
}

.vip-junket-hero-section {
  padding: 4rem 2rem;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 300px;
  position: relative;
}


.vip-junket-hero-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 1400px;
  width: 100%;
}

.vip-junket-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  background: linear-gradient(0deg, #c5a27a 0%, #dcc8a5 50%, #c5a27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.vip-junket-hero-icon {
  position: relative;
  width: 200px;
  height: 40px;
  border-radius: 2px;
}

.vip-junket-icon-line {
  position: absolute;
  background-color: #c5a27a;
}

.vip-junket-icon-line-h1 {
  top: 20%;
  left: 0;
  width: 100%;
  height: 1px;
}

.vip-junket-icon-line-h2 {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.vip-junket-icon-line-h3 {
  bottom: 20%;
  left: 0;
  width: 100%;
  height: 1px;
}

.vip-junket-icon-line-v1 {
  left: 45%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.vip-junket-icon-line-v2 {
  left: 55%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.vip-junket-icon-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #c5a27a;
}

.hotels-section {
  background-color: #151515;
  margin: 0 auto;
  padding-top: 2.025rem;
  padding-bottom: 4rem;
  overflow: visible;
  position: relative;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 600;
  margin: 0;
  color: var(--accent-gold);
  white-space: nowrap;
}

.section-title-line {
  flex: 1;
  max-width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}


.section-title-line-right {
  transform: rotate(180deg);
}
.hotels-swiper{
  margin: 0 13.125rem;
}
.swiper-container {
  width: 100%;
  position: relative;
}

.hotels-swiper-wrapper{
  width: 100%;
}

.hotels-swiper-container{
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: auto;
}

/* 移动端：喜来登酒店排在第一位 */
@media (max-width: 750px) {
  .hotel-slide-sheraton {
    order: -1;
  }
}

/* PC端：喜来登酒店排在第二位（万豪之后） */
@media (min-width: 751px) {
  .hotel-slide-sheraton {
    order: 1;
  }
  .hotel-slide-hilton {
    order: 2;
  }
  .hotel-slide-okura {
    order: 3;
  }
  .hotel-slide-holiday {
    order: 4;
  }
}

.hotel-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hotel-name{
  color: #DCC8A5;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1rem;
  padding: 0.5rem 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hotel-name strong {
  background: linear-gradient(0deg, #c5a27a 0%, #dcc8a5 50%, #c5a27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.hotel-logo {
  height: 1.6em;
  width: auto;
  vertical-align: middle;
}

.hotel-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  z-index: 10;
}

@media (min-width: 751px) {
  .hotel-card:hover .hotel-overlay {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  }
  .hotel-card:hover .hotel-name {
    display: none;
  }
}

.hotel-overlay-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(0deg, #c5a27a 0%, #dcc8a5 50%, #c5a27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hotel-overlay-description {
  font-size: 0.9rem;
  color: var(--text-white);
  line-height: 1.6;
  text-align: center;
  max-width: 90%;
}

.hotel-card-special {
  background-color: transparent;
  overflow: visible;
}

.hotel-card-special .hotel-name-top {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-white);
  padding: 0;
}

.hotel-card-special-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  width: 100%;
}

.hotel-card-special .hotel-image {
  flex: 0 0 auto;
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.hotel-card-special .hotel-info-right {
  flex: 1;
  padding: 0;
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.hotel-card-special .hotel-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
  width: 100%;
}

.hotel-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.hotel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hotel-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  z-index: 10;
}


.hotel-overlay-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  text-align: center;
}

.hotel-overlay-description {
  font-size: 0.9rem;
  color: var(--text-white);
  line-height: 1.6;
  text-align: center;
  max-width: 90%;
}

.hotel-card-special .hotel-image {
  height: auto;
  max-height: 400px;
}

.hotel-info {
  padding: 1.5rem;
}


.hotel-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.hotels-swiper {
  position: relative;
}

.hotels-swiper .swiper-button-next,
.hotels-swiper .swiper-button-prev, .hotels-swiper .swiper-next, .hotels-swiper .swiper-prev {
  width: 30px !important;
  height: 30px !important;
  margin-top: 0 !important;
  top: 50% !important;
  transform: translateY(-50%);
  z-index: 100 !important;
  display: flex !important;
  opacity: 1 !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  background-color: transparent;
  position: absolute;
}

.hotels-swiper .swiper-button-next::after,
.hotels-swiper .swiper-button-prev::after {
  display: none !important;
}

.hotels-swiper .swiper-button-next {
  right: -50px !important;
  background-image: url('../images/swiper-right-icon.png');
}

.hotels-swiper .swiper-button-prev {
  left: -50px !important;
  background-image: url('../images/swiper-left-icon.png');
}

.hotels-section .swiper-navigation-icon {
  display: none;
}

.swiper-button-next-custom{
  
  right: -50px !important;
  background-image: url('../images/swiper-right-icon-custom.png');
}

.swiper-button-prev-custom{
  /* display: none; */
  left: -50px !important;
  background-image: url('../images/swiper-left-icon-custom.png');
}

.swiper-button-disabled{
  opacity: 0.1 !important;
}




.hotels-swiper .swiper-pagination {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 100 !important;
  display: flex !important;
  justify-content: center;
  gap: 3px;
  width: auto !important;
  bottom: -35px !important;
}

.hotels-swiper .swiper-pagination-bullet {
  background-color: var(--accent-gold) !important;
  opacity: 0.3 !important;
  width: 10px !important;
  height: 10px !important;
  display: inline-block !important;
}

.hotels-swiper .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--accent-gold) !important;
}

.customer-service {
  display: block;
  position: fixed;
  right: 2rem;
  bottom: 18rem;
  width: 60px;
  height: 60px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  -webkit-touch-callout: none;
}

.customer-service:hover {
  transform: scale(1.1);
}

.customer-service img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.customer-service-mobile-index {
  display: none;
}

/* VIP 链接图标（客服上方，样式与客服一致） */
.vip-link-icon {
  display: block;
  position: fixed;
  right: 2rem;
  bottom: 23rem;
  width: 60px;
  height: 60px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  -webkit-touch-callout: none;
  text-decoration: none;
}
.vip-link-icon:hover {
  transform: scale(1.1);
}
.vip-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 750px) {
  .root, .body {
    overflow-x: hidden;
  }
  html {
    font-size: 14px;
  }

  .header {
    /* padding: 1rem; */
    height: 3.425rem;
    position: relative;
  }

  .header-container {
    flex-wrap: wrap;
    margin-left: 0rem;
    width: 100%;
    justify-content: space-between;
    padding: 0 1.5rem;
  }

  .logo-image {
    height: 40px;
  }

  .header-center-logo-image {
    width: 9.25rem;
  }

  .hotel-menu-bar {
    display: none;
  }

  .hotel-menu-item {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 3.425rem);
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    justify-content:flex-start;
  }

  .nav .link {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    color: var(--accent-gold);
    font-size: .9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
  }

  .nav .link:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav .link:not(:first-child) {
    color: var(--text-white);
  }

  .nav .link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    opacity: 1;
  }

  .nav .link.active {
    color: var(--accent-gold);
  }

  .mobile-menu-toggle {
    display: block;
    color: var(--accent-gold);
    font-size: 1.5rem;
  }

  .hero-swiper-container {
    height: 28vh;
  }

  .hero-image {
    height: 100%;
  }

  .hero-image-mobile {
    display: block;
  }

  .hero-image-desktop {
    display: none;
  }

  .hero-swiper-container .swiper-button-next,
  .hero-swiper-container .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }

  .hero-swiper-container .swiper-button-next::after,
  .hero-swiper-container .swiper-button-prev::after {
    font-size: 20px !important;
  }

  .vip-junket-section {
    display: none;
  }

  .vip-junket-container {
    border-radius: 0px !important;
    flex-direction: column;
    gap: 2rem;
    height: auto;
    align-items: center;
    background-image: url('../images/index-middle-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .vip-junket-wrapper {
    width: 100%;
    background-image: none;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding: 10px;
    border-radius: 6px 0px 0px 6px;
  }

  

  .vip-junket-wrapper > * {
    position: relative;
    z-index: 1;
  }

  .vip-junket-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    order: 1;
  }

  .vip-junket-titles {
    width: 100%;
  }

  .vip-junket-title-en {
    font-size: 18px;
    white-space: normal;
    position: static;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    background: linear-gradient(0deg, #c5a27a 0%, #dcc8a5 50%, #c5a27a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .vip-junket-title-cn {
    font-size: 22px;
    white-space: normal;
    margin-left: 0;
    text-align: center;
    margin-top: 1.5rem;
  }

  .vip-junket-divider {
    display: none;
  }

  .vip-junket-divider-mobile {
    display: block;
    width: 200px;
    height: auto;
    max-height: none;
    object-fit: contain;
    margin: 0 auto 0rem auto;
  }

  .vip-junket-descriptions {
    text-align: center;
    width: 100%;
    gap: 0.5rem;
  }

  .vip-junket-desc-item {
    font-size: 0.9rem;
    white-space: normal;
    line-height: 1.5;
  }

  .vip-junket-image-wrapper {
    width: 100%;
    order: 2;
    height: auto;
    background-image: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px 0px 0px 6px;
    padding-bottom: 0;
  }

  .vip-junket-image-wrapper > * {
    position: relative;
    z-index: 1;
  }

  .vip-junket-image {
    max-width: 95%;
    height: auto;
    object-fit: contain;
    position: static;
    top: 0;
    left: 0;
  }

  .vip-junket-hero-section {
    display: flex;
    padding: 1.3rem 1.5rem;
    min-height: auto;
    padding-bottom: 0;
  }
  .vip-junket-hero-section-mobile-index {
    flex-direction: row;
  }

  .vip-junket-hero-title {
    font-size: 1.3rem;
  }

  .vip-junket-hero-icon {
    width: 145px;
    height: 23px;
  }

  .vip-junket-icon-center {
    width: 6px;
    height: 6px;
  }

  .hotels-section {
    padding: 0rem 1rem;
    margin-top: 1.3rem;
    background-color: transparent;
  }

  .hotels-swiper-container {
    width: 100%;
    padding: 0 60px 60px;
    padding-bottom: 0;
  }

  .hotel-card-special-content {
    flex-direction: column;
  }

  .hotel-card-special .hotel-image {
    width: 100%;
  }

  .section-title-wrapper {
    margin-bottom: 1rem;
    padding: 0 1rem;
    gap: 1rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .section-title-line {
    max-width: 50px;
  }

  .hotel-card {
    max-width: 100%;
  }

  .hotel-image {
    height: 200px;
  }

  .hotel-info {
    padding: 1rem;
  }

  .hotel-name {
    font-size: 1.2rem;
  }

  .hotel-description {
    font-size: 0.85rem;
  }

  .hotels-swiper .swiper-button-next,
  .hotels-swiper .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }

  /* 隐藏导航按钮 */
  .hotels-swiper .swiper-next,
  .hotels-swiper .swiper-prev {
    display: none !important;
  }

  /* 调整酒店卡片样式 */
  .hotels-swiper {
    margin: 0;
  }

  .hotels-swiper-container {
    padding: 0 0 60px !important;
  }

  .hotel-card {
    border-radius: 0;
    background-color: transparent;
  }

  .hotel-image-wrapper {
    height: 300px;
    border-radius: 5px;
  }

  .hotel-image {
    height: 100%;
    object-fit: cover;
  }

  .hotel-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.2rem;
    padding: 0.75rem 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
  }

  .hotel-name-title {
    font-size: 14px;
  }

  .hotel-name-subtitle {
    font-size: 12px;
  }

  .customer-service {
    display: none;
  }

  .customer-service-mobile-index {
    display: block;
    position: fixed;
    right: auto;
    bottom: auto;
  }

  .vip-link-icon {
    right: 1.5rem;
    bottom: 25.5rem;
    width: 60px;
    height: 60px;
  }

  .grand-club-section {
    display: none;
  }

  .hotels-swiper .swiper-pagination {
    bottom: 32px !important;
  }

  /* 禁用移动端hover效果 */
  .hotel-card:hover .hotel-overlay {
    transform: translateY(100%) !important;
    opacity: 0 !important;
  }
  .hotel-card:hover .hotel-name {
    display: block !important;
  }

  /* 移动端点击效果 */
  .hotel-card {
    cursor: pointer;
  }
}

/* 弹窗样式 */
.hotel-modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease, background-color 0.3s ease;
  pointer-events: none;
}

.hotel-modal.active {
  opacity: 1;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  pointer-events: auto;
}

.hotel-modal-content {
  background-color: transparent;
  border-radius: 12px;
  overflow: hidden;
  max-width: 90%;
  max-height: 90vh;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.hotel-modal.active .hotel-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.hotel-modal-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

.hotel-modal-info {
  background-color: rgba(30, 30, 30, 0.95);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hotel-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-gold-light);
  margin: 0;
  text-align: center;
  background: linear-gradient(0deg, #c5a27a 0%, #dcc8a5 50%, #c5a27a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hotel-modal-description {
  font-size: 0.9rem;
  color: var(--text-white);
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.hotel-modal-close {
  position: absolute;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.hotel-modal-close:active {
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

/* .hotel-modal-close:hover {
  opacity: 0.7;
  transform: scale(1.1);
} */

.hotel-modal-close-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 750px) {
  .hotel-modal-content {
    max-width: 95%;
  }

  .hotel-modal-image {
    max-height: 250px;
  }

  .hotel-modal-info {
    padding: 1.2rem;
  }

  .hotel-modal-title {
    font-size: 1.3rem;
  }

  .hotel-modal-description {
    font-size: 0.85rem;
  }

  .hotel-modal-close {
    width: 28px;
    height: 28px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 5.7rem;
  }

  /* .hotel-modal-close:hover {
    transform: translateX(-50%) scale(1.1);
  } */
}

/* Grand Club Section Styles */
.grand-club-section {
  padding: 4rem 13.125rem;
  position: relative;
  overflow: hidden;
  min-height: 26.25rem;
  background-color: #151515;
}

.grand-club-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  height: 26.25rem;
}

.grand-club-content {
  height: 100%;
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  z-index: 2;
  background-image: url('../images/index-place-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.grand-club-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.1875rem;
}

.grand-club-logo {
  width: 10rem;
  height: 8.75rem;
  object-fit: contain;
}

.grand-club-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 4.1875rem; */
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.grand-club-description {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-white);
  opacity: 0.9;
  margin: 0;
  margin-top: 0.5rem;
  padding-left: 4rem;
  padding-right: 2.5rem;
  text-align: left;
}

.grand-club-image-wrapper {
  height: 100%;
  width: 58%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.grand-club-image {
  width: 100%;
  height: 100%;
  display: block;
}


/* Gaming Area Section Styles */
.gaming-area-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  height: 26.25rem;
  margin-top: 4rem;
}

.gaming-area-content {
  height: 100%;
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  z-index: 2;
  background-image: url('../images/index-place-bg2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gaming-area-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.1875rem;
}

.gaming-area-logo {
  max-height: 5rem;
  width: auto;
  object-fit: contain;
}

.gaming-area-description {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-white);
  opacity: 0.9;
  margin: 0;
  margin-top: 0.5rem;
  padding-left: 4rem;
  padding-right: 2.5rem;
  text-align: left;
}

.gaming-area-image-wrapper {
  height: 100%;
  width: 58%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gaming-area-image {
  width: 100%;
  height: 100%;
  display: block;
}


/* Casino Experience Section Styles */
.casino-experience-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  height: 26.25rem;
  margin-top: 4rem;
  background-image: url('../images/index-place-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.casino-experience-image-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 60%;
}

.casino-experience-image {
  width: 100%;
  height: 100%;
  display: block;
}

.casino-experience-content {
  height: 100%;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  background-color: #2e2e2e;
  padding-left: 3rem;
  padding-right: 3rem;
}



.casino-experience-title {
  width: 528px;
  height: 62px;
  font-size: 2.5rem;
  font-family: PingFang SC, PingFang SC-Heavy;
  font-weight: 800;
  text-align: left;
  color: #dcc8a5;
  line-height: 36px;
  margin: 0;
  margin-bottom: 1.5rem;
  background: linear-gradient(0deg, #c5a27a 0%, #dcc8a5 50%, #c5a27a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.casino-experience-description {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-white);
  opacity: 0.9;
  margin: 0;
  text-align: left;
}


.grand-slots-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  height: 26.25rem;
  margin-top: 4rem;
}

.grand-slots-content {
  width: 42%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  z-index: 2;
  background-color: #1a1a1a;
  padding-left: 3rem;
  padding-right: 3rem;
}

.grand-slots-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.grand-slots-logo {
  max-height: 5rem;
  width: auto;
  object-fit: contain;
}

.grand-slots-description {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-white);
  opacity: 0.9;
  margin: 0;
  text-align: left;
}

.grand-slots-image-wrapper {
  width: 58%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 100%;
}

.grand-slots-image {
  width: 100%;
  height: 100%;
  display: block;
}

/* Footer Styles */
.footer {
  width: 100%;
  height: 340px;
  background-image: url('../images/footer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding-bottom: 2rem;

}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  flex-wrap: wrap;
  max-width: 1920px;
  width: 100%;
  padding: 0 2rem;
  padding-top: 5.5rem;
  box-sizing: border-box;
  
}

.footer-logo {
  height: 110px;
  max-height: 120px;
  width: 150px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  padding: 0 2rem;
}

.footer-copyright p {
  margin: 0;
  line-height: 1.6;
  color: #999999;
}

@media (max-width: 750px) {
  .footer {
    display: none;
  }
}

@media (min-width: 750px) and (max-width: 1900px) {
  .casino-experience-title {
    font-size: 1.6rem;
  }
  .footer-logos{
    gap: 10rem;
    padding-top: 4rem;
    max-width: 90%;
  }
  .footer{
    height: 250px;
  }
  .footer-logo{
    width: 100px;
    height: 70px;
  }
  .grand-club-logo{
    width: 130px;
    height: 120px;
  }
  .gaming-area-description{
    margin-top:0 
  }
  .gaming-area-logo{
    width: 200px;
    /* height: 200px; */
  }
  .hotel-name-title{
    font-size: 14px;
  }
  .hotel-name-subtitle{
    font-size: 10px;
  }
}

