/* 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;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    background-color: #f0f0f0;
    overflow-x: hidden;
    width: 100%;
}

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;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

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%;
}

.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 {
    background: #fff;
    padding: 0;
    position: relative;
    /* 去掉 sticky/fixed，改为相对定位 */
    z-index: 1000;
}

.header-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Desktop Header Styles */
.header-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-grow: 1;
    justify-content: space-between;
    margin-left: 40px;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
}

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

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

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

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

.btn-pink {
    background-color: #C98591;
    color: #fff;
}

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

/* Responsive Header */

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

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

.btn-header-new:hover {
    transform: translateY(-2px);
    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;
            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: flex;
    justify-content: space-between;
    gap: 20px;
    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%;
    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: 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: 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: 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: 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: 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: flex;
    justify-content: space-between;
    gap: 20px;
    pointer-events: none;
    z-index: 2;
}

.s-card-new {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    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;
}

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

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

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

.btn-pink {
    background-color: #C98591;
    color: #fff;
}

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

.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;
    /* 防止万一出现的溢出 */
    text-overflow: ellipsis;
    /* 如果还是放不下（极端情况），显示省略号而不是换行 */
    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;
    width: 100%;
    aspect-ratio: 1920 / 856;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-title-main {
    font-size: clamp(2.5rem, 7vw, 8rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.hero-title-divider {
    width: clamp(300px, 60vw, 900px);
    height: 3px;
    background: #fff;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #fff;
    text-transform:none;
    margin: 0 0 20px 0;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-date {
    font-size: clamp(1.5rem, 4.5vw, 5rem);
    font-weight: 100;
    text-transform: none;
    color: #fff;
    letter-spacing: 3px;
    margin: 0 0 15px 0;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-date strong {
    font-weight:600;
}

.hero-date sup {
    font-size: 0.5em;
    vertical-align: super;
    font-weight: 400;
}

.hero-venue {
    font-size: clamp(1rem, 2.2vw, 2.8rem);
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(to right, #ECE0FB, #FBEAE9);
    color: #000;
    padding: 12px 50px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.4rem;
    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;
}

.hero .btn-cta {
    position: relative;
    white-space: nowrap;
    margin-top: 3vw;
}

.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: #C7444F !important;
    padding: 0 20px !important;
    height: 50px;
    border-radius: 12px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: auto;
    max-width: 100%;
}

.btn-cta-pink span {
    background: linear-gradient(90deg, #ECDFFF 0%, #FFE9E9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    /* 根据 Figma 21.98px 高度估算 */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    font-size: 2rem;
}

.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;
    transform: translateY(-2px);
}

.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');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}

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

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

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.intro-image {
    width: 100%;
    /* Responsive width */
    height: auto;
    margin: 0 auto;
}

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

.intro-text p {
    font-size: 1.5rem;
    color: #444;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 25px;
}

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

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

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

.map-header .map-header-text {
    font-size: 3.5rem;
    margin-bottom: 5px;
    color: #000;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.map-date {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.map-venue {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 40px;
}

.map-image {
    flex: 0 1 auto;
    width: 100%;
    max-width: 725px;
}

.map-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.map-legend {
    flex: 0 1 auto;
}

.map-legend ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    row-gap: 20px;
}

.map-legend li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

.map-legend li img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    object-fit: contain;
    flex-shrink: 0;
}

/* 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: grid;
    /* 修改为 grid 布局以匹配 map-legend 逻辑 */
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
}

.stat-item {
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
}

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

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: #222;
    line-height: 1;
    margin-bottom: 5px;
    white-space: nowrap;
}

.stat-num small {
    font-size: 0.6em;
    font-weight: normal;
    margin-left: 2px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Special styling for the split stat (200,000 sqm | 17 Hall) */
.split-stat {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.split-left,
.split-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}


.cat-header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-left: 60px;
}

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

