/* Font Face Definition */
@font-face {
  font-family: 'Futura';
  src: url('../fonts/futuea.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  /* background-color: #f0f0f0; */
  overflow-x: hidden;
  width: 100%;
  font-family: 'Futura', sans-serif;
}

body {
  font-family: 'Futura', sans-serif;
  /* Global font application */
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  margin: 0 auto;
  background-color: #fff;
  background-image: url('../images/page-bg.png');
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center 0;
  background-repeat: no-repeat;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.w90 {
  /* width: 1600px; */
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 60px 0;
}

.center-text {
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

/* Typography */
h1,
h2,
h3 {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
}

.pink-text {
  color: #d62f7f;
}

/* Header */
.site-header {
  width: 100%;
  background: #fff;
  padding: 0;
  position: relative;
  /* 去掉 sticky/fixed，改为相对定位 */
  z-index: 1000;
}

.header-inner {
  /* max-width: 1600px; */
  /* margin: 0 auto; */
}

/* Desktop Header Styles */
.header-desktop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 20px;
}

.header-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: 40px;
}

.header-center img {
  height: 50px;
  display: block;
}

.header-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 50px;
}

/* Mobile Header Styles (Hidden by default) */
.header-mobile {
  display: none;
}

/* Header Buttons */
.btn-header {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 15px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 1px;
  line-height: 1;
}

.btn-black {
  background-color: #000;
  color: #fff;
  min-width: 40px;
}

.btn-black:hover {
  background-color: #333;
}

.btn-pink {
  background-color: #cc0000;
  color: #fff;
  border-radius: 12px;
  padding: 8px 10px;
}

.btn-pink:hover {
  background-color: #b20303;
}

/* Responsive Header */

.btn-header-new {
  display: inline-block;
  height: 36px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-header-new img {
  height: 100%;
  width: auto;
  display: block;
}

.btn-header-new:hover {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
}

/* Language Dropdown Styles */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown-btn {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  min-width: 65px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  margin-top: 5px;
}

.lang-dropdown-menu a {
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  transition: background-color 0.3s;
  font-size: 14px;
  text-align: left;
}

.lang-dropdown-menu a:hover {
  background-color: #ec008c;
}

.lang-dropdown.active .lang-dropdown-menu {
  display: block;
}

/* Mobile language dropdown */
.lang-dropdown-mobile .lang-dropdown-btn {
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
}

.summit-content {
  position: relative;
  max-width: 1600px;
  margin: 50px auto 0;
}

.summit-bg-wrap {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  /* 确保桌面端为横向排列 */
}

.summit-img-item {
  width: 25%;
  /* 桌面端 4 列 */
  aspect-ratio: 373 / 516;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.summit-img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  top: 15%;
}

/* 渐变蒙层 */
.summit-img-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(var(--bg-rgb, 255, 255, 255), 1)),
    color-stop(35%, rgba(var(--bg-rgb, 255, 255, 255), 1)),
    to(rgba(var(--bg-rgb, 255, 255, 255), 0))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(var(--bg-rgb, 255, 255, 255), 1) 0%,
    rgba(var(--bg-rgb, 255, 255, 255), 1) 35%,
    rgba(var(--bg-rgb, 255, 255, 255), 0) 100%
  );
  background: -moz-linear-gradient(
    top,
    rgba(var(--bg-rgb, 255, 255, 255), 1) 0%,
    rgba(var(--bg-rgb, 255, 255, 255), 1) 35%,
    rgba(var(--bg-rgb, 255, 255, 255), 0) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(var(--bg-rgb, 255, 255, 255), 1) 0%,
    rgba(var(--bg-rgb, 255, 255, 255), 1) 35%,
    rgba(var(--bg-rgb, 255, 255, 255), 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(var(--bg-rgb, 255, 255, 255), 1) 0%,
    rgba(var(--bg-rgb, 255, 255, 255), 1) 35%,
    rgba(var(--bg-rgb, 255, 255, 255), 0) 100%
  );
  /* 0-35%不透明，35%开始渐变到透明 */
}

.summit-img-item:nth-child(1) {
  --bg-rgb: 255, 146, 125;
}

.summit-img-item:nth-child(2) {
  --bg-rgb: 204, 131, 161;
}

.summit-img-item:nth-child(3) {
  --bg-rgb: 206, 164, 132;
}

.summit-img-item:nth-child(4) {
  --bg-rgb: 211, 128, 144;
}

.summit-img-item:nth-child(1)::after {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 146, 125, 1)),
    color-stop(35%, rgba(255, 146, 125, 1)),
    to(rgba(255, 146, 125, 0))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 146, 125, 1) 0%,
    rgba(255, 146, 125, 1) 35%,
    rgba(255, 146, 125, 0) 100%
  );
  background: -moz-linear-gradient(
    top,
    rgba(255, 146, 125, 1) 0%,
    rgba(255, 146, 125, 1) 35%,
    rgba(255, 146, 125, 0) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(255, 146, 125, 1) 0%,
    rgba(255, 146, 125, 1) 35%,
    rgba(255, 146, 125, 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(255, 146, 125, 1) 0%,
    rgba(255, 146, 125, 1) 35%,
    rgba(255, 146, 125, 0) 100%
  );
}

.summit-img-item:nth-child(2)::after {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(204, 131, 161, 1)),
    color-stop(35%, rgba(204, 131, 161, 1)),
    to(rgba(204, 131, 161, 0))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(204, 131, 161, 1) 0%,
    rgba(204, 131, 161, 1) 35%,
    rgba(204, 131, 161, 0) 100%
  );
  background: -moz-linear-gradient(
    top,
    rgba(204, 131, 161, 1) 0%,
    rgba(204, 131, 161, 1) 35%,
    rgba(204, 131, 161, 0) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(204, 131, 161, 1) 0%,
    rgba(204, 131, 161, 1) 35%,
    rgba(204, 131, 161, 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(204, 131, 161, 1) 0%,
    rgba(204, 131, 161, 1) 35%,
    rgba(204, 131, 161, 0) 100%
  );
}

.summit-img-item:nth-child(3)::after {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(206, 164, 132, 1)),
    color-stop(35%, rgba(206, 164, 132, 1)),
    to(rgba(206, 164, 132, 0))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(206, 164, 132, 1) 0%,
    rgba(206, 164, 132, 1) 35%,
    rgba(206, 164, 132, 0) 100%
  );
  background: -moz-linear-gradient(
    top,
    rgba(206, 164, 132, 1) 0%,
    rgba(206, 164, 132, 1) 35%,
    rgba(206, 164, 132, 0) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(206, 164, 132, 1) 0%,
    rgba(206, 164, 132, 1) 35%,
    rgba(206, 164, 132, 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(206, 164, 132, 1) 0%,
    rgba(206, 164, 132, 1) 35%,
    rgba(206, 164, 132, 0) 100%
  );
}

.summit-img-item:nth-child(4)::after {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(211, 128, 144, 1)),
    color-stop(35%, rgba(211, 128, 144, 1)),
    to(rgba(211, 128, 144, 0))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(211, 128, 144, 1) 0%,
    rgba(211, 128, 144, 1) 35%,
    rgba(211, 128, 144, 0) 100%
  );
  background: -moz-linear-gradient(
    top,
    rgba(211, 128, 144, 1) 0%,
    rgba(211, 128, 144, 1) 35%,
    rgba(211, 128, 144, 0) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(211, 128, 144, 1) 0%,
    rgba(211, 128, 144, 1) 35%,
    rgba(211, 128, 144, 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(211, 128, 144, 1) 0%,
    rgba(211, 128, 144, 1) 35%,
    rgba(211, 128, 144, 0) 100%
  );
}

