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

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 日文页面明朝体字体设置 */
html[lang="ja"] body {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', 'MS Mincho', 'Times New Roman', serif;
}

html[lang="ja"] * {
    font-family: inherit;
}

/* 保护Font Awesome图标字体不被日文字体覆盖 */
html[lang="ja"] .fa,
html[lang="ja"] .fas,
html[lang="ja"] .far,
html[lang="ja"] .fab,
html[lang="ja"] .fal,
html[lang="ja"] .fad,
html[lang="ja"] .fa-solid,
html[lang="ja"] .fa-regular,
html[lang="ja"] .fa-light,
html[lang="ja"] .fa-duotone,
html[lang="ja"] .fa-brands,
html[lang="ja"] [class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Pro", FontAwesome !important;
}

/* 导航栏样式 */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    white-space: nowrap;
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex: 2;
}

.nav-menu li {
    margin: 0 1rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #ffd700;
}

.nav-toggle {
    display: none;
    color: #fff;
    cursor: pointer;
    margin-left: 1rem;
}

/* 语言切换样式 */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
    flex: 1;
}

.lang-switch a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.3rem 0.5rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-switch a:hover {
    background-color: rgba(255,255,255,0.1);
}

.lang-switch a.active {
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0,0,0,0.2);
}

/* 语言切换汉堡菜单样式 */
.lang-hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.lang-hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 0.5rem;
    z-index: 1000;
}

.lang-menu.open {
    display: block;
}

.lang-menu-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.lang-menu-item:hover {
    background-color: #f8f9fa;
}

.flag-icon {
    border-radius: 2px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
        flex: none;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        flex: none;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: none;
    }

    .lang-switch {
        display: flex;
        flex: none;
        margin-left: auto;
    }

    .lang-switch a {
        font-size: 0.85rem;
        padding: 0.2rem 0.4rem;
    }

    .announcement-bar {
        display: none;
    }
}

/* 英雄区域样式 */
.hero {
    height: 100vh;
    /* background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/tsutenkaku-kart.jpg'); */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero-bg-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.hero > *:not(.hero-bg-img) {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
    width: 100%;
}

.hero-content h1 {
    font-size: 2.84rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
    text-shadow:
        2px 0 2px #ff3c00,
        -2px 0 2px #00eaff,
        0 2px 2px #fff,
        0 -2px 2px #fff,
        1.5px 1.5px 0 #222;
    overflow: visible;
    font-style: italic;
}
.hero-content h1::after {
    content: attr(data-text);
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    color: #fff;
    z-index: 2;
    pointer-events: none;
    opacity: 0.7;
    clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%);
    transform: translate(-2px, 2px);
    text-shadow: 2px 0 6px #00eaff, -2px 0 6px #ff3c00;
}

.hero-content p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2.5px 1.5px 8px rgba(0,0,0,0.13);
}

/* Hero按钮容器 */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c1121f;
}

.hero-whatsapp-btn,
.video-btn {
    font-size: 1.18rem !important;
    padding: 0.9em 2.2em !important;
    min-height: 64px;
    box-sizing: border-box;
    margin: 0 !important;
    display: inline-block;
}
@media (max-width: 600px) {
    .hero-whatsapp-btn,
    .video-btn {
        font-size: 0.95rem !important;
        padding: 0.6em 1.2em !important;
        min-height: 44px;
    }
    .hero-content h1 {
        font-size: 0.83rem;
    }
    .hero-content p {
        font-size: 0.94rem;
    }
}

/* 关于我们部分 */
.about {
    padding: 5rem 10%;
    background-color: #f8f9fa;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.features {
    list-style: none;
    margin-top: 2rem;
}

.features li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.features li:before {
    content: "✓";
    color: #e63946;
    position: absolute;
    left: 0;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-unique-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff6f4d 0%, #e63946 100%);
    color: #fff;
    font-weight: bold;
    font-size: 1.18rem;
    padding: 7px 22px;
    border-radius: 30px;
    margin-bottom: 18px;
    letter-spacing: 2px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.10);
}
.about-unique-slogan {
    font-size: 1.25rem;
    color: #ff3c00;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

/* 体验详情部分 */
.experience {
    padding: 5rem 10%;
}

.experience h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.experience-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.card h3 {
    color: #e63946;
    margin-bottom: 1rem;
}

.card ul {
    list-style: none;
    margin: 1rem 0;
}

.card li {
    margin-bottom: 0.5rem;
}

.book-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #e63946;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.book-button:hover {
    background-color: #c1121f;
}

/* 预订表单部分 */
.booking {
    padding: 5rem 10%;
    background-color: #f8f9fa;
}