.cat-header-badge {
    position: relative;
    margin-top: -20px;
    z-index: 2;
    top: -140px;
    right: 280px;
    width: 320px;
    height: 340px;
    background-image: url('../images/cimg1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.badge-number {
    position: absolute;
    top: 41%;
    left: 28%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: 600;
    color: #FFF;
    line-height: 1;
    z-index: 3;
    font-family: 'Futura', sans-serif;
    letter-spacing: -5px;
}

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

.badge-text-line {
    font-family: 'Futura', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.33;
    margin: 0;
}

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

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

.cat-item {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cat-item:hover {
    transform: translateY(-8px);
}

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

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

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

.new-tag {
    position: absolute;
    top: 0;
    right: 15%;
    background: #E74C3C;
    color: #fff;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 14px 6px;
    border-radius: 50%;
    line-height: 1;
    border:3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Summit & Events & Feature Wrapper */
.summit-events-wrapper {
    background-image: url('../images/bg4.png');
    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: linear-gradient(to bottom, rgba(255, 160, 122, 0.9), rgba(255, 218, 185, 0.4));
    /* Orange -> Peach */
}

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

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

.gradient-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 */
.events {
    background: transparent;
    padding-top: 40px;
    padding-bottom: 40px;
}

.left-text {
    text-align: left;
    font-size: 3rem;
    color: #000;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.event-card {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
    max-width: 379px;
    aspect-ratio: 379 / 576;
    height: auto;
}

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

.event-card:hover img {
    transform: scale(1.1);
}

.event-title {
    position: absolute;
    bottom: 40px;
    left: 15px;
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: left;
    line-height: 1.2;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: calc(1.8rem * 1.2 * 2);
    /* 固定两行文字高度，文字顶对齐 */
}

/* 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;
    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: flex;
    justify-content: center;
    align-items: center;
}

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

/* VIP & Campaign Section */
.vip-campaign {
    background-image: url('../images/bg6.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 10px;
    padding-bottom: 30px;
}

.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;
    background-size: 100% 100%;
    position: relative;
    color: #fff;
    aspect-ratio: 379 / 420;
    display: flex;
    align-items: 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;
    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 {
    font-size: 3rem;
    color: #000;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* Scalable Referral Section */
.referral-scale-wrapper {
    width: 100%;
    container-type: inline-size;
    position: relative;
    display: flex;
    justify-content: center;
    padding:0 15%;
}

.referral-area {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 51.24%; /* 539/1052 */
    margin: 7.6% auto; /* 80/1052 approx */
    overflow: visible;
}

.referral-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ref-bg-v2,
.ref-bg-v3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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;
    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.08%;
    top: 15.77%;
    width: 71.29%;
}

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

.referral-line {
    width: 100%;
    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: flex;
    align-items: center;
    height: 5.13cqw;
    padding-left: 2.66%;
}

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

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

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

.reward-text-wrap span {
    font-size: 3.42cqw;
    font-weight: normal;
    color: #231815;
}

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

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

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

/* Testimonials Section */
.testimonials {
    background-image: url('../images/bg7.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 150px;
}

.testimonials .center-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 60px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-card {
    background-image: url('../images/bg8.png');
    background-size: cover;
    border-radius: 20px;
    padding: 40px;
    width: 45%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.quote-text {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: justify;
    padding: 1.5rem;
}

.quote-author {
    font-weight: 800;
    color: #000;
    font-size: 1.5rem;
    text-align: right;
}

.quote-author span {
    font-weight: normal;
    font-size: 0.9rem;
    display: block;
}

/* Footer */
.site-footer {
    background-image: url('../images/bg9.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    color: #fff;
    margin-top: 0;
}

.footer-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 150px;
    padding-top: 15px;
}

.footer-left {
    flex: 0 0 auto;
}

.footer-left .footer-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

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

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

.footer-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.footer-info p {
    font-size: 0.95rem;
    font-weight: normal;
    line-height: 1.4;
    opacity: 0.9;
}

.footer-notice h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.footer-notice p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 3px;
    opacity: 0.8;
}

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

.fade-up {
    transform: translateY(50px);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

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

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

/* 1600px 及以下 */
@media (max-width: 1600px) {
    .cat-header-badge {
        right: 6.25rem;
    }

    .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 {
        right: 3.125rem;
        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;
    }
}

@media screen and (min-width: 431px) and (max-width: 1024px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }

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

    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background: #fff;
    }

    .header-mobile .logo img {
        height: 40px;
    }

    .header-info-image {
        text-align: right;
    }

    .header-info-image img {
        height: 50px;
        width: auto;
        display: inline-block;
    }

    .header-black-bar {
        background: #000;
        color: #fff;
        min-height: 54px;
        display: flex;
        align-items: center;
        padding: 10px 15px;
    }

    .black-bar-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
        position: relative;
    }

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

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

    .lang-btn {
        border: 1.5px solid #fff;
        padding: 2px 8px;
        font-weight: 500;
        margin-left: 5px;
        font-size: 13px;
        color: #fff;
        display: inline-block;
        line-height: 1;
    }

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

    .btn-cta-pink span {
        font-size: unset;
    }

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

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

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

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .summit {
        padding-top: 40px;
        padding-bottom: 40px;
    }

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

    .summit-content {
        margin-top: 20px;
        position: relative;
        margin: 50px 10px 0;
    }

    .summit-bg-wrap {
        display: flex;
        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: 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: flex;
        flex-direction: column;
        gap: 2vw;
        pointer-events: none;
    }

    .s-card-new {
        width: 45%;
        height: calc((100% - 6vw) / 4);
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 0;
        transform: translateY(-3vw);
    }

    .s-card-new h3 {
        font-size: clamp(2.2rem, 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: clamp(0.6rem, 2.2vw, 1.8rem);
        bottom: 1.5vw;
        left: 1.2vw;
        height: calc(clamp(0.6rem, 2.2vw, 1.8rem) * 1.2 * 2);
        align-items: flex-start;
    }

    .pizza-grid-container {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "title title"
            "text img";
        gap: 30px 40px;
        max-width: 100%;
    }

    .pizza-img {
        width: 100%;
        justify-content: flex-end;
    }

    .pizza-img img {
        border-radius: 20px 0 0 20px;
        max-width: none;
        width: 100%;
    }

    .pizza-title {
        text-align: center;
        padding-right: 20px;
    }

    .vip-card p {
        font-size: clamp(0.6rem, 2.2vw, 1.8rem);
        line-height: 1.3;
    }

    .vip-card {
        padding: 1.5vw;
    }

    .testimonials {
        padding-top: 50px;
        padding-bottom: 50px;
    }

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

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .quote-card {
        width: 90%;
        max-width: 511px;
        padding: 20px 40px;
        background-image: url('../images/bg8.png');
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
        min-height: 280px;
        aspect-ratio: 511 / 170;
    }

    .quote-card-1 {
        align-self: flex-start;
        margin-left: 5%;
    }

    .quote-card-2 {
        align-self: flex-end;
        margin-right: 5%;
    }

    .quote-text {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .quote-author {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

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

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .categories {
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .left-text {
        text-align: center !important;
    }

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

    .cat-header-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-left: 0;
        padding: 0 5vw;
        margin-bottom: 40px;
    }

    .cat-header-badge {
        width: 30vw;
        height: auto;
        aspect-ratio: 1;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 15px;
        padding: 0 20px;
    }

    .cat-item img {
        width: 110px;
        height: 110px;
    }

    .cat-item p {
        font-size: 1rem;
        margin-top: 12px;
    }

    .new-tag {
        right: 5%;
        top: -5px;
    }

    .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;
    }

    .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;
    }
}


/* 移动端适配 (320px - 430px) */
@media (max-width: 430px) and (min-width: 320px) {
    .site-header {
        position: sticky;
        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: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2.4rem 1.25rem 1.1rem;
        background: #fff;
        gap: 1rem;
    }

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

    .header-black-bar {
        background: #000;
        color: #fff;
        min-height: 2.5rem;
        display: flex;
        align-items: center;
        padding: 0.625rem 0.9375rem;
    }

    .black-bar-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.625rem;
        width: 100%;
        max-width: 46.875rem;
        margin: 0 auto;
        position: relative;
    }

    .nav-link {
        color: #fff;
        font-size: 0.8125rem;
        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;
    }

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

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

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

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .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: flex;
        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: 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: flex;
        flex-direction: column;
        gap: 2vw;
        pointer-events: none;
    }

    .s-card-new {
        width: 50%;
        height: calc((100% - 6vw) / 4);
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: 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: 9px;
        bottom: 1.5vw;
        left: 1.2vw;
        height: calc(clamp(0.6rem, 2.2vw, 1.8rem) * 1.2 * 3);
        align-items: flex-start;
    }

    .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%;
        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;
        }

    .testimonials {
        padding-top: 3.125rem;
        padding-bottom: 3.125rem;
    }

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

    .testimonials-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .quote-card {
        width: 94%;
        max-width: none;
        padding: 1rem 1.5rem 1rem 2.5rem;
        background-image: url('../images/bg8.png');
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
        min-height: auto;
        aspect-ratio: auto;
    }

    .quote-card-1 {
        align-self: flex-start;
        margin-left: 0;
    }

    .quote-card-2 {
        align-self: flex-end;
        margin-right: 0;
    }

    .quote-text {
        font-size: 10px;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0;
        line-height: 1.4;
    }

    .quote-author {
        font-size: 10px;
        line-height: 1.2;
        padding-right: 1rem;
    }

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

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

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        text-align: center;
    }
    .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 {
        justify-content: center;
    }

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

    .left-text {
        text-align: center !important;
        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: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0.625rem;
        margin-bottom: 1.25rem;
    }

    .cat-header-text {
        width: auto;
        display: flex;
        flex-direction: column;
        gap: 0.3125rem;
        margin-left: 0;
        padding: 0;
        margin-bottom: 0;
    }

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

    .cat-header-badge {
        position: static;
        margin-top: 0;
        top: auto;
        right: auto;
        width: 6rem;
        height: 6.4rem;
    }

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

    .cat-item img {
        width: 3rem;
        height: 3rem;
    }

    .cat-item p {
        font-size: 12px;
        margin-top: 0.5rem;
        font-weight: 100;
    }

    .new-tag {
        position: absolute;
        top: 0;
        right: 15%;
        background: #E74C3C;
        color: #fff;
        font-size: 0.6rem;
        font-weight: bold;
        padding: 6px 2px;
        border-radius: 50%;
        font-size:5px;
        line-height: 1;
        border: 2px solid #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

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


    .section-padding {
        padding: 1rem 0;
        background-size: inherit;
    }
    .categories {
        padding-top:30px;
        background-size: contain;
        background-color: #EDEDEC;
        padding-bottom:30px;
        margin-bottom:40px;
    }
        .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;
        padding: 0.5rem 1rem;
        width: auto;
        white-space: normal;
        text-align: center;
        border-radius: 8px;
    }

    .hero .btn-cta {
        transform: scale(0.75);
    }

    .btn-cta-pink {
        height: auto;
        padding: 0.5rem 1rem !important;
        border-radius: 6px;
    }

    .btn-cta-pink span {
        font-size: 0.875rem;
    }

    .intro {
        padding-top: 1rem;
    }

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

    .intro-text p {
        margin-top:10px;
        font-size: 0.8rem;
        text-align: left;
    }

    .map-header .map-header-text {
        font-size: 1.3rem;
    }

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

    .map-legend li {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

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

    .map-legend ul {
        grid-template-columns: repeat(3, 1fr);
        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;
    }

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

    .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 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem 0.2rem;
    }

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

    .stat-num {
        font-size: 0.85rem;
        font-weight: 900;
        color: #000;
        display: flex;
        align-items: baseline;
        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: nowrap;
    }

    .split-stat {
        flex-direction: row !important;
        justify-content: center;
        align-items: baseline;
        gap: 0;
    }

    .split-left, .split-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .badge-number {
        position: absolute;
        top: 41%;
        left: 28%;
        transform: translate(-50%, -50%);
        font-size: 2rem;
        font-weight: 600;
        color: #FFF;
        line-height: 1;
        z-index: 3;
        font-family: 'Futura', sans-serif;
        letter-spacing: -5px;
    }
    .badge-text-group {
        position: absolute;
        top: 39%;
        left: 50%;
        transform: translateY(-50%);
        z-index: 4;
        text-align: left;
    }
    .badge-text-line {
        font-family: 'Futura', sans-serif;
        font-size: 0.6rem;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 1.33;
        margin: 0;
    }

    .cat-header-badge {
        max-width: 12.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;
    }
    

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

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

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

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

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

    .campaign-header {
        font-size: 1rem;
        margin-bottom:0;
    }

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

    .hero {
        width: 100%;
        height: auto;
        min-height: 296px;
        /* aspect-ratio: 1920 / 856; */
        display: flex;
        align-items: center;
        justify-content: center;

    }

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


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

    .hero-title-main {
        font-size: 2.2rem;
    }

    .hero-title-divider {
        width: 91%;
        height: 1px;
        margin: 2px 0 8px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin: 0 0 10px 0;
    }

    .hero-date {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
        margin: 10px 0 8px 0;
    }

    .hero-date sup {
        font-size: 0.5em;
    }

    .hero-venue {
        font-size: 0.75rem;
    }

    .hero .btn-cta {
        position: relative;
        margin-top:0;
    }
    .site-footer {
        padding: 0 0 20px;
    }
    .social-icons {
        gap:10px;
    }
    .social-icons a:hover {
        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;
    }
}