.summit-cards-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  pointer-events: none;
  z-index: 2;
}

.s-card-new {
  width: 25%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: center;
  color: #fff;
  padding-top: 80px;
}

.s-card-new h3 {
  font-size: clamp(1.5rem, 4.5vw, 4.3rem);
  margin-bottom: 0;
  text-shadow: 0 11px 5.3px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
}

.s-card-new p {
  font-size: clamp(0.8rem, 2.4vw, 2.3rem);
  font-weight: bold;
  text-shadow: 0 11px 5.3px rgba(0, 0, 0, 0.25);
  line-height: 1.2;
  margin-top: -5px;
}

.btn-black {
  background-color: #000;
  color: #fff;
  min-width: 40px;
}

.btn-black:hover {
  background-color: #333;
}

.text-blue {
  font-family: 'Futura', sans-serif;
  width: 100%;
  position: relative;
  font-size: clamp(1rem, 4vw, 4.1rem);
  /* 进一步缩小最小值和vw系数以确保小屏不溢出 */
  font-weight: 600;
  color: #231815;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  text-transform: none;
  letter-spacing: -1px;
  white-space: nowrap;
  /* 强制不换行 */
  overflow: hidden;
  /* 防止万一出现的溢出 */
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  /* 如果还是放不下（极端情况），显示省略号而不是换行 */
  background: -webkit-gradient(linear, left top, right top, from(#e0d1f7), to(#f7e1e1));
  background: -webkit-linear-gradient(left, #e0d1f7 0%, #f7e1e1 100%);
  background: -moz-linear-gradient(left, #e0d1f7 0%, #f7e1e1 100%);
  background: -o-linear-gradient(left, #e0d1f7 0%, #f7e1e1 100%);
  background: linear-gradient(to right, #e0d1f7 0%, #f7e1e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Banner */
.hero {
  position: relative;
  /* aspect-ratio: 1920 / 856; */
  color: #fff;
  border-radius: 0 0 50px 50px;
  padding: 50px 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('../images/banner1.png');
  /* background-size: cover; */
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  background-position: center;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.hero-text-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* align-items: center; */
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-title-main {
  /* font-size: clamp(2vw, 1.2rem, 3rem); */
  font-size: clamp(0.9rem, 2.2vw, 36px);
  font-weight: 900;
  color: #fff;
  margin: 0;
  /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); */
  line-height: 1;
  text-transform: none;
}

.hero-subtitle {
  /* font-size: clamp(3.8vw, 1.5rem, 4rem); */
  font-size: clamp(1.6rem, 4.2vw, 64px);
  font-weight: bolder;
  color: #fff;
  text-transform: none;
  margin: 0 0 0;
  /* text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3); */
}

.hero-date {
  /* font-size: clamp(2.1vw, 1.2rem, 3rem); */
  font-size: clamp(1rem, 2.2vw, 40px);
  font-weight: bold;
  text-transform: none;
  color: #fff;
  margin: 6px 0 0;
  /* text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3); */
}

.hero-venue {
  /* font-size: clamp(1.5vw, 1rem, 2rem); */
  font-size: clamp(0.7rem, 1.55vw, 28px);
  font-weight: bold;
  color: #fff;
  margin: 0;
  /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
}

.hero .hero-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.hero .btn-cta {
  font-size: clamp(1.2rem, 2.2vw, 40px);
}
.hero .btn-cta.ru {
  font-size: clamp(1.1rem, 1.5vw, 30px);
}

.hero .btn-cta.vi {
  font-size: clamp(1.1rem, 1.5vw, 30px);
}

.hero-content-icon-wrapper .row1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 20px;
}
.hero-content-icon-wrapper .row1 .col1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.hero-content-icon-wrapper .row1 .col1 .space {
  height: 20px;
}
.hero-content-icon-wrapper .row1 .col1 .card {
  /* width: 13vw; */
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* height: 11vw; */
  overflow: hidden;
  border: solid 2px #fff;
  border-radius: 10px;
}
.hero-content-icon-wrapper .row1 .col1 .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-content-icon-wrapper .row1 .col3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hero-content-icon-wrapper .row1 .col3 .card {
  /* width: 18vw; */
  height: 100%;
  overflow: hidden;
  border: solid 2px #fff;
  border-radius: 10px;
}
.hero-content-icon-wrapper .row1 .col3 .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-content-icon-wrapper .row1 .col2 {
  /* flex: 1; */
  /* width: 1000px; */
  width: 63%;
  aspect-ratio: 1000 / 415;
}
.hero-content-icon-wrapper .row1 .col2 .card {
  height: 100%;
  padding: 0 20px;
  background-color: #65996d;
  overflow: hidden;
  border: solid 2px #fff;
  border-radius: 10px;
  background-image: url('../images/banner1-icon7.png');
  -o-background-size: auto 100%;
  background-size: auto 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.hero-content-icon-wrapper .row2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
}
.hero-content-icon-wrapper .row2 .card {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 33.3333%;
  height: 11vw;
  overflow: hidden;
  border: solid 2px #fff;
  border-radius: 10px;
}
.hero-content-icon-wrapper .row2 .card img {
  width: 101%;
  height: 101%;
  max-width: 101%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: -2px 0 0 -2px;
}

.btn-cta {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#ece0fb), to(#fbeae9));
  background: -webkit-linear-gradient(left, #ece0fb, #fbeae9);
  background: -moz-linear-gradient(left, #ece0fb, #fbeae9);
  background: -o-linear-gradient(left, #ece0fb, #fbeae9);
  background: linear-gradient(to right, #ece0fb, #fbeae9);
  color: #000;
  padding: 10px 25px;
  /* border-radius: 12px; */
  font-weight: 800;
  font-size: 1.4rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 10;

  background: #ffe702;
  color: #175125;
  font-weight: 800;
  font-size: 1.8rem;
  white-space: nowrap;
  border-radius: 20px;
}

.btn-cta:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

/* Pink CTA Button Style from Figma node 55:12243 */
.btn-cta-pink {
  background: #cc0000;
  padding: 5px 80px;
  border-radius: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
}

.btn-cta-pink span {
  font-size: 40px;
  font-weight: 800;
  /* 根据 Figma 21.98px 高度估算 */
  text-transform: uppercase;
  color: #fff;
}
.btn-cta-pink.ru span {
  font-size: 26px;
}

.nomargintop {
  margin-top: 0 !important;
}

.btn-cta-pink:hover {
  /* filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(199, 68, 79, 0.35) !important; */
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
  background: #b60000;
}

.section-cta-wrap {
  text-align: center;
  margin-top: 60px;
  width: 100%;
}
.mobile-visible {
  display: none;
}
.margin-top-60 {
  margin-top: 60px !important;
}

/* Main Content Wrapper (Intro + Map + Why Visit) */
.main-content-wrapper {
  background-image: url('../images/bg2.png');
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Intro Section */
.intro {
  padding-top: 100px;
  padding-bottom: 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.intro-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.intro-image {
  width: 30%;
}

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

.intro .main-title {
  font-size: clamp(1.3rem, 3.7vw, 56px);
  font-weight: 900;
  color: #231815;
}
.intro .main-title.ind {
  font-size: clamp(1.2rem, 3.3vw, 50px);
}
.intro .sub-title {
  font-size: clamp(1.3rem, 3.7vw, 56px);
  font-weight: 900;
  color: #ef8b85;
  margin-top: -5px;
}
.intro .sub-title.ind {
  font-size: clamp(1.2rem, 3.3vw, 50px);
}

.intro-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.intro-text p {
  font-size: clamp(1rem, 1.6vw, 28px);
  color: #231815;
  line-height: 1.4;
  margin-top: 25px;
  padding: 0 25% 0 0;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

/* Map Section */
.map-section {
  background: transparent;
  padding-top: 150px;
  padding-bottom: 60px;
}

.map-header {
  margin-bottom: 50px;
}

.map-header .map-header-text {
  font-size: clamp(1.3rem, 3.8vw, 60px);
  margin-bottom: 5px;
  color: #000;
  font-weight: bolder;
  letter-spacing: 0.5px;
}

.map-date {
  font-size: clamp(0.8rem, 1.8vw, 32px);
  font-weight: bold;
  color: #000;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.map-venue {
  font-size: clamp(0.8rem, 1.6vw, 32px);
  font-weight: bold;
  color: #000;
  letter-spacing: 0.5px;
}

.map-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 90px;
  margin-top: 40px;
}

.map-image {
  width: 45%;
  /* width: 100%; */
  /* max-width: 725px; */
}

.map-image img {
  width: 100%;
}

.map-legend {
  /* flex: 1; */
}
.map-legend .img1 {
  width: 75%;
  /* margin: 0 auto; */
  margin-top: 8%;
}
.map-legend .img1 img {
  display: block;
  width: 100%;
}
.map-legend ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 20px;
}

.map-legend li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  position: relative;
}

.map-legend li img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.map-legend li .icon-new {
  width: 25px;
  height: 25px;
  margin-right: 0;

  position: absolute;
  top: -5px;
  left: 38px;
}

/* Why Visit */
.why-visit {
  background: transparent;
  padding-top: 60px;
  padding-bottom: 120px;
}

.why-visit .center-text {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
}

.why-visit-subtitle {
  padding-bottom: 60px;
}

.why-visit-subtitle p {
  font-size: 2rem;
  color: #555;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}

.stats-grid {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 65px;
  text-align: center;
}

.stat-item {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -moz-transition:
    transform 0.3s,
    -moz-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s,
    -moz-transform 0.3s,
    -o-transform 0.3s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.stat-item:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

.stat-item img {
  height: 60px;
  margin-bottom: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

.stat-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.stat-num {
  /* font-size: 1.8rem; */
  font-size: clamp(36px, 1.5rem, 2.5rem);
  font-weight: 900;
  color: #231815;
  line-height: 1;
  margin-bottom: 5px;
  white-space: nowrap;
}

.stat-num small {
  font-size: clamp(14px, 0.9rem, 1.1rem);
  font-weight: normal;
  margin-left: 2px;
}

.stat-label {
  font-size: 1rem;
  font-size: clamp(16px, 1rem, 1.1rem);
  color: #231815;
  font-weight: 500;
  white-space: nowrap;
}

.why-visit-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.stat-content0 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.stat-content0 .stat-num {
  display: block;
  font-size: clamp(1.3rem, 3.5vw, 50px);
  font-weight: 900;
}
.stat-content0 .stat-label {
  display: block;
  font-size: clamp(1.3rem, 3.5vw, 50px);
  font-weight: 900;
  color: #ef8b85;
  line-height: 1.2;
  white-space: nowrap;
}

.section-card1 {
  padding: 40px 0;
}
.section-card1 .item-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.section-card1 .item-list .list {
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* height: 20vw; */
  aspect-ratio: 420 / 270;
  position: relative;
  cursor: pointer;
}
.section-card1 .item-list .list .item-content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  /* background: linear-gradient(0deg, #FFD0CE 100%, #ffffff 100%); */
  background: -webkit-linear-gradient(141deg, rgba(255, 254, 254, 1) 0%, rgba(255, 208, 206, 1) 113.14%);
  background: -moz-linear-gradient(141deg, rgba(255, 254, 254, 1) 0%, rgba(255, 208, 206, 1) 113.14%);
  background: -o-linear-gradient(141deg, rgba(255, 254, 254, 1) 0%, rgba(255, 208, 206, 1) 113.14%);
  background: linear-gradient(309deg, rgba(255, 254, 254, 1) 0%, rgba(255, 208, 206, 1) 113.14%);
  padding: 20px 20px 120px;
  border-radius: 14px;
}
.section-card1 .item-list .list::before {
  content: '';
  display: block;
  width: 90%;
  height: 90%;
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: #ef8b85;
  border-radius: 14px;
  /* transform: skewX(5deg); */
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.section-card1 .item-list .list:hover::before {
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotate(-7deg);
  -moz-transform: rotate(-7deg);
  -ms-transform: rotate(-7deg);
  -o-transform: rotate(-7deg);
  transform: rotate(-7deg);
  opacity: 1;
}
.section-card1 .item-list .list:hover .item-content {
  box-shadow: 3px 3px 5px inset rgba(255, 255, 255, 0.8);
}
.section-card1 .item-list .list .i-title {
  display: block;
  font-size: clamp(1rem, 1.9vw, 32px);
  font-weight: bolder;
  color: #ef8b85;
  line-height: 1.2;
}
.section-card1 .item-list .list .i-text {
  display: block;
  /* margin-top: 20px; */
  margin-top: 4%;
  font-size: clamp(0.8rem, 1.1vw, 15px);
  color: #555;
  line-height: 1.4;
}
.section-card1 .item-list .list .i-icon {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  /* width: 70px; */
  width: 14%;
}
.section-card1 .item-list .list .i-icon img {
  display: block;
  width: 100%;
}

/* Special styling for the split stat (200,000 sqm | 17 Hall) */
.split-stat {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.split-left,
.split-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.split-divider {
  width: 2px;
  height: 40px;
  background-color: #ccc;
}

/* Categories */
.categories {
  /* background-image: url('../images/bg3.png'); */
  -o-background-size: cover;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 220px;
  padding-bottom: 100px;
  position: relative;
}

.categories-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.cat-header-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}

.black-label {
  background: #ef8b85;
  color: #fff;
  padding: 10px 30px 10px 15px;
  font-size: 2.5rem;
  font-weight: normal;
  text-transform: none;
  margin: 0;
  display: inline-block;
  line-height: 1;
}

.cat-header-badge {
  position: absolute;
  margin-top: -20px;
  z-index: 2;
  top: -140px;
  right: 0;
  width: 480px;
  height: 520px;
  background-image: url('../images/cimg1.png');
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.badge-number {
  position: absolute;
  top: 18%;
  left: 11%;
  /* transform: translate(-50%, -50%); */
  /* font-size: 5rem; */
  font-size: clamp(90px, 3rem, 6rem);
  font-weight: bolder;
  color: #fff;
  line-height: 1;
  z-index: 3;
  font-family: 'Futura', sans-serif;
  letter-spacing: -5px;
}

.badge-text-group {
  position: absolute;
  top: 39%;
  left: 11%;
  /* transform: translateY(-50%); */
  z-index: 4;
  text-align: left;
}

.badge-text-line {
  font-family: 'Futura', sans-serif;
  font-size: clamp(1.2rem, 36px, 2.5rem);
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
}
.badge-text-line.vi {
  font-size: clamp(1.1rem, 30px, 2.2rem);
}

.badge-arrow {
  position: absolute;
  bottom: 50px;
  left: 60px;
  width: 140px;
  height: 110px;
  z-index: 2;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 20px;
  padding: 220px 0 50px;
}

.cat-item {
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition:
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    -webkit-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    -moz-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
    -o-transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cat-item:hover {
  -webkit-transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -o-transform: translateY(-8px);
  transform: translateY(-8px);
}

.cat-item .icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}
.cat-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cat-item p {
  margin-top: 10px;
  font-size: 22px;
  color: #000;
  font-weight: bold;
  line-height: 1.3;
}

/* NEW Tag Styling */
.new-item {
  position: relative;
}

.new-tag {
  position: absolute;
  top: -8px;
  right: -3%;
  width: 55px;
  height: 55px;
  /* background-image: url('../images/icon-new.png'); */
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 0 0;
  color: #fff;
  font-size: 1rem;
  background-color: #f31100;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}
.new-tag.ru {
  font-size: 0.8rem;
}
.new-tag.vi {
  font-size: 0.8rem;
}
.new-tag.id {
  font-size: 0.8rem;
}
.new-tag.zh {
  font-size: 0.8rem;
}
.new-tag.ko {
  font-size: 0.8rem;
}
.new-tag.th {
  font-size: 0.8rem;
}
.new-tag.en {
  font-size: 0.8rem;
}



/* Summit & Events & Feature Wrapper */
.summit-events-wrapper {
  background-image: url('../images/bg4.png');
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 20px;
}

/* Summit Section */
.summit {
  background: transparent;
  padding-top: 80px;
  padding-bottom: 40px;
}

.summit .summit-text {
  color: #000;
  font-size: 3.5rem;
  font-weight: 800;
}

/* Gradient Definitions */
.gradient-1 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 160, 122, 0.9)),
    to(rgba(255, 218, 185, 0.4))
  );
  background: -webkit-linear-gradient(top, rgba(255, 160, 122, 0.9), rgba(255, 218, 185, 0.4));
  background: -moz-linear-gradient(top, rgba(255, 160, 122, 0.9), rgba(255, 218, 185, 0.4));
  background: -o-linear-gradient(top, rgba(255, 160, 122, 0.9), rgba(255, 218, 185, 0.4));
  background: linear-gradient(to bottom, rgba(255, 160, 122, 0.9), rgba(255, 218, 185, 0.4));
  /* Orange -> Peach */
}

.gradient-2 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(219, 112, 147, 0.9)),
    to(rgba(238, 130, 238, 0.4))
  );
  background: -webkit-linear-gradient(top, rgba(219, 112, 147, 0.9), rgba(238, 130, 238, 0.4));
  background: -moz-linear-gradient(top, rgba(219, 112, 147, 0.9), rgba(238, 130, 238, 0.4));
  background: -o-linear-gradient(top, rgba(219, 112, 147, 0.9), rgba(238, 130, 238, 0.4));
  background: linear-gradient(to bottom, rgba(219, 112, 147, 0.9), rgba(238, 130, 238, 0.4));
  /* Pink -> Violet */
}

.gradient-3 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(245, 222, 179, 0.9)),
    to(rgba(255, 228, 196, 0.4))
  );
  background: -webkit-linear-gradient(top, rgba(245, 222, 179, 0.9), rgba(255, 228, 196, 0.4));
  background: -moz-linear-gradient(top, rgba(245, 222, 179, 0.9), rgba(255, 228, 196, 0.4));
  background: -o-linear-gradient(top, rgba(245, 222, 179, 0.9), rgba(255, 228, 196, 0.4));
  background: linear-gradient(to bottom, rgba(245, 222, 179, 0.9), rgba(255, 228, 196, 0.4));
  /* Beige -> Light Peach */
}

.gradient-4 {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(219, 112, 147, 0.9)),
    to(rgba(148, 0, 211, 0.4))
  );
  background: -webkit-linear-gradient(top, rgba(219, 112, 147, 0.9), rgba(148, 0, 211, 0.4));
  background: -moz-linear-gradient(top, rgba(219, 112, 147, 0.9), rgba(148, 0, 211, 0.4));
  background: -o-linear-gradient(top, rgba(219, 112, 147, 0.9), rgba(148, 0, 211, 0.4));
  background: linear-gradient(to bottom, rgba(219, 112, 147, 0.9), rgba(148, 0, 211, 0.4));
  /* Pink -> Purple */
}

.s-card-content {
  position: relative;
  z-index: 2;
}

.s-card h3 {
  font-size: 3.5rem;
  /* Larger numbers */
  color: #fff;
  margin-bottom: 5px;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.s-card p {
  font-weight: bold;
  text-transform: capitalize;
  /* "Theme Forums" etc */
  color: #fff;
  font-size: 1.1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Section Divider Text */
.section-divider-text {
  text-align: center;
  margin: 40px 0;
  opacity: 1;
  /* Faint effect */
}

.section-divider-text img {
  max-width: 80%;
  margin: 0 auto;
}

.events-article {
  background-image: url('../images/bg6.png');
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: center 30%;
  background-repeat: no-repeat;
}
/* Events */
.events {
  background: transparent;
  padding-top: 40px;
  padding-bottom: 40px;
}

.events .left-text {
  text-align: left;
  font-size: 50px;
  color: #231815;
  font-weight: 800;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.events .left-text div:nth-child(2) {
  grid-column: span 3;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.event-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 379px;
  aspect-ratio: 1 / 1.2;
  height: auto;
}
.event-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(30%, rgba(255, 255, 255, 0.2)),
    color-stop(95%, #ef8b85)
  );
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2) 30%, #ef8b85 95%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.2) 30%, #ef8b85 95%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.2) 30%, #ef8b85 95%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 30%, #ef8b85 95%);
}
.event-card:nth-child(1) {
  overflow: visible;
}
.event-card:nth-child(1)::before {
  opacity: 0;
}
.event-card:nth-child(1) img {
  height: auto;
  -o-object-fit: inherit;
  object-fit: inherit;
  position: absolute;
  bottom: 0;
}

.event-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: -o-transform 0.5s;
  -moz-transition:
    transform 0.5s,
    -moz-transform 0.5s;
  transition: transform 0.5s;
  transition:
    transform 0.5s,
    -webkit-transform 0.5s,
    -moz-transform 0.5s,
    -o-transform 0.5s;
}

.event-card:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.event-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  text-align: left;
  line-height: 1.2;
  z-index: 2;
  /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); */
  height: -webkit-calc(1.8rem * 1.2 * 2);
  height: -moz-calc(1.8rem * 1.2 * 2);
  height: calc(1.8rem * 1.2 * 2);
}
.event-title.ru {
  font-size: 22px;
}
.event-title sup {
  font-size: 1rem;
}

/* Feature Pizza */
.feature-pizza {
  background: transparent;
  padding-top: 40px;
  padding-bottom: 80px;
  width: 100%;
}

.pizza-grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-areas:
    'title img'
    'text img';
  gap: 20px 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pizza-title {
  grid-area: title;
  font-size: 3.3rem;
  color: #000;
  font-weight: 800;
  margin-bottom: 0;
}

.pizza-text {
  grid-area: text;
  align-self: start;
}

.pizza-text p {
  font-size: 1.8rem;
  color: #333;
  line-height: 1.6;
}

.pizza-img {
  grid-area: img;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pizza-img img {
  border-radius: 50px;
  width: 100%;
  height: auto;
  max-width: 559px;
  -o-object-fit: cover;
  object-fit: cover;
}

/* VIP & Campaign Section */
.vip-campaign {
  padding-top: 10px;
  padding-bottom: 30px;
  position: relative;
}

.vip-header {
  margin-bottom: 50px;
}

.vip-header div:first-child {
  font-size: 3rem;
  font-weight: 800;
  color: #000;
}

.vip-header .sub-heading {
  font-size: 1.5rem;
  color: #444;
  font-weight: normal;
  line-height: 1.6;
}

.vip-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.vip-card {
  background: url('../images/fimg1.png') center no-repeat;
  border-radius: 15px;
  padding: 30px 20px;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  position: relative;
  color: #fff;
  aspect-ratio: 379 / 420;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
}

.vip-card p {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
}

.vip-divider {
  border-bottom: 2px solid;
  -moz-border-image: -moz-linear-gradient(left, transparent 0%, #e0d1f7 20%, #f7e1e1 80%, transparent 100%) 1;
  -o-border-image: -o-linear-gradient(left, transparent 0%, #e0d1f7 20%, #f7e1e1 80%, transparent 100%) 1;
  border-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(transparent),
      color-stop(20%, #e0d1f7),
      color-stop(80%, #f7e1e1),
      to(transparent)
    )
    1;
  border-image: -webkit-linear-gradient(left, transparent 0%, #e0d1f7 20%, #f7e1e1 80%, transparent 100%) 1;
  border-image: linear-gradient(to right, transparent 0%, #e0d1f7 20%, #f7e1e1 80%, transparent 100%) 1;
  padding: 20px 0;
  margin: 40px 0 60px;
}

.vip-divider p {
  color: #555;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: normal;
}

/* Campaign */
.campaign-header {
  text-align: center;
  font-size: 50px;
  color: #231815;
  font-weight: 800;
  margin-top: 80px;
}
.campaign-header.ru {
  font-size: 36px;
}

/* Scalable Referral Section */
.referral-scale-wrapper {
  width: 100%;
  container-type: inline-size;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 20%;
}

.referral-area {
  position: relative;
  width: 900px;
  margin: 40px auto 0; /* 80/1052 approx */
  overflow: visible;
}

.referral-bg-elements {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ref-bg-v2,
.ref-bg-v3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.ref-bg-v3 {
  right: 0;
  top: 0;
  left: unset;
  width: 26.52%;
  height: auto;
}

.ref-vip-watermark {
  position: absolute;
  top: 6.12%;
  right: 1.33%;
  font-size: 8cqw;
  font-weight: 900;
  color: #231815;
  opacity: 1;
  font-family: 'Futura', sans-serif;
  -webkit-transform: rotate(44deg);
  -moz-transform: rotate(44deg);
  -ms-transform: rotate(44deg);
  -o-transform: rotate(44deg);
  transform: rotate(44deg);
  z-index: 2;
}

.referral-inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}

.referral-content {
  position: absolute;
  left: 8%;
  top: 15%;
  width: 72%;
}

.referral-title p {
  font-size: 30px;
  font-weight: 800;
  color: #231815;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}
.referral-title .vi{
  font-size: 28px;
}

.referral-line {
  width: 95%;
  height: 1.5px;
  background: #231815;
  border: none;
  margin: 3.32% 0;
  display: block;
  opacity: 0.6;
}

.referral-rewards {
  list-style: none;
  padding: 0;
  margin-top: 3.32%;
  font-size: 3.42cqw;
  font-weight: normal;
}

.reward-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 5.13cqw;
  padding-left: 1%;
}

.reward-bg {
  position: absolute;
  left: 5.33%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  height: 4.56cqw;
  width: auto;
  opacity: 0.4;
}

.reward-text-wrap {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.check-icon {
  width: 1.33cqw;
  height: 1.33cqw;
  -o-object-fit: contain;
  object-fit: contain;
}

.reward-text-wrap span {
  font-size: 25px;
  font-weight: normal;
  color: #231815;
  white-space: nowrap;
}
.reward-text-wrap .vi {
  font-size: 17px;
}

.referral-badge-wrap {
  position: absolute;
  right: -19.01%;
  bottom: -11.13%;
  width: 36.12%;
  height: 70.5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #3e3a39;
  border-radius: 50%;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.35);
  -webkit-transform: rotate(18deg);
  -moz-transform: rotate(18deg);
  -ms-transform: rotate(18deg);
  -o-transform: rotate(18deg);
  transform: rotate(18deg);
  z-index: 10;
}

.badge-text {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff;
  padding: 0 13%;
}

.badge-text p {
  font-size: 3.23cqw;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}
.badge-text .idn {
  font-size: 2.8cqw;
}

.section-referral-register-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 100px 0 250px;
}

.footer-wrap {
  background: -webkit-linear-gradient(296deg, #ef8b85 16.63%, #ffd0ce 50.1%, #fff 70.59%);
  background: -moz-linear-gradient(296deg, #ef8b85 16.63%, #ffd0ce 50.1%, #fff 70.59%);
  background: -o-linear-gradient(296deg, #ef8b85 16.63%, #ffd0ce 50.1%, #fff 70.59%);
  background: linear-gradient(154deg, #ef8b85 16.63%, #ffd0ce 50.1%, #fff 70.59%);
  border-radius: 0 100px 0 0;
  padding-top: 80px;
  position: relative;
}

/* Testimonials Section */
.testimonials {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonials .title-text {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}

.testimonials-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 22px;
  margin: 0 auto;
}

.quote-card {
  background-color: #fff;
  border-radius: 14px;
  padding: 20px 8px 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 320px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-image: url('../images/icon-douhao.png');
  -o-background-size: 50px auto;
  background-size: 50px auto;
  background-position: 93% 96%;
  background-repeat: no-repeat;
}

.quote-card-2 .quote-text {
  background: #ffcfa5;
}

.quote-content {
  position: relative;
  z-index: 2;
}

.quote-text {
  margin-bottom: 20px;
  padding: 28px 20px;
  background: #ecdfff;
  border-radius: 10px;
  min-height: 15rem;
}
.quote-text p {
  font-size: 15px;
  line-height: 1.8;
  word-break: break-word;
}

.quote-author {
  padding: 25px 24px 8px;
}
.quote-author .t1 {
  font-size: 0.9rem;
}
.quote-author .t2 {
  font-size: 0.9rem;
  color: #999;
  margin-top: 5px;
}

/* Footer */
.site-footer {
  padding: 50px 0;
}

.footer-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 150px;
  padding-top: 15px;
}

.footer-left {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.footer-left .footer-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
}

.social-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  -webkit-transform: translateY(-5px) scale(1.1);
  -moz-transform: translateY(-5px) scale(1.1);
  -ms-transform: translateY(-5px) scale(1.1);
  -o-transform: translateY(-5px) scale(1.1);
  transform: translateY(-5px) scale(1.1);
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
}

.social-icons img {
  width: 70px;
  height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.footer-right {
  /* flex: 1; */
}

.footer-info h4 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 5px;
}

.footer-info p {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.8;
}

.footer-notice {
  margin-top: 10px;
}
.footer-notice h4 {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 5px;
}

.footer-notice p {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.8;
}

/* Animations */
/* Base state for animations */
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

.fade-up {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}

.fade-left {
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
}

.fade-right {
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
}

/* Visible state */
.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
}

/* ==================== MEDIA QUERIES ==================== */

/* 1600px 及以下 */
@media (max-width: 1600px) {
  /* .pc-visible {
        display: none !important;
    } */
}

/* 1450px 及以下 */
@media (max-width: 1450px) {
}

/* 1250px 及以下 */
@media (max-width: 1250px) {
}

/* 1200px 及以下 */
@media (max-width: 1200px) {
  /* .btn-cta {
        font-size: 1.2rem;
        padding: 0.625rem 2.5rem;
    }

    .s-card-new h3 {
        font-size: 3rem;
    }

    .s-card-new p {
        font-size: 1.5rem;
    }

    .cat-header-badge {
        top: -6.25rem;
    }

    .map-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .map-legend {
        width:95%;
    }

    .map-legend ul {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 8vw;
    }

    .map-image {
        width: calc(100% - 5vw) !important;
        max-width: unset !important;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .vip-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        padding: 0;
    } */
}

/* 1100px 及以下 */
@media (max-width: 1100px) {
  /* .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    } */
}

.mobile {
  display: none;
}

/*ipad pro*/
@media (max-width: 1025px) {
  .map-image {
    width: 80%;
  }
  .map-section {
    padding: 30px 0 60px;
  }
  .map-legend ul {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .why-visit {
    padding: 60px 0 50px;
  }
  .why-visit-container {
    display: block;
  }
  .stat-content0 {
    text-align: center;
  }
  .stats-grid {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  .stat-item {
    width: calc(25% - 15px);
  }
  .categories {
    padding: 160px 0 80px;
  }
  .cat-header-badge {
    position: relative;
    margin-top: 0;
    top: auto;
    right: auto;
    width: 35vw;
    height: 45vw;
    margin-top: -90px;
  }
  .badge-number {
    top: 15%;
    left: 12%;
    font-size: 4.5rem;
  }
  .badge-text-group {
    top: 32%;
    left: 12%;
  }
  .badge-text-line {
    font-size: 1.9rem;
  }
  .badge-text-line.vi {
    font-size: 1.7rem;
  }
  .categories-grid {
    padding: 0px 0 30px;
  }
  .testimonials {
    display: block;
    padding-bottom: 2rem;
  }
  .testimonials-grid {
    display: block;
    padding: 0 5%;
  }
  .quote-card {
    margin-top: 10px;
    -o-background-size: 9% auto;
    background-size: 9% auto;
  }
  .quote-text p {
    font-size: 1.4rem;
  }
  .quote-author .t1 {
    font-size: 1.5rem;
  }
  .quote-author .t1 {
    font-size: 1.5rem;
  }
  .section-referral-register-btn {
    padding: 80px 0 120px;
  }
  .testimonials .title-text {
    font-size: 2.5rem;
    text-align: center;
    padding: 0 0 15px;
  }
}

/* 移动端适配 小于(768px) ，ipad及以下*/
@media (max-width: 768px) {
  .w90 {
    width: 100%;
    padding: 0 1rem;
  }
  .mobile {
    display: block;
  }
  .pc {
    display: none;
  }

  .site-header {
    position: fixed;
    top: 0;
  }

  .lang-dropdown-btn {
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: inherit;
  }

  .lang-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 54px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin-top: 5px;
  }
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: block;
  }

  .header-inner {
    max-width: 100%;
    padding: 0;
  }

  .header-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.1rem 1.1rem 1.1rem;
    background: #fff;
    gap: 1rem;
  }

  .header-mobile .logo img,
  .header-info-image img {
    height: 2.5rem;
    width: auto;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .header-black-bar {
    background: #000;
    color: #fff;
    min-height: 2.5rem;
    padding: 0.625rem 8%;
  }

  .black-bar-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin: 0 auto;
    position: relative;
  }

  .nav-link {
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
    font-family: 'Futura', sans-serif;
    white-space: nowrap;
  }

  .divider {
    color: #fff;
    opacity: 0.6;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 100;
  }

  .lang-btn {
    border: 0.09375rem solid #fff;
    padding: 0.125rem 0.5rem;
    font-weight: 500;
    margin-left: 0.3125rem;
    font-size: 0.8125rem;
    color: #fff;
    display: inline-block;
    line-height: 1;
  }

  .section-cta-wrap {
    display: block;
  }

  .btn-cta-pink span {
    font-size: unset;
  }
  .btn-cta-pink.ru span {
    font-size: 0.45rem;
  }
  .btn-cta-pink.vi span {
    font-size: 0.55rem;
  } 

  .categories .btn-cta-pink {
    display: none !important;
  }

  .summit-events-wrapper {
    background-image: none !important;
  }

  .mobile-visible {
    display: block !important;
  }

  .intro-grid {
    display: block;
  }

  .events .section-cta-wrap {
    margin-top: 30px;
  }

  .summit {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .summit .summit-text {
    font-size: clamp(1.5rem, 5vw, 2.4rem);
    line-height: 1.3;
    margin-bottom: 1.875rem;
    text-align: center;
    width: 100%;
    max-width: 37.5rem;
    margin-left: auto;
    margin-right: auto;
  }

  .summit-content {
    margin-top: 1.25rem;
    position: relative;
  }

  .summit-bg-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2vw;
  }

  .summit-img-item {
    width: 100% !important;
    aspect-ratio: 648 / 147;
    border-radius: 2vw;
    height: auto;
  }

  .summit-img-item:nth-child(1)::after,
  .summit-img-item:nth-child(2)::after,
  .summit-img-item:nth-child(3)::after,
  .summit-img-item:nth-child(4)::after {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(var(--bg-rgb), 1)),
      color-stop(35%, rgba(var(--bg-rgb), 1)),
      to(rgba(var(--bg-rgb), 0))
    ) !important;
    background: -webkit-linear-gradient(
      left,
      rgba(var(--bg-rgb), 1) 0%,
      rgba(var(--bg-rgb), 1) 35%,
      rgba(var(--bg-rgb), 0) 100%
    ) !important;
    background: -moz-linear-gradient(
      left,
      rgba(var(--bg-rgb), 1) 0%,
      rgba(var(--bg-rgb), 1) 35%,
      rgba(var(--bg-rgb), 0) 100%
    ) !important;
    background: -o-linear-gradient(
      left,
      rgba(var(--bg-rgb), 1) 0%,
      rgba(var(--bg-rgb), 1) 35%,
      rgba(var(--bg-rgb), 0) 100%
    ) !important;
    background: linear-gradient(
      90deg,
      rgba(var(--bg-rgb), 1) 0%,
      rgba(var(--bg-rgb), 1) 35%,
      rgba(var(--bg-rgb), 0) 100%
    ) !important;
  }

  .summit-img-item:nth-child(1) {
    --bg-rgb: 255, 146, 125;
  }

  .summit-img-item:nth-child(2) {
    --bg-rgb: 204, 131, 161;
  }

  .summit-img-item:nth-child(3) {
    --bg-rgb: 206, 164, 132;
  }

  .summit-img-item:nth-child(4) {
    --bg-rgb: 211, 128, 144;
  }

  .summit-cards-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2vw;
    pointer-events: none;
  }

  .s-card-new {
    width: 50%;
    height: -webkit-calc((100% - 6vw) / 4);
    height: -moz-calc((100% - 6vw) / 4);
    height: calc((100% - 6vw) / 4);
    padding-top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
  }

  .s-card-new h3 {
    font-size: clamp(1rem, 7vw, 4.5rem);
    margin-bottom: -0.5vw;
    text-align: center;
    line-height: 1;
  }

  .s-card-new p {
    font-size: clamp(1rem, 3vw, 3.5rem) !important;
    margin-top: 0;
    text-align: center;
    line-height: 1.1;
  }

  .event-title {
    font-size: 0.9rem;
    bottom: 1.5vw;
    left: 1.2vw;
    height: -webkit-calc(clamp(0.6rem, 2.2vw, 1.8rem) * 1.2 * 3);
    height: -moz-calc(clamp(0.6rem, 2.2vw, 1.8rem) * 1.2 * 3);
    height: calc(clamp(0.6rem, 2.2vw, 1.8rem) * 1.2 * 3);
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .event-title.ru {
    font-size: 0.7rem;
  }
  .event-title sup {
    font-size: 0.45rem;
  }

  .pizza-grid-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'title title'
      'text img';
    gap: 0.5rem 0;
    max-width: 100%;
  }

  .pizza-img {
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .pizza-img img {
    border-radius: 1.25rem 0 0 1.25rem;
    max-width: none;
    width: 100%;
  }
  .section-divider-text {
    margin: 0;
  }
  .pizza-title {
    text-align: center;
    padding-right: 1.25rem;
    font-size: 1.1rem;
  }
  .pizza-text p {
    font-size: 0.7rem;
  }
  .vip-card p {
    font-size: clamp(0.3rem, 2.2vw, 1.8rem);
    line-height: 1;
  }

  .vip-card {
    padding: 1.5vw;
    border-radius: 0;
  }

  .vip-header {
    margin-bottom: 10px;
  }

  .footer-wrap {
    padding-top: 30px;
    /* background-size: cover; */
    background-image: none;
    background: -webkit-linear-gradient(296deg, #ef8b85 16.63%, #ffd0ce 50.1%, #fff 70.59%);
    background: -moz-linear-gradient(296deg, #ef8b85 16.63%, #ffd0ce 50.1%, #fff 70.59%);
    background: -o-linear-gradient(296deg, #ef8b85 16.63%, #ffd0ce 50.1%, #fff 70.59%);
    background: linear-gradient(154deg, #ef8b85 16.63%, #ffd0ce 50.1%, #fff 70.59%);
    border-radius: 0 60px 0 0;
  }
  .testimonials {
    display: block;
    padding-bottom: 2rem;
  }
  .testimonials .title-text {
    font-size: 1.2rem;
    text-align: center;
    padding: 0 10%;
  }

  .testimonials .center-text {
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    margin-bottom: 1.875rem;
  }

  .testimonials-grid {
    display: block;
    padding: 0 5%;
  }

  .quote-card {
    margin-top: 10px;
    -o-background-size: 9% auto;
    background-size: 9% auto;
  }
  .quote-text p {
    font-size: 0.7rem;
  }

  .quote-card {
    padding: 8px;
    min-height: auto;
  }

  .quote-text {
    font-size: 10px;
    padding: 10px;
    line-height: 1.4;
    min-height: auto;
  }

  .quote-author {
    font-size: 10px;
    line-height: 1.2;
    padding: 0 0 0;
  }
  .quote-author .t1 {
    font-size: 0.75rem;
  }
  .quote-author .t2 {
    font-size: 0.7rem;
  }

  .quote-author span {
    font-size: 10px;
  }

  .quote-card::before,
  .quote-card::after {
    display: none;
  }

  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    padding-top: 0;
  }
  .lang-dropdown {
    position: relative;
    display: inline-block;
    margin-top: -4px;
  }
  .lang-dropdown-mobile .lang-dropdown-btn {
    padding: 0.125rem 0.5rem;
    font-size: 12px;
  }

  .lang-dropdown-btn {
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: inherit;
    border: 1px solid #fff;
  }

  .lang-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 44px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    margin-top: 5px;
  }

  .social-icons {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .categories {
    padding-top: 9.375rem;
    padding-bottom: 3.125rem;
  }

  .events .left-text {
    display: block;
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .black-label {
    font-size: clamp(1rem, 3.5vw, 2.2rem) !important;
    padding: 1vw 2.5vw;
    width: auto;
    white-space: nowrap;
  }

  .categories-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0.625rem;
    margin-bottom: 0px;
  }

  .cat-header-text {
    width: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.3125rem;
    margin-left: 0;
    padding: 0;
    margin-bottom: 0;
  }

  .cat-header-badge {
    position: relative;
    margin-top: 0;
    top: auto;
    right: auto;
    width: 35vw;
    height: 50vw;
  }

  .black-label {
    font-size: 0.75rem !important;
    padding: 0.2rem 0.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 0;
    padding: 0 0.625rem;
  }

  .cat-item img {
    /* width: 3rem;
        height: 3rem; */
  }
  .cat-item .icon {
    width: 18vw;
    height: 18vw;
  }

  .cat-item p {
    font-size: 13px;
    margin-top: 0.5rem;
  }
.cat-item p.ru {
  font-size: 10.5px;
}
  .new-tag {
    /* top: 0; */
    /* right: 15%; */
    width: 40%;
    height: 40%;
  }
.new-tag.ru {
  font-size: 0.5rem;
}
.new-tag.vi {
  font-size: 0.5rem;
}
.new-tag.id {
  font-size: 0.5rem;
}
.new-tag.zh {
  font-size: 0.5rem;
}
.new-tag.ko {
  font-size: 0.5rem;
}
.new-tag.th {
  font-size: 0.5rem;
}
.new-tag.en {
  font-size: 0.5rem;
}
  .summit-img-item img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    left: 15%;
    top: 0;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .event-card:nth-child(1) img {
    width: 80%;
    -o-object-fit: inherit;
    object-fit: inherit;
    left: 10%;
  }

  .section-padding {
    padding: 1rem 0;
    -o-background-size: inherit;
    background-size: inherit;
  }
  .section-cta-wrap {
    margin-top: 0;
  }

  .margin-top-60 {
    margin-top: 30px !important;
  }

  .vip-campaign .section-cta-wrap {
    margin: 20px 0;
  }
  .center-text {
    font-size: 2rem;
  }

  .text-blue {
    font-size: 1.6rem;
    white-space: normal;
    letter-spacing: -0.03125rem;
  }

  .btn-cta {
    font-size: 1rem !important;
    padding: 0.5rem 1rem;
    width: auto;
    white-space: normal;
    text-align: center;
    border-radius: 8px;
  }
  .btn-cta.ru {
    font-size: 0.5rem !important;
  }
  .btn-cta.vi {
    font-size: 0.75rem !important;
    width: 90%;
  }


  .hero .btn-cta {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    -o-transform: scale(0.75);
    transform: scale(0.75);
  }
  .hero .btn-cta.vi {
    font-size: 0.50rem !important;
  }

  .section-referral-register-btn {
    padding: 30px 15% 60px;
  }
  .btn-cta-pink {
  }

  .btn-cta-pink span {
    font-size: 0.75rem;
  }
  .btn-cta-pink.ru span {
    font-size: 0.45rem;
  }
  .btn-cta-pink.th span {
    font-size: 0.55rem;
  }
  .btn-cta-pink.vi span {
    font-size: 0.55rem;
  }

  .btn-cta-pink.id span {
    font-size: 0.45rem;
  }
  .section-referral-register-btn .btn-cta-pink.th {
    padding: 0.5rem 2rem;
  }
  
  .section-referral-register-btn .btn-cta-pink.vi {
    width: 90%;
    padding: 0.5rem 0.2rem;
  }
  .section-referral-register-btn .btn-cta-pink.ru {
    padding: 0.5rem 0.5rem;
  }
.section-referral-register-btn .btn-cta-pink.id {
    padding: 0.5rem 0.5rem;
  }


  .intro {
    padding-top: 1rem;
  }

  .section-title {
    margin-bottom: 1.875rem;
  }

  .intro-text p {
    margin-top: 10px;
    font-size: 0.9rem;
    text-align: left;
    padding: 0;
  }
  .intro-image {
    width: 88%;
    margin: 10px auto;
  }

  .map-header {
    margin-bottom: 30px;
  }
  .map-header .map-header-text {
    font-size: 1.3rem;
  }

  .map-container {
    gap: 10%;
    margin-top: 0px;
  }
  .map-image {
    width: 50%;
  }
  .map-container .map-image .img1 {
    width: 75%;
    margin: 0 auto;
  }

  .map-date,
  .map-venue {
    font-size: 0.7rem;
  }

  .map-legend li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.3rem;
  }

  .map-legend li img {
    width: 1.5rem;
    height: 1.5rem;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .map-legend ul {
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 0.3rem;
    -moz-column-gap: 0.3rem;
    column-gap: 0.3rem;
    row-gap: 1rem;
  }

  .map-legend ul span {
    font-size: 12px !important;
    line-height: 1.1;
    text-align: left;
    font-weight: normal;
  }
  .map-legend li .icon-new {
    width: 15%;
    left: 15%;
    top: -10px;
  }

  .why-visit-container {
    display: block;
  }

  .why-visit {
    padding-bottom: 2rem;
  }

  .why-visit .center-text {
    font-size: 1.2rem;
  }

  .why-visit-subtitle {
    padding-bottom: 1.875rem;
  }

  .why-visit-subtitle p {
    font-size: 0.8rem;
  }

  .stats-grid {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    overflow-x: auto;
  }
  .stat-item {
    width: calc(50% - 7.5px);
  }

  .stat-item img {
    height: 1.8rem;
    margin-bottom: 0.3rem;
  }

  .stat-num {
    font-size: 0.85rem;
    font-weight: 900;
    color: #000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1px;
    line-height: 1.1;
  }

  .stat-num small {
    font-size: 12px;
    font-weight: 700;
  }

  .stat-label {
    font-size: 10px;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    margin-top: 1px;
    width: 100%;
    display: block;
    font-weight: normal;
    white-space: normal;
  }

  .section-card1 {
    padding: 0 0 0;
  }
  .section-card1 .item-list {
    display: block;
  }
  .section-card1 .item-list .list {
    aspect-ratio: auto;
    margin-top: 10px;
  }
  .section-card1 .item-list .list::before {
    visibility: hidden;
  }
  .section-card1 .item-list .list .item-content {
    padding: 10px 10px 70px;
  }
  .section-card1 .item-list .list .i-title {
    font-size: 1.2rem;
  }
  .section-card1 .item-list .list .i-text {
    font-size: 1rem;
  }
  .section-card1 .item-list .list .i-icon {
    width: 12%;
  }

  .split-stat {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -moz-box-orient: horizontal !important;
    -moz-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 0;
  }

  .split-left,
  .split-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .split-divider {
    display: block !important;
    width: 1px !important;
    height: 0.5rem !important;
    background-color: #000;
    margin: 0 3px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
  }

  .badge-number {
    top: 15%;
    left: 15%;
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
    z-index: 3;
    font-family: 'Futura', sans-serif;
  }
  .badge-number.vi {
    font-size: 1.2rem;
  }
  .badge-text-group {
    position: absolute;
    top: 29%;
    left: 15%;
    z-index: 4;
    text-align: left;
  }
  .badge-text-line {
    font-family: 'Futura', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.33;
    margin: 0;
  }
  .badge-text-line.vi {
    font-size: 0.5rem;
  }
  .badge-text-line.id {
    font-size: 0.45rem;
  }
  .badge-text-line.ru {
    font-size: 0.5rem;
  }

  .summit {
    padding-top: 0 !important;
  }
  .summit-content {
    margin-top: 0 !important;
  }
  .summit .summit-text {
    font-size: 1.3rem;
  }

  .feature-pizza {
    padding-bottom: 2.5rem;
  }

  .vip-header div:first-child {
    font-size: 1.3rem;
  }

  .vip-header .sub-heading {
    font-size: 0.7rem;
    margin-top: 10px;
  }

  .vip-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.3125rem;
    margin-bottom: 10px;
  }

  .vip-divider {
    margin: 10px 0;
    padding: 10px 0;
  }

  .referral-scale-wrapper {
    padding: 0 12%;
  }

  .vip-divider p {
    font-size: 0.6rem;
  }

  .map-legend li img {
    margin-right: 0px;
  }

  .referral-title p {
    font-size: 4cqw;
  }
  .referral-title .vi {
    font-size: 3.7cqw;
  }

  .referral-area {
    margin: 15px auto 0;
  }

  .reward-text-wrap {
    gap: 0.3rem;
  }

  .reward-text-wrap span {
    font-size: 3.8cqw;
  }
  .reward-text-wrap .vi {
    font-size: 2.0cqw;
  }

  .campaign-header {
    font-size: 1.3rem;
    margin-bottom: 0;
    margin-top: 0px;
  }
  .campaign-header.ru {
    font-size: 1rem;
  }

  .footer-left .footer-title {
    font-size: 1.3rem;
  }

  .hero {
    width: 100%;
    height: auto;
    min-height: 296px;
    aspect-ratio: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 120px 0 20px;
  }

  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-background-size: cover;
    background-size: cover;
    background-position: center top;
    border-radius: 0 0 35px 35px;
    background-image: url('../images/mobile-bg.png');
  }

  /* 移动端文字样式 */
  .hero-text-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }

  .hero-title-main {
    /* font-size: 1.1rem; */
    margin-top: 20px;
  }

  .hero-subtitle {
    /* font-size: 2rem; */
    margin: 0 0 10px 0;
  }

  .hero-date {
    /* font-size: 1rem; */
    margin: 0 0 1px;
  }

  .hero-venue {
    /* font-size: 0.8rem; */
  }

  .hero .hero-btn {
    margin: 15px 0 10px;
  }

  .hero-content-icon-wrapper .row1 {
    margin-top: 15px;
    gap: 10px;
  }
  .hero-content-icon-wrapper .row1 .col1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
  }
  .hero-content-icon-wrapper .row1 .col1 .card {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    aspect-ratio: 1.2 / 1;
  }
  .hero-content-icon-wrapper .row0 .col2 {
    width: 100%;
    aspect-ratio: auto;
  }
  .hero-content-icon-wrapper .row2 {
    gap: 10px;
    margin-top: 10px;
  }

  .hero .btn-cta {
    position: relative;
    margin-top: 0;
  }
  .site-footer {
    padding: 0 0 20px;
  }
  .social-icons {
    gap: 10px;
  }
  .social-icons a:hover {
    -webkit-transform: translateY(-3px) scale(1.08);
    -moz-transform: translateY(-3px) scale(1.08);
    -ms-transform: translateY(-3px) scale(1.08);
    -o-transform: translateY(-3px) scale(1.08);
    transform: translateY(-3px) scale(1.08);
  }
  .social-icons img {
    width: 30px;
    height: 30px;
  }
  .footer-info h4,
  .footer-notice h4 {
    font-size: 0.7rem;
  }
  .footer-info p,
  .footer-notice p {
    font-size: 10px;
  }
}

/* 769px 及以上（桌面端） */
@media (min-width: 48.0625rem) {
  .mobile-menu-toggle {
    display: none;
  }
}