.booking h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form input,
.booking-form select {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-button {
    padding: 1rem;
    background-color: #e63946;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #c1121f;
}

/* 联系方式部分 */
.contact {
    padding: 5rem 10%;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.info-item h3 {
    color: #e63946;
    margin-bottom: 1rem;
}

/* 页脚样式 */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* 公告栏样式 */
.announcement-bar {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    margin: 0;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.announcement-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

.announcement-item i {
    margin-right: 0.5rem;
    color: #e63946;
}

/* 重要提示样式 */
.important-notice {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.important-notice h3 {
    color: #333;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* 红绿灯容器 - F1赛车风格横向排列 */
.traffic-light {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 6px 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.4);
    border: 2px solid #333;
    gap: 8px;
}

/* 红绿灯单个灯 - F1风格 */
.traffic-light-bulb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
    border: 2px solid #444;
}

.traffic-light-bulb.red {
    background: #2a0000;
    border-color: #660000;
}

.traffic-light-bulb.yellow {
    background: #2a2a00;
    border-color: #666600;
}

.traffic-light-bulb.green {
    background: #002a00;
    border-color: #006600;
}

/* 激活状态 - F1风格强光效果 */
.traffic-light-bulb.red.active {
    background: #ff0000;
    box-shadow: 
        0 0 15px #ff0000, 
        0 0 30px rgba(255,0,0,0.6),
        inset 0 2px 4px rgba(255,255,255,0.3);
    border-color: #ff6666;
}

.traffic-light-bulb.yellow.active {
    background: #ffff00;
    box-shadow: 
        0 0 15px #ffff00, 
        0 0 30px rgba(255,255,0,0.6),
        inset 0 2px 4px rgba(255,255,255,0.3);
    border-color: #ffff66;
}

.traffic-light-bulb.green.active {
    background: #00ff00;
    box-shadow: 
        0 0 15px #00ff00, 
        0 0 30px rgba(0,255,0,0.6),
        inset 0 2px 4px rgba(255,255,255,0.3);
    border-color: #66ff66;
}



.important-notice ul {
    list-style: none;
    padding-left: 0;
    margin: 0 auto;
    display: inline-block;
    text-align: left;
}

.important-notice li {
    color: #333;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

/* 不同类型提示项的颜色 */
.important-notice li.green-item:before {
    content: "";
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00aa00;
    box-shadow: 0 0 8px rgba(0,170,0,0.7);
    animation: greenItemGlow 3s infinite;
}

.important-notice li.yellow-item:before {
    content: "";
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccaa00;
    box-shadow: 0 0 8px rgba(204,170,0,0.7);
    animation: yellowItemGlow 3s infinite;
}

.important-notice li.red-item:before {
    content: "";
    position: absolute;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cc0000;
    box-shadow: 0 0 8px rgba(204,0,0,0.7);
    animation: redItemGlow 3s infinite;
}

/* 绿色项目动画（允许类） */
@keyframes greenItemGlow {
    0%, 100% {
        background: #00aa00;
        box-shadow: 0 0 8px rgba(0,170,0,0.7);
        transform: scale(1);
    }
    50% {
        background: #00ff00;
        box-shadow: 0 0 12px rgba(0,255,0,0.9);
        transform: scale(1.1);
    }
}

/* 黄色项目动画（注意类） */
@keyframes yellowItemGlow {
    0%, 100% {
        background: #ccaa00;
        box-shadow: 0 0 8px rgba(204,170,0,0.7);
        transform: scale(1);
    }
    50% {
        background: #ffdd00;
        box-shadow: 0 0 12px rgba(255,221,0,0.9);
        transform: scale(1.1);
    }
}

/* 红色项目动画（禁止类） */
@keyframes redItemGlow {
    0%, 100% {
        background: #cc0000;
        box-shadow: 0 0 8px rgba(204,0,0,0.7);
        transform: scale(1);
    }
    50% {
        background: #ff0000;
        box-shadow: 0 0 12px rgba(255,0,0,0.9);
        transform: scale(1.1);
    }
}

/* F1起跑序列闪烁效果 */
.traffic-light-bulb.red.active.f1-flash,
.traffic-light-bulb.yellow.active.f1-flash,
.traffic-light-bulb.green.active.f1-flash {
    animation: f1StartSequence 0.3s ease-in-out infinite alternate;
}

@keyframes f1StartSequence {
    from {
        opacity: 0.3;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 整个重要提示框的呼吸效果 */
.important-notice {
    animation: f1NoticeBoxPulse 5s infinite;
}

@keyframes f1NoticeBoxPulse {
    0%, 90% {
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        border-color: #eee;
    }
    25% {
        box-shadow: 0 4px 16px rgba(0,255,0,0.1);
        border-color: rgba(0,255,0,0.2);
    }
    50% {
        box-shadow: 0 4px 16px rgba(255,221,0,0.1);
        border-color: rgba(255,221,0,0.2);
    }
    75% {
        box-shadow: 0 4px 16px rgba(255,0,0,0.1);
        border-color: rgba(255,0,0,0.2);
    }
    87.5% {
        box-shadow: 0 6px 20px rgba(255,255,255,0.2);
        border-color: rgba(255,255,255,0.3);
    }
}

/* 价格说明样式 */
.price-notice {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.price-notice p {
    margin: 0.5rem 0;
}

.price {
    color: #ff6f4d;
    background: #fff7f5;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    padding: 0.3em 1.2em;
    margin: 0 auto 10px auto;
    display: inline-block;
    box-shadow: 0 1px 4px rgba(231,76,60,0.08);
    text-align: center;
}

/* 预订须知样式 */
.booking-notice {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.booking-notice h3 {
    color: #333;
    margin-bottom: 1rem;
}

.booking-notice ul {
    list-style: none;
    padding-left: 1rem;
}

.booking-notice li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.booking-notice li:before {
    content: "•";
    color: #e63946;
    position: absolute;
    left: 0;
}

/* 紧急联系方式样式 */
.emergency-contact {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.emergency-contact h3 {
    color: #721c24;
    margin-bottom: 1rem;
}

.emergency-contact p {
    color: #721c24;
    margin: 0.5rem 0;
}

/* 免责声明样式 */
.disclaimer {
    max-width: 800px;
    margin: 1rem auto;
    padding: 1rem;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #ddd;
}

/* FAQ部分样式 */
.faq {
    padding: 5rem 10%;
    background-color: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #e63946;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* 图片展示区样式 */
.gallery {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5em;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.gallery-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
}

.gallery-content .whatsapp-btn {
    margin-top: auto;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.gallery-caption h3 {
    margin: 0 0 5px 0;
    font-size: 1.4em;
}

.gallery-caption p {
    margin: 0;
    font-size: 1em;
    opacity: 0.9;
}

.gallery-content h3 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #222;
    margin: 16px 0 12px 0;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
}
.gallery-content h3::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #ff6f4d 0%, #e63946 100%);
    border-radius: 2px;
    margin: 10px auto 0 auto;
}

/* 响应式调整 */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }
    nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    nav ul li {
        flex: 1 1 33%;
        text-align: center;
        margin: 0.2em 0;
    }
    nav ul li a {
        display: inline-block;
        padding: 0.7em 0.5em;
        font-size: 1.1em;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .experience-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
    }

    .announcement-content {
        flex-direction: column;
    }

    .announcement-item {
        margin: 0.5rem 0;
    }

    .important-notice,
    .booking-notice,
    .emergency-contact {
        margin: 1rem;
    }

    .faq {
        padding: 3rem 1rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .gallery {
        padding: 3rem 1rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .gallery-item {
        min-height: unset;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background: #fff !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        border-radius: 12px;
        overflow: hidden;
    }
    .gallery-item img {
        width: 100%;
        height: auto;
        max-height: 220px;
        object-fit: contain;
        border-radius: 12px 12px 0 0;
        display: block;
        background: #fff;
    }
    .gallery-caption {
        position: static;
        background: #fff;
        color: #222;
        box-shadow: none;
        border-radius: 0 0 12px 12px;
        padding: 18px 14px 14px 14px;
        /* min-height: 120px; */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow: visible;
        height: auto;
    }
    .gallery-caption h3, .gallery-caption .caption-title {
        font-size: 1.1em;
        color: #e63946;
        margin-top: 16px;
        margin-bottom: 4px;
        word-break: break-all;
    }
    .gallery-caption ul, .gallery-caption p, .gallery-caption .price {
        font-size: 0.98em;
        color: #333;
        margin-bottom: 4px;
        word-break: break-all;
        overflow: visible;
    }
    .order-btn {
        width: 100%;
        font-size: 1.1em;
        padding: 0.9em 0;
        margin-top: 10px;
        margin-bottom: 0;
        background: #e63946;
        color: #fff;
        border-radius: 6px;
    }
}

.order-btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    background-color: #e63946;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 1.2em;
    font-weight: 500;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
    box-shadow: 0 2px 8px rgba(230,57,70,0.08);
}
.order-btn:hover {
    background-color: #c1121f;
    transform: translateY(-2px) scale(1.05);
}

/* 热门亮点推荐区块优化样式 */
.highlights {
    padding: 4rem 10%;
    background: #fff5f5;
}
.highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.highlights-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.highlights-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}
.highlight-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(230,57,70,0.10);
    overflow: hidden;
    max-width: 370px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1.5rem;
}
.highlight-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(230,57,70,0.18);
}
.highlight-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}
.highlight-caption {
    padding: 1.5rem 1.2rem 2rem 1.2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.highlight-caption h3 {
    color: #e63946;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}
.highlight-caption p {
    color: #333;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}
.highlight-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e63946;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    color: #e63946;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
    cursor: pointer;
    opacity: 0.8;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.highlight-arrow:hover {
    opacity: 1;
    background: #e63946;
    color: white;
    transform: translateY(-50%) scale(1.1);
}
.highlight-arrow.left-arrow {
    left: -25px;
}
.highlight-arrow.right-arrow {
    right: -25px;
}
.highlight-slider-btns {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}
.slider-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-btn.active {
    background: #e63946;
    transform: scale(1.2);
}
@media (max-width: 900px) {
    nav {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .logo {
        margin-bottom: 0.5rem;
    }
    .nav-menu {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .nav-menu li {
        margin: 0.1em 0;
    }
    .nav-toggle {
        top: 10px;
    }
    .announcement-bar {
        padding: 0.15rem 0;
    }
    .announcement-content {
        margin-top: 0.2rem;
        margin-bottom: 0.2rem;
    }
    .highlights-slider-wrapper {
        flex-direction: column;
        position: relative;
    }
    .highlights-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
    }
    .highlight-item {
        width: calc(100vw - 32px);
        max-width: 420px;
        height: 360px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(230,57,70,0.08);
        overflow: hidden;
        display: none;
        position: relative;
        flex-direction: column;
    }
    .highlight-item.active {
        display: flex;
    }
    .highlight-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
        border-radius: 16px 16px 0 0;
        display: block;
        background: #fff;
    }
    .highlight-caption {
        flex: 1;
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        min-height: 160px;
    }
    .highlight-caption h3 {
        font-size: 1.1rem;
        margin: 0 0 12px 0;
        font-weight: 600;
        color: #333;
        line-height: 1.3;
        text-align: center;
    }
    .highlight-caption p {
        font-size: 0.9rem;
        margin: 0;
        color: #666;
        line-height: 1.4;
        text-align: justify;
    }
    .highlight-arrow {
        display: flex;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(230, 57, 70, 0.2);
        border-radius: 8px;
        color: #e63946;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        opacity: 0.9;
        transition: all 0.2s ease;
        position: absolute;
        bottom: 80px;
        transform: translateY(0);
        z-index: 10;
    }
    .highlight-arrow:hover {
        opacity: 1;
        background: #e63946;
        color: white;
        box-shadow: 0 4px 12px rgba(230,57,70,0.2);
        transform: translateY(-2px) scale(1.05);
    }
    .highlight-arrow.left-arrow {
        left: 8px;
    }
    .highlight-arrow.right-arrow {
        right: 8px;
    }
    .highlight-slider-btns {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1.5rem;
    }
}

.lang-divider {
    color: #888;
    margin: 0 0.2em;
    font-weight: normal;
    user-select: none;
}

.lang-menu-section {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}
.lang-menu-section:last-child {
    border-bottom: none;
}
.lang-menu-title {
    font-size: 1rem;
    font-weight: bold;
    color: #e63946;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}
.notice-section {
    background: #f8f9fa;
    border-radius: 5px;
    margin-top: 0.5rem;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}
.notice-item {
    font-size: 0.92rem;
    color: #555;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.4em;
}
.notice-item i {
    color: #e63946;
    font-size: 1.1em;
}
@media (max-width: 768px) {
    .lang-menu {
        min-width: 220px;
    }
}

.whatsapp-btn {
    background: linear-gradient(90deg, #ff6f4d 0%, #e63946 100%) !important;
    color: #fff !important;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 0.9em 2.2em;
    font-size: 1.18rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* Hero区域的WhatsApp按钮特殊样式 */
.hero-content .whatsapp-btn {
    margin: 0;
}

/* 非Hero区域的WhatsApp按钮保持原有margin */
.whatsapp-btn:not(.hero-whatsapp-btn) {
    margin-top: 1.2rem;
}

/* WhatsApp按钮整体光效 */
.whatsapp-btn {
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.08),
        0 0 8px rgba(255,255,255,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2) !important;
    animation: whatsappGlow 2s ease-in-out infinite;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    border-radius: 8px;
    pointer-events: none;
    animation: whatsappShimmer 2.5s ease-in-out infinite;
    z-index: 2;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 75px;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(0,0,0,0.25) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0,0,0,0.25) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.25) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.25) 75%);
    background-size: 12px 12px;
    background-position: 0 0, 0 6px, 6px -6px, -6px 0px;
    border-radius: 0 8px 8px 0;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
    animation: checkeredWave 3s linear infinite;
    mask: linear-gradient(135deg, transparent 20%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.8) 60%, black 80%);
    -webkit-mask: linear-gradient(135deg, transparent 20%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.8) 60%, black 80%);
    transform-origin: bottom right;
}

/* 光线扫描效果（新增伪元素） */
.whatsapp-btn {
    overflow: hidden;
    position: relative;
}

.whatsapp-btn:not(:hover):not(:focus)::before {
    background: 
        linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: 
        whatsappSweep 3s linear infinite,
        whatsappShimmer 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover::before {
    animation-duration: 0.8s;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
}

.whatsapp-btn:hover::after {
    opacity: 1;
    animation-duration: 2s;
    background-image: 
        linear-gradient(45deg, rgba(0,0,0,0.35) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0,0,0,0.35) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.35) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.35) 75%);
    transform: skewX(-15deg) translateX(3px);
    mask: linear-gradient(135deg, transparent 15%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.9) 55%, black 75%);
    -webkit-mask: linear-gradient(135deg, transparent 15%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.9) 55%, black 75%);
}

