/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background-color: #1a73e8;
    color: white;
}

.btn-primary:hover {
    background-color: #0d62d9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1a73e8;
    transform: translateY(-3px);
}

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

.section-title {
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1a73e8;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #1a73e8;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* 顶部导航 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 35, 126, 0.95);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.header.scrolled {
    background-color: rgba(26, 35, 126, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 32px;
    color: #1a73e8;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    color: white;
    margin-bottom: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
}

.nav-link {
    color: white;
    padding: 10px 15px;
    margin: 0 5px;
    font-weight: 500;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #1a73e8;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #1a73e8;
}

.nav-actions {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.search-btn, .mobile-menu-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
}

.mobile-menu-btn {
    display: none;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.search-container {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 30px;
    font-size: 24px;
    border: none;
    border-radius: 50px;
    background-color: white;
    color: #333;
}

.search-submit, .search-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 24px;
    color: #1a73e8;
    cursor: pointer;
}

.search-submit {
    right: 70px;
}

.search-close {
    right: 20px;
}

/* 首屏大视觉 */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    color: white;
    margin-top: 0;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 35, 126, 0.7) 0%, rgba(26, 35, 126, 0.5) 50%, rgba(26, 35, 126, 0.2) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    margin-top: 9%;
    padding-left: 5%;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-right: 60px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 0;
}

.hero-main {
    flex: 1;
}

.hero-description {
    max-width: 600px;
    margin-bottom: 60px;
}

.subtitle {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.desc {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-prev, .slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* 公司简介 + 关键统计 */
.intro-section {
    background-color: #f8f9fa;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 40px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.stat-desc {
    color: #666;
    font-size: 16px;
}

/* 客房展示 */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.room-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: white;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-size: 22px;
    color: #1a237e;
    margin-bottom: 10px;
}

.room-info p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.room-link {
    color: #1a73e8;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.room-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.room-link:hover i {
    transform: translateX(5px);
}

/* 品牌矩阵 */
.brands-section {
    background-color: #f8f9fa;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.brand-item {
    text-align: center;
    padding: 30px 15px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.brand-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    margin-bottom: 20px;
}

.logo-box {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.logo-box.red { background-color: #e53935; }
.logo-box.blue { background-color: #1a73e8; }
.logo-box.green { background-color: #43a047; }
.logo-box.gold { background-color: #ffb300; }
.logo-box.silver { background-color: #757575; }
.logo-box.purple { background-color: #8e24aa; }

.brand-item h3 {
    font-size: 18px;
    color: #1a237e;
    margin-bottom: 10px;
}

.brand-item p {
    color: #666;
    font-size: 14px;
}

/* 酒店特色 - 轮播 */
.features-slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide-item {
    min-width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.slide-content {
    padding: 40px;
    color: white;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.brand-tag {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.slide-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 18px;
    max-width: 600px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1a73e8;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav-btn:hover {
    background-color: #0d62d9;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #1a73e8;
    transform: scale(1.2);
}

/* 双卡片重叠区 */
.cards-container {
    display: flex;
    position: relative;
    height: 600px;
}

.card {
    position: absolute;
    width: 48%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-left {
    left: 0;
    top: 0;
    z-index: 1;
}

.card-right {
    right: 0;
    bottom: 0;
    z-index: 2;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 35, 126, 0.7) 100%);
}

.card-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-title-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-title-cn {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-desc {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 400px;
}

.card-link {
    color: white;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.card-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(10px);
}

/* 资讯中心 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.news-content h3 {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.news-link {
    color: #1a73e8;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.news-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(5px);
}

/* 宣言与网站链接 */
.cta-section {
    background-color: #1a237e;
    color: white;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #1a73e8;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.cta-links {
    flex: 0 0 300px;
}

.cta-links h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.cta-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #1a73e8;
}

.cta-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cta-links li a {
    display: block;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cta-links li a:hover {
    color: white;
    padding-left: 10px;
    border-bottom-color: #1a73e8;
}

/* 联系我们与加盟合作 */
.contact-join-section {
    background-color: #f8f9fa;
}

.contact-join-section .container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info, .join-info {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: #1a73e8;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    color: #1a237e;
    margin-bottom: 5px;
}

.contact-item p, .contact-item a {
    color: #666;
    font-size: 16px;
}

.contact-item a:hover {
    color: #1a73e8;
}

.join-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin: 30px 0;
}

.join-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.qr-codes {
    display: flex;
    gap: 30px;
}

.qr-item {
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qr-placeholder {
    color: #999;
    font-size: 14px;
}

.qr-item p {
    font-size: 14px;
    color: #666;
}

/* 页脚 */
.footer {
    background-color: #0d1442;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo h2 {
    color: white;
    margin-bottom: 0;
}

.footer-desc {
    font-size: 16px;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.link-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.link-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #1a73e8;
}

.link-column ul li {
    margin-bottom: 12px;
}

.link-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.link-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-contact h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #1a73e8;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #1a73e8;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #1a73e8;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-legal {
    margin-top: 15px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 10px;
}

.footer-legal a:hover {
    color: white;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1a73e8;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0d62d9;
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .vertical-text {
        display: none;
    }
    
    .hero-content {
        justify-content: center;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 60px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cards-container {
        height: auto;
        flex-direction: column;
        gap: 30px;
    }
    
    .card {
        position: relative;
        width: 100%;
        height: 400px;
    }
    
    .card-left, .card-right {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .desc {
        font-size: 16px;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(26, 35, 126, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 15px;
        margin: 5px 0;
        font-size: 18px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slider-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-links {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .cta-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-links ul {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .rooms-grid, .brands-grid, .news-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-item {
        height: 400px;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-content h3 {
        font-size: 24px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .card-content {
        padding: 30px 20px;
    }
    
    .card-title-en {
        font-size: 24px;
    }
    
    .card-title-cn {
        font-size: 28px;
    }
    
    .join-actions .btn {
        width: 100%;
    }
    
    .qr-codes {
        justify-content: center;
    }
}