.whatsapp-btn:hover {
    box-shadow: 
        0 4px 16px rgba(230,57,70,0.13),
        0 0 20px rgba(255,255,255,0.6),
        inset 0 1px 0 rgba(255,255,255,0.3);
    animation: whatsappGlowHover 1s ease-in-out infinite;
}

/* WhatsApp按钮光效动画 */
@keyframes whatsappGlow {
    0%, 100% {
        box-shadow: 
            0 2px 8px rgba(0,0,0,0.08),
            0 0 8px rgba(255,255,255,0.3),
            inset 0 1px 0 rgba(255,255,255,0.2);
    }
    50% {
        box-shadow: 
            0 2px 8px rgba(0,0,0,0.08),
            0 0 15px rgba(255,255,255,0.5),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }
}

@keyframes whatsappGlowHover {
    0%, 100% {
        box-shadow: 
            0 4px 16px rgba(230,57,70,0.13),
            0 0 15px rgba(255,255,255,0.5),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }
    50% {
        box-shadow: 
            0 4px 16px rgba(230,57,70,0.13),
            0 0 25px rgba(255,255,255,0.8),
            inset 0 1px 0 rgba(255,255,255,0.4);
    }
}

@keyframes whatsappSweep {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes whatsappShimmer {
    0% {
        transform: translateX(-100%) skewX(-15deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) skewX(-15deg);
        opacity: 0;
    }
}

/* 格纹波动动画 */
@keyframes checkeredWave {
    0% {
        background-position: 0 0, 0 6px, 6px -6px, -6px 0px;
        opacity: 0.9;
        transform: skewX(-10deg) translateX(0);
    }
    25% {
        background-position: 3px 3px, 3px 9px, 9px -3px, -3px 3px;
        opacity: 0.95;
        transform: skewX(-10deg) translateX(2px);
    }
    50% {
        background-position: 6px 6px, 6px 12px, 12px 0px, 0px 6px;
        opacity: 1;
        transform: skewX(-10deg) translateX(4px);
    }
    75% {
        background-position: 3px 3px, 3px 9px, 9px -3px, -3px 3px;
        opacity: 0.95;
        transform: skewX(-10deg) translateX(2px);
    }
    100% {
        background-position: 0 0, 0 6px, 6px -6px, -6px 0px;
        opacity: 0.9;
        transform: skewX(-10deg) translateX(0);
    }
}
.whatsapp-btn:hover, .whatsapp-btn:focus {
    background: linear-gradient(90deg, #e63946 0%, #c1121f 100%) !important;
    color: #fff !important;
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

.card-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.video-btn {
    background: rgba(34,34,34,0.85);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 0.9em 2.2em;
    font-size: 1.18rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
}

/* Hero区域的video-btn特殊样式 */
.hero-content .video-btn {
    margin: 0;
}
.video-btn:hover, .video-btn:focus {
    background: #111;
    color: #fff;
    box-shadow: 0 4px 16px rgba(34,34,34,0.18);
}

/* 视频模态框 - 优化版 */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease-out;
}

/* 当模态框显示时，使用flex布局居中 */
.video-modal[style*="flex"],
.video-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

.video-modal-content {
    background: #000;
    border-radius: 16px;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: modalContentIn 0.3s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes modalContentIn {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* 确保动画在所有设备上都正确 */
@media (min-width: 769px) {
    @keyframes modalContentIn {
        from {
            transform: translate(-50%, -50%) scale(0.9);
            opacity: 0;
        }
        to {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    @keyframes modalContentIn {
        from {
            transform: translate(-50%, -50%) scale(0.9);
            opacity: 0;
        }
        to {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
    }
}

@media (max-width: 480px) {
    @keyframes modalContentIn {
        from {
            transform: translate(-50%, -50%) scale(0.9);
            opacity: 0;
        }
        to {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }
    }
}

.video-modal-content video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal-close:hover {
    background: rgba(230, 57, 70, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* 桌面端样式 */
@media (min-width: 769px) {
    .video-modal-content {
        width: 800px;
        max-width: 90vw;
        aspect-ratio: 16/9;
        /* 确保在大屏幕上居中显示 */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
    }
    
    .video-modal-content video {
        width: 800px;
        height: 450px;
        max-width: 90vw;
        max-height: 50vh;
    }
}

/* 平板端样式 */
@media (max-width: 768px) and (min-width: 481px) {
    .video-modal-content {
        width: 90vw;
        max-width: 600px;
        aspect-ratio: 16/9;
        /* 确保在平板上居中显示 */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
    }
    
    .video-modal-content video {
        width: 100%;
        height: auto;
        max-height: 40vh;
    }
    
    .video-modal-close {
        top: -8px;
        left: -8px;
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

/* 移动端样式 - 全屏模式 */
@media (max-width: 480px) {
    .video-modal {
        /* 移动端背景更暗，突出视频 */
        background: rgba(0, 0, 0, 0.95);
    }
    
    /* 移动端全屏提示 */
    .video-modal-content::after {
        content: "双击视频进入全屏";
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        z-index: 10002;
        opacity: 0.8;
        animation: fadeInOut 4s ease-in-out;
        pointer-events: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0; }
        20%, 80% { opacity: 0.8; }
    }
    
    .video-modal-content {
        /* 移动端全屏显示 */
        width: 100vw;
        height: 100vh;
        max-width: none;
        border-radius: 0;
        /* 填满整个屏幕 */
        top: 0;
        left: 0;
        transform: none;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
    }
    
    .video-modal-content video {
        width: 100vw;
        height: auto;
        max-height: 100vh;
        min-height: 50vh;
        border-radius: 0;
        /* 确保视频居中 */
        object-fit: contain;
    }
    
    .video-modal-close {
        /* 关闭按钮放在左上角，避开YouTube控制区域 */
        position: fixed;
        top: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        font-size: 1.2rem;
        color: #fff;
        z-index: 10001;
        /* 增强可点击性 */
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        /* 添加触摸友好的样式 */
        touch-action: manipulation;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .video-modal-close:hover,
    .video-modal-close:active {
        background: rgba(230, 57, 70, 0.9);
        border-color: rgba(255, 255, 255, 1);
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
    }
    
    /* 移动端全屏动画优化 */
    @keyframes modalContentIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
}

/* 中等移动设备全屏优化 */
@media (max-width: 600px) and (min-width: 481px) {
    .video-modal {
        background: rgba(0, 0, 0, 0.92);
    }
    
    .video-modal-content {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
    }
    
    .video-modal-content video {
        width: 100vw;
        height: auto;
        max-height: 100vh;
        min-height: 60vh;
        object-fit: contain;
        border-radius: 0;
    }
    
    .video-modal-close {
        position: fixed;
        top: 25px;
        left: 25px;
        width: 42px;
        height: 42px;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.8);
        font-size: 1.15rem;
        z-index: 10001;
        touch-action: manipulation;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
}

/* 视频按钮样式保持 */
.video-btn {
    font-size: 0.95rem;
    padding: 0.6em 1.2em;
}

@media (max-width: 600px) {
    .video-btn {
        font-size: 0.9rem;
        padding: 0.55em 1.1em;
    }
}

/* Highlight部分的图片优化 */
.highlight-item img {
    -webkit-object-fit: cover;
    -moz-object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

/* 图片加载失败时的备用样式 */
.highlight-item img:not([src]),
.highlight-item img[src=""],
.highlight-item img[src*="404"] {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
}

.highlight-item img:not([src])::before,
.highlight-item img[src=""]::before,
.highlight-item img[src*="404"]::before {
    content: "图片加载中...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 0.9rem;
}

/* 提高图片加载性能 */
.highlight-item img {
    will-change: opacity, transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* 预约流程栏样式 */
.booking-flow {
    margin: 2rem auto;
    max-width: 600px;
    padding: 1.5rem 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    position: relative;
    z-index: 10;
}
.booking-flow h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
    letter-spacing: 0;
}
.booking-flow-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    max-width: 500px;
}
.booking-flow-steps li {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}
.flow-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
    color: #888;
}
.flow-text {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    letter-spacing: 0;
}
@media (max-width: 600px) {
    .booking-flow {
        padding: 1rem 0.5rem;
        margin: 1rem 0;
    }
    .booking-flow-steps {
        flex-direction: column;
        align-items: center;
    }
    .booking-flow-steps li {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 1.2em;
    }
    .flow-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 10px;
    }
    .flow-text {
        font-size: 0.98rem;
    }
}

@media (max-width: 600px) {
  .gallery-content p {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 600px) {
  .highlights-container {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
    position: relative;
    min-height: 380px;
    justify-content: center;
    align-items: center;
  }
  
  .highlight-item {
    width: calc(100vw - 32px);
    max-width: 420px;
    height: 360px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(230,57,70,0.08);
    box-sizing: border-box;
  }
  
  .highlight-item.active {
    display: flex;
  }
  .highlight-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px 16px 0 0;
  }
  .highlight-caption {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .highlight-caption h3 {
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    text-align: center;
  }
  .highlight-caption p {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
    line-height: 1.4;
    text-align: justify;
  }
  .highlight-slider-btns {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.2rem;
  }
  .slider-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .slider-btn.active {
    background: #e63946;
    transform: scale(1.1);
  }
}

@media (max-width: 600px) {
    .whatsapp-btn {
        font-size: 1rem;
        padding: 0.7em 1.2em;
        white-space: nowrap;
    }
    
    /* 移动端优化光效 */
    .whatsapp-btn {
        animation: whatsappGlowMobile 2.5s ease-in-out infinite;
    }
    
    .whatsapp-btn:hover {
        animation: whatsappGlowHoverMobile 1.2s ease-in-out infinite;
    }
    
    /* 移动端格纹优化 */
    .whatsapp-btn::after {
        width: 55px;
        background-size: 10px 10px;
        background-position: 0 0, 0 5px, 5px -5px, -5px 0px;
        background-image: 
            linear-gradient(45deg, rgba(0,0,0,0.3) 25%, transparent 25%),
            linear-gradient(-45deg, rgba(0,0,0,0.3) 25%, transparent 25%),
            linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.3) 75%),
            linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.3) 75%);
        opacity: 0.8;
        animation: checkeredWaveMobile 3.5s linear infinite;
        transform-origin: bottom right;
        mask: linear-gradient(135deg, transparent 25%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.8) 65%, black 85%);
        -webkit-mask: linear-gradient(135deg, transparent 25%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.8) 65%, black 85%);
    }
    
    .whatsapp-btn:hover::after {
        opacity: 1;
        animation-duration: 2.5s;
        background-image: 
            linear-gradient(45deg, rgba(0,0,0,0.4) 25%, transparent 25%),
            linear-gradient(-45deg, rgba(0,0,0,0.4) 25%, transparent 25%),
            linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.4) 75%),
            linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.4) 75%);
        transform: skewX(-12deg) translateX(2px);
        mask: linear-gradient(135deg, transparent 20%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.9) 60%, black 80%);
        -webkit-mask: linear-gradient(135deg, transparent 20%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.9) 60%, black 80%);
    }
}

/* 移动端光效动画 */
@keyframes whatsappGlowMobile {
    0%, 100% {
        box-shadow: 
            0 2px 8px rgba(0,0,0,0.08),
            0 0 6px rgba(255,255,255,0.4),
            inset 0 1px 0 rgba(255,255,255,0.25);
    }
    50% {
        box-shadow: 
            0 2px 8px rgba(0,0,0,0.08),
            0 0 12px rgba(255,255,255,0.6),
            inset 0 1px 0 rgba(255,255,255,0.35);
    }
}

/* 移动端格纹动画 */
@keyframes checkeredWaveMobile {
    0% {
        background-position: 0 0, 0 5px, 5px -5px, -5px 0px;
        opacity: 0.8;
        transform: skewX(-8deg) translateX(0);
    }
    33% {
        background-position: 2px 2px, 2px 7px, 7px -3px, -3px 2px;
        opacity: 0.9;
        transform: skewX(-8deg) translateX(1px);
    }
    66% {
        background-position: 5px 5px, 5px 10px, 10px 0px, 0px 5px;
        opacity: 1;
        transform: skewX(-8deg) translateX(2px);
    }
    100% {
        background-position: 0 0, 0 5px, 5px -5px, -5px 0px;
        opacity: 0.8;
        transform: skewX(-8deg) translateX(0);
    }
}

@keyframes whatsappGlowHoverMobile {
    0%, 100% {
        box-shadow: 
            0 4px 16px rgba(230,57,70,0.13),
            0 0 10px rgba(255,255,255,0.5),
            inset 0 1px 0 rgba(255,255,255,0.3);
    }
    50% {
        box-shadow: 
            0 4px 16px rgba(230,57,70,0.13),
            0 0 18px rgba(255,255,255,0.7),
            inset 0 1px 0 rgba(255,255,255,0.4);
    }
}

@media (max-width: 600px) {
  html[lang="zh"] .about h2 {
    font-size: 2.1rem;
    line-height: 1.28;
    max-width: 95vw;
    margin: 0 auto;
    word-break: break-all;
    white-space: normal;
    margin-bottom: 2.2rem;
  }
}

.hero nav {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
}

@media (max-width: 900px) {
  .hero nav {
    top: 0;
  }
  .announcement-bar {
    top: 56px; /* 移动端nav高度可能更小 */
  }
}

/* Language Selector Page Styles */
.language-selector-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    background: url('images/8.webp') no-repeat center center fixed;
    background-size: cover;
}

.language-selector-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.3)
    );
    z-index: 1;
    opacity: 1;
}

.language-container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(10px);
    animation: elegantAppear 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.5s;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

@keyframes maskFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes elegantAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(10px);
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

.language-header {
    margin-bottom: 3rem;
    position: relative;
}

.language-header h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 
        0 0 10px rgba(255,0,0,0.5),
        0 0 20px rgba(255,0,0,0.3),
        0 0 30px rgba(255,0,0,0.2);
    position: relative;
    animation: titleGlow 2s ease-in-out infinite;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    transform: perspective(500px) rotateX(5deg);
}

.language-header h1::before {
    content: 'SELECT YOUR LANGUAGE';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,0,0,0.5);
    animation: titleStroke 2s ease-in-out infinite;
    transform: perspective(500px) rotateX(5deg);
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255,0,0,0.5),
            0 0 20px rgba(255,0,0,0.3),
            0 0 30px rgba(255,0,0,0.2);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255,0,0,0.7),
            0 0 30px rgba(255,0,0,0.5),
            0 0 40px rgba(255,0,0,0.3);
    }
}

@keyframes titleStroke {
    0%, 100% {
        -webkit-text-stroke: 1px rgba(255,0,0,0.5);
        transform: translateX(0);
    }
    50% {
        -webkit-text-stroke: 1px rgba(255,0,0,0.8);
        transform: translateX(2px);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .language-selector-page {
        background: url('images/bg.webp') no-repeat center center fixed;
        background-size: cover;
    }
    
    .language-header h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .lang-btn, .location-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        max-width: 250px;
    }
    
    .location-info {
        font-size: 0.8rem;
    }
    
    .location-info p {
        line-height: 1.4;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .language-selector-page {
        background: url('images/bg.webp') no-repeat center center fixed;
        background-size: cover;
    }
    
    .language-header h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .language-container {
        padding: 1rem;
    }
    
    .lang-btn, .location-btn {
        max-width: 200px;
    }
    
    .location-info {
        font-size: 0.75rem;
        padding: 0.8rem;
    }
    
    .location-info p {
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* 视频背景样式 */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Language Selector Page Styles */
.language-selector-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
}

/* 移除之前的格子旗背景 */
.language-selector-page::before {
    display: none;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.85), rgba(0,0,0,0.65));
    z-index: 2;
}

.language-container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.language-header {
    margin-bottom: 3rem;
    position: relative;
}

.language-header h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 
        0 0 10px rgba(255,0,0,0.5),
        0 0 20px rgba(255,0,0,0.3),
        0 0 30px rgba(255,0,0,0.2);
    position: relative;
    animation: titleGlow 2s ease-in-out infinite;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    transform: perspective(500px) rotateX(5deg);
}

.language-header h1::before {
    content: 'SELECT YOUR LANGUAGE';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,0,0,0.5);
    animation: titleStroke 2s ease-in-out infinite;
    transform: perspective(500px) rotateX(5deg);
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255,0,0,0.5),
            0 0 20px rgba(255,0,0,0.3),
            0 0 30px rgba(255,0,0,0.2);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255,0,0,0.7),
            0 0 30px rgba(255,0,0,0.5),
            0 0 40px rgba(255,0,0,0.3);
    }
}

@keyframes titleStroke {
    0%, 100% {
        -webkit-text-stroke: 1px rgba(255,0,0,0.5);
        transform: translateX(0);
    }
    50% {
        -webkit-text-stroke: 1px rgba(255,0,0,0.8);
        transform: translateX(2px);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .language-header h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .language-header h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
}

/* Language Selector Page Styles */
.language-selector-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
}

/* 移除之前的格子旗背景 */
.language-selector-page::before {
    display: none;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.85), rgba(0,0,0,0.65));
    z-index: 2;
}

.language-container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 90%;
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.language-header {
    margin-bottom: 3rem;
    position: relative;
}

.language-header h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 
        0 0 10px rgba(255,0,0,0.5),
        0 0 20px rgba(255,0,0,0.3),
        0 0 30px rgba(255,0,0,0.2);
    position: relative;
    animation: titleGlow 2s ease-in-out infinite;
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    transform: perspective(500px) rotateX(5deg);
}

.language-header h1::before {
    content: 'SELECT YOUR LANGUAGE';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,0,0,0.5);
    animation: titleStroke 2s ease-in-out infinite;
    transform: perspective(500px) rotateX(5deg);
}

/* 语言按钮容器 */
.language-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* 按钮基础样式 */
.lang-btn, .location-btn {
    position: relative;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255,0,0,0.3);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* 按钮动态光线效果 */
.lang-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
    animation: speedLine 2s linear infinite;
}

/* 不同语言按钮的动画速度 */
.lang-btn[data-lang="cn"]::after {
    animation-duration: 1.5s;
}

.lang-btn[data-lang="en"]::after {
    animation-duration: 2s;
}

.lang-btn[data-lang="jp"]::after {
    animation-duration: 2.5s;
}

/* 按钮悬停效果 */
.lang-btn:hover, .location-btn:hover {
    border-color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255,0,0,0.3);
}

/* 按钮光效 */
.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,0,0,0.2), transparent);
    transition: 0.5s;
}

.lang-btn:hover .btn-glow, .location-btn:hover .btn-glow {
    left: 100%;
}

/* 按钮文字 */
.lang-text, .location-text {
    position: relative;
    z-index: 1;
}

/* 动画关键帧 */
@keyframes speedLine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.location-info {
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 1rem;
    border-top: 1px solid rgba(255, 0, 0, 0.2);
}

.location-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: inline;
}

.location-link:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration-color: rgba(255, 255, 255, 1);
}

.location-info p {
    margin: 0.5rem 0;
    font-family: 'Noto Sans SC', sans-serif;
}

.location-info p:first-child {
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .language-header h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .lang-btn, .location-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        max-width: 250px;
    }
    
    .location-info {
        font-size: 0.8rem;
    }
    
    .location-info p {
        line-height: 1.4;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .language-header h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .language-container {
        padding: 1rem;
    }
    
    .lang-btn, .location-btn {
        max-width: 200px;
    }
    
    .location-info {
        font-size: 0.75rem;
        padding: 0.8rem;
    }
    
    .location-info p {
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

.start-engine-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.start-engine-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.engine-icon {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.engine-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.start-engine-btn:hover .engine-icon {
    transform: rotate(180deg);
    border-color: rgba(255, 0, 0, 0.8);
}

.start-engine-btn:hover .engine-icon::before {
    background: rgba(255, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/8.webp') no-repeat center center;
    background-size: cover;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.transition-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 移动端渐显背景 */
@media (max-width: 768px) {
    .transition-overlay {
        background: url('images/bg.webp') no-repeat center center;
        background-size: cover;
    }
}

@media (max-width: 768px) {
    .transition-overlay {
        height: 100vh;
    }
}

/* 用户评价板块样式 */
.reviews {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
}

.reviews-stats {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.rating-overview {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e63946;
    margin: 0;
}

.stars-and-count {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stars {
    margin: 0;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.review-count {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.rating-breakdown {
    flex: 2;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-bar span:first-child {
    width: 50px;
    font-size: 0.9rem;
    color: #666;
}

.bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    transition: width 0.3s ease;
}

.rating-bar span:last-child {
    width: 30px;
    text-align: right;
    font-size: 0.9rem;
    color: #666;
}

.reviews-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.reviews-container:active {
    cursor: grabbing;
}

.review-card {
    flex: 0 0 350px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-header {
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e63946, #ff6b6b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-details h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.review-stars {
    margin-bottom: 0.3rem;
}

.review-stars i {
    color: #ffd700;
    font-size: 0.9rem;
    margin-right: 2px;
}

.review-date {
    color: #999;
    font-size: 0.8rem;
}

.review-text {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.review-images {
    margin-top: 1rem;
}

.review-images img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.review-arrow {
    position: absolute;
    top: auto;
    bottom: 15px;
    transform: translateY(0);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    z-index: 10;
    border: 1px solid rgba(0,0,0,0.05);
}

.review-arrow.left-arrow {
    left: 20px;
}

.review-arrow.right-arrow {
    right: 20px;
    left: auto;
}

.review-slider-btns {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.google-maps-link {
    text-align: center;
    margin-top: 2rem;
}

.maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #4285f4, #34a853);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66,133,244,0.3);
}

.maps-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66,133,244,0.4);
    background: linear-gradient(45deg, #3367d6, #2e7d32);
}

/* 响应式设计 */
@media (min-width: 1200px) {
    .reviews-container {
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .review-card {
        flex: 0 1 calc(33.333% - 1rem);
        min-width: 280px;
        max-width: 360px;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .reviews-container {
        justify-content: space-around;
    }
    
    .review-card {
        flex: 0 1 calc(50% - 0.75rem);
        min-width: 280px;
        max-width: 400px;
    }
}

@media (min-width: 769px) and (max-width: 899px) {
    .reviews-container {
        justify-content: space-around;
    }
    
    .review-card {
        flex: 0 1 calc(50% - 0.75rem);
        min-width: 280px;
        max-width: 350px;
    }
}

@media (max-width: 768px) and (min-width: 601px) {
    .reviews {
        padding: 3rem 1rem;
    }
    
    .reviews h2 {
        font-size: 1.8rem;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .rating-overview {
        align-items: center;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .review-card {
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    
    .review-arrow {
        display: none;
    }
    
    .rating-breakdown {
        display: none;
    }
}

@media (min-width: 769px) {
    .about h2 {
        font-size: 3rem;
        font-weight: 700;
    }

    .about-content {
        gap: 5rem;
    }

    .about-unique-badge {
        font-size: 1.5rem;
        padding: 10px 28px;
        margin-bottom: 2rem;
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    }

    .about-unique-slogan {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    .about-text p:not(.about-unique-slogan) {
        font-size: 1.25rem;
        line-height: 1.8;
        color: #333;
    }
}

@media (max-width: 600px) {
    .reviews-container {
        display: block;
        overflow: visible;
    }
    
    .review-card {
        min-width: 100%;
        margin-bottom: 1rem;
        display: none;
        flex: none;
        transition: none !important; /* 移除动画延迟，确保立即响应 */
        height: 280px; /* 设置固定高度 */
        overflow-y: auto; /* 内容超出时可滚动 */
        box-sizing: border-box; /* 确保padding包含在高度内 */
        padding: 1.2rem; /* 稍微减少padding以留出更多内容空间 */
    }
    
    /* 移动端评价卡片内容优化 */
    .review-card .review-text {
        max-height: 120px; /* 限制评价文本的最大高度 */
        overflow-y: auto; /* 文本过长时可滚动 */
        line-height: 1.5; /* 稍微紧凑的行高 */
        font-size: 0.9rem; /* 稍微小一点的字体 */
        margin-bottom: 0.8rem;
    }
    
    .review-card .reviewer-avatar {
        width: 40px; /* 稍微小一点的头像 */
        height: 40px;
        font-size: 1rem;
    }
    
    .review-card .reviewer-details h4 {
        font-size: 1rem; /* 稍微小一点的用户名 */
        margin-bottom: 0.3rem;
    }
    
    .review-card .review-stars {
        margin-bottom: 0.2rem;
    }
    
    .review-card .review-date {
        font-size: 0.75rem;
    }
    
    .review-card .review-images {
        margin-top: 0.5rem;
    }
    
    .review-card .review-images img {
        height: 80px; /* 移动端图片高度更小 */
        object-fit: cover;
        border-radius: 6px;
    }
    
    /* 移动端评价卡片滚动条样式 */
    .review-card::-webkit-scrollbar {
        width: 4px;
    }
    
    .review-card::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .review-card::-webkit-scrollbar-thumb {
        background: #e63946;
        border-radius: 2px;
    }
    
    .review-card::-webkit-scrollbar-thumb:hover {
        background: #d32f2f;
    }
    
    .review-card .review-text::-webkit-scrollbar {
        width: 3px;
    }
    
    .review-card .review-text::-webkit-scrollbar-track {
        background: #f8f8f8;
        border-radius: 2px;
    }
    
    .review-card .review-text::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }
    
    .review-card .review-text::-webkit-scrollbar-thumb:hover {
        background: #999;
    }
    
    .review-card:first-child {
        display: block;
    }
    
    .review-slider-btns {
        display: flex;
    }
    
    .reviews-slider-wrapper {
        position: relative;
        padding-bottom: 80px;
    }
    
    .rating-breakdown {
        display: none !important;
    }
    
    .rating-overview {
        justify-content: center;
    }
    
    .review-arrow {
        display: flex;
        position: absolute;
        top: auto;
        bottom: 20px;
        transform: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 10;
        border: 2px solid #e63946;
        color: #e63946;
        font-size: 1.1rem;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .review-arrow:hover {
        background: #e63946;
        color: white;
        transform: scale(1.1);
        box-shadow: 0 6px 18px rgba(230,57,70,0.3);
    }
    
    .review-arrow.left-arrow {
        left: 20px;
    }
    
    .review-arrow.right-arrow {
        right: 20px;
        left: auto;
    }
}

/* 移动端标题换行样式 */
@media (max-width: 600px) {
    .hero-content h1 .mobile-break {
        display: block;
    }
}

@media (min-width: 601px) {
    .hero-content h1 .mobile-break {
        display: inline;
    }
}

/* 移动端YouTube视频全屏优化 */
.video-modal.mobile-fullscreen {
    background: rgba(0, 0, 0, 0.98);
    padding: 0;
}

.video-modal.mobile-fullscreen .video-modal-content {
    width: 100vw !important;
    height: 100vh !important;
    border-radius: 0 !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #000 !important;
    max-width: none !important;
    max-height: none !important;
}

.video-modal.mobile-fullscreen .video-modal-content iframe {
    width: 100vw !important;
    height: 100vh !important;
    border: none !important;
    border-radius: 0 !important;
    background: #000 !important;
}

.video-modal.mobile-fullscreen .video-modal-close {
    position: fixed !important;
    top: 15px !important;
    left: 15px !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    font-size: 1.3rem !important;
    color: #fff !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    touch-action: manipulation !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
}

.video-modal.mobile-fullscreen .video-modal-close:hover,
.video-modal.mobile-fullscreen .video-modal-close:active {
    background: rgba(230, 57, 70, 0.9) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.5) !important;
}

/* 移动端视频全屏提示 */
@media (max-width: 768px) {
    .video-modal.mobile-fullscreen::after {
        content: "点击左上角关闭";
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        z-index: 99998;
        opacity: 0.9;
        pointer-events: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        animation: mobileVideoTipFadeIn 3s ease-in-out;
    }
}

@keyframes mobileVideoTipFadeIn {
    0%, 100% { opacity: 0; }
    20%, 80% { opacity: 0.9; }
}

/* 移动端横屏优化 */
@media (max-width: 768px) and (orientation: landscape) {
    .video-modal.mobile-fullscreen .video-modal-close {
        top: 10px !important;
        left: 10px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
    
    .video-modal.mobile-fullscreen::after {
        bottom: 10px !important;
        font-size: 0.8rem !important;
        padding: 8px 16px !important;
    }
}

/* 针对日文首页大图标题移动端明朝体样式 */
@media (max-width: 600px) {
  .jp .main-visual-title, .jp .main-visual-title-mobile, .jp .visual-title, .jp .main-visual .main-visual-title {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', 'MS Mincho', 'Times New Roman', serif !important;
    font-size: 2.2rem !important;
    line-height: 1.25 !important;
    font-weight: 900 !important;
    color: #fff !important;
    text-shadow: 2px 2px 0 #ff6600, 0 0 8px #000, 4px 4px 12px #000;
    white-space: pre-line !important;
    letter-spacing: 0.05em !important;
    word-break: keep-all;
    padding: 0.2em 0.1em;
    text-align: left !important;
  }
}

@media (max-width: 600px) {
  html[lang="ja"] .hero-content h1 {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', 'MS Mincho', 'Times New Roman', serif !important;
    font-size: 2.1rem !important;
  }
}

/* 日文页面所有标题明朝体字体设置 */
html[lang="ja"] h1, html[lang="ja"] h2, html[lang="ja"] h3, html[lang="ja"] h4, html[lang="ja"] h5, html[lang="ja"] h6 {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', 'MS Mincho', 'Times New Roman', serif !important;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* 日文页面导航菜单明朝体字体 */
html[lang="ja"] .nav-menu a {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', 'MS Mincho', 'Times New Roman', serif !important;
    font-weight: 500;
}

/* 日文页面按钮明朝体字体 */
html[lang="ja"] .cta-button, html[lang="ja"] .whatsapp-btn, html[lang="ja"] .video-btn, html[lang="ja"] .order-btn {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', 'MS Mincho', 'Times New Roman', serif !important;
    font-weight: 600;
}

/* 日文页面表单明朝体字体 */
html[lang="ja"] input, html[lang="ja"] select, html[lang="ja"] textarea {
    font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', 'MS Mincho', 'Times New Roman', serif !important;
}

/* 保证jp页面body有.jp class，如果没有可在jp/index.html <body>加class="jp" */