* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

:root {
    --orange: #ff9100;
    --orange-dark: #e67e00;
    --orange-light: #fff5e6;
    --text: #222;
    --text-gray: #666;
    --text-light: #999;
    --white: #fff;
    --bg-gray: #f8f9fa;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
}

body {
    color: var(--text);
    background: var(--bg-gray);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 999;
    transition: all 0.3s ease;
}

.header-top {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-welcome {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.header-welcome i {
    color: var(--orange);
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.welcome-sub {
    font-size: 12px;
    color: #888;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid #333;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
}

.header-contact-item i {
    color: var(--orange);
    font-size: 12px;
}

.phone-number {
    color: var(--orange);
    font-weight: 600;
}

.date-item,
.weather-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 12px;
}

.date-item i,
.weather-item i {
    color: var(--orange);
}

.header-main {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.header.scrolled .header-main {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--orange);
}

.logo-subtitle {
    font-size: 11px;
    color: #999;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-list a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list a:hover {
    color: var(--orange);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 180px;
    padding: 10px 40px 10px 15px;
    border: 1px solid #eee;
    border-radius: 30px;
    font-size: 13px;
    background: #f8f8f8;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,145,0,0.1);
}

.search-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--orange);
}

.book-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,145,0,0.4);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(255,145,0,0.05);
    color: var(--orange);
    padding-left: 25px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 99999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.mobile-menu-title {
    color: var(--orange);
    font-size: 18px;
    font-weight: bold;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--orange);
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 10px;
}

.mobile-nav-list li a {
    display: block;
    padding: 15px 20px;
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-list li a:hover {
    background: rgba(255,145,0,0.1);
    color: var(--orange);
}

.mobile-contact {
    padding: 20px;
    border-top: 1px solid #333;
    margin-top: auto;
}

.mobile-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.mobile-contact i {
    color: var(--orange);
}

.banner {
    width: 100%;
    height: 700px;
    margin-top: 110px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('../images/ktv01 (1).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,145,0,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.banner-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.banner h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.banner h1 span {
    color: var(--orange);
}

.banner-desc {
    font-size: 20px;
    max-width: 650px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.banner-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: var(--orange);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.banner-btns {
    display: flex;
    gap: 20px;
}

.banner-btn {
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,145,0,0.35);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,145,0,0.45);
}

.banner-btn-outline {
    padding: 16px 45px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.section {
    padding: 100px 0;
}

.section-white {
    background: #fff;
}

.section-gray {
    background: var(--bg-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 40px;
    color: var(--text);
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    border-radius: 2px;
}

.section-title span {
    color: var(--orange);
}

.section-title p {
    color: var(--text-gray);
    font-size: 17px;
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.service-item {
    background: #fff;
    padding: 45px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--orange-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--orange);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text);
    font-weight: 600;
}

.service-item p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
}

.recommend-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.recommend-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.recommend-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.recommend-item.featured {
    grid-column: span 1;
    border: 2px solid var(--orange);
}

.recommend-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    z-index: 1;
}

.recommend-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recommend-item:hover img {
    transform: scale(1.05);
}

.recommend-content {
    padding: 25px;
}

.recommend-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.recommend-content h3 {
    font-size: 22px;
    color: var(--text);
    font-weight: 600;
}

.recommend-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.recommend-rating i {
    color: #ffc107;
    font-size: 14px;
}

.recommend-rating span {
    color: var(--text-gray);
    font-size: 14px;
    margin-left: 5px;
}

.recommend-desc {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.recommend-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.recommend-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.recommend-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.original-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 24px;
    color: var(--orange);
    font-weight: 700;
}

.recommend-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recommend-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.booking-tab {
    padding: 12px 40px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.booking-tab:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.booking-tab.active {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.booking-content {
    position: relative;
}

.booking-panel {
    display: none;
}

.booking-panel.active {
    display: block;
}

.package-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    border: 2px solid var(--orange);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    z-index: 1;
}

.package-image {
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-info {
    padding: 25px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.package-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.package-rating i {
    color: #ffc107;
    font-size: 14px;
}

.package-rating span {
    margin-left: 5px;
    font-size: 14px;
    color: var(--text-gray);
}

.package-desc {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.package-price .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.package-price .current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
}

.package-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.booking-tips {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.room-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.room-desc {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.room-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--orange);
}

.room-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
}

.room-btn {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.ktv-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 10px;
}

.ktv-tab {
    padding: 12px 30px;
    background: #fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ktv-tab:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

.ktv-tab.active {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.ktv-tab-content {
    position: relative;
}

.ktv-list {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ktv-list.active {
    display: grid;
}

.ktv-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ktv-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.ktv-rank {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.ktv-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    border-radius: 0 12px 0 12px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ktv-badge i {
    font-size: 10px;
}

.ktv-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.ktv-info {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ktv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ktv-info h3 {
    font-size: 16px;
    color: var(--text);
    font-weight: 600;
}

.ktv-rating {
    display: flex;
    align-items: center;
    gap: 1px;
}

.ktv-rating i {
    color: #ffc107;
    font-size: 10px;
}

.ktv-rating span {
    color: var(--orange);
    font-weight: 600;
    margin-left: 3px;
    font-size: 12px;
}

.ktv-desc {
    color: var(--text-gray);
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ktv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.ktv-tag {
    padding: 3px 8px;
    background: #f5f5f5;
    color: var(--text-gray);
    border-radius: 8px;
    font-size: 11px;
}

.ktv-tag.premium {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
}

.ktv-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.ktv-location {
    color: var(--text-light);
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ktv-location i {
    font-size: 10px;
}

.ktv-btn {
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ktv-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255,145,0,0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text h2 span {
    color: var(--orange);
}

.about-desc {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.highlight-tag {
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(255,145,0,0.15), rgba(255,145,0,0.08));
    border: 1px solid rgba(255,145,0,0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--orange);
}

.about-stats {
    display: flex;
    justify-content: space-between;
}

.about-stats.compact {
    justify-content: space-between;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(255,145,0,0.1), rgba(255,145,0,0.05));
    border-radius: 20px;
    margin-right: 10px;
}

.stat-item:last-child {
    margin-right: 0;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    font-size: 12px;
    color: var(--text-gray);
}

.about-images.tech-style {
    position: relative;
}

.img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    height: 520px;
}

.img-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.img-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.img-item.medium {
    height: 166px;
}

.img-item.small {
    height: 160px;
}

.img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.img-item:hover img {
    transform: scale(1.08);
}

.img-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255,145,0,0.15) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-item:hover .img-glow {
    opacity: 1;
}

.img-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.img-tech-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 4px 10px;
    background: rgba(255,145,0,0.9);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 8px;
}

.tech-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.tech-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--orange), transparent);
}

.tech-dots {
    display: flex;
    gap: 8px;
}

.tech-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tech-dots .dot.active {
    width: 25px;
    border-radius: 4px;
    background: var(--orange);
}

.job-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.job-tab {
    padding: 12px 40px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.job-tab:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.job-tab.active {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.job-content {
    position: relative;
}

.job-panel {
    display: none;
}

.job-panel.active {
    display: block;
}

.job-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.job-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.job-card.featured {
    border-color: var(--orange);
    background: linear-gradient(135deg, rgba(255,145,0,0.05), #fff);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.job-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.job-tag {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.job-tag.daily-tag {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
}

.job-tag.parttime-tag {
    background: linear-gradient(135deg, #17a2b8, #6610f2);
    color: #fff;
}

.job-tag.staff-tag {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
}

.job-salary {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.salary-symbol {
    font-size: 18px;
    font-weight: 600;
    color: var(--orange);
}

.salary-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
    margin: 0 5px;
}

.salary-unit {
    font-size: 14px;
    color: var(--text-gray);
}

.job-requirements {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.job-requirements p {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-requirements i {
    color: var(--orange);
    font-size: 14px;
}

.job-details {
    margin-top: 15px;
}

.job-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-details h4 i {
    color: var(--orange);
    font-size: 14px;
}

.job-details ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.job-details li {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 5px;
}

.job-details p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.job-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-gray);
}

.contact-item i {
    color: var(--orange);
    font-size: 18px;
}

.ranking-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.trophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(255,215,0,0.4);
    animation: trophyGlow 2s ease-in-out infinite;
}

@keyframes trophyGlow {
    0%, 100% { box-shadow: 0 8px 30px rgba(255,215,0,0.4); }
    50% { box-shadow: 0 8px 40px rgba(255,215,0,0.6); }
}

.ranking-badge {
    padding: 10px 30px;
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,215,0,0.1));
    border: 2px solid rgba(255,215,0,0.5);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #b8860b;
}

.ranking-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ranking-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.ranking-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.ranking-item.gold {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255,215,0,0.05), #fff);
}

.ranking-item.silver {
    border-color: #c0c0c0;
    background: linear-gradient(135deg, rgba(192,192,192,0.05), #fff);
}

.ranking-item.bronze {
    border-color: #cd7f32;
    background: linear-gradient(135deg, rgba(205,127,50,0.05), #fff);
}

.ranking-position {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.position-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.ranking-item.gold .position-number {
    color: #ffd700;
}

.ranking-item.silver .position-number {
    color: #c0c0c0;
}

.ranking-item.bronze .position-number {
    color: #cd7f32;
}

.position-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,0.6);
    padding: 5px 12px;
    border-radius: 15px;
    margin-top: -10px;
    margin-left: 5px;
}

.position-meta span {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
}

.gold-medal { color: #ffd700; }
.silver-medal { color: #c0c0c0; }
.bronze-medal { color: #cd7f32; }

.ranking-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ranking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ranking-item:hover .ranking-image img {
    transform: scale(1.08);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), transparent);
    pointer-events: none;
}

.ranking-info {
    padding: 25px;
}

.ranking-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.ranking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ranking-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.ranking-rating i {
    color: #ffc107;
    font-size: 14px;
}

.ranking-rating span {
    margin-left: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.ranking-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.ranking-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.ranking-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.ranking-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--text-light);
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
}

.ranking-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-gray);
}

.ranking-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ranking-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.ranking-item:not(.gold):not(.silver):not(.bronze) {
    grid-template-columns: 1fr;
}

.ranking-item:not(.gold):not(.silver):not(.bronze) .ranking-info {
    padding: 20px;
}

.ranking-item:not(.gold):not(.silver):not(.bronze) .ranking-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}



.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-column {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.news-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.column-header {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.column-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.news-icon {
    background: linear-gradient(135deg, #4a90d9, #357abd);
}

.industry-icon {
    background: linear-gradient(135deg, #50c878, #3cb371);
}

.faq-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.column-title {
    flex: 1;
}

.column-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 3px 0;
}

.column-badge {
    font-size: 12px;
    color: var(--text-light);
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 10px;
}

.column-more {
    font-size: 13px;
    color: var(--orange);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.column-more:hover {
    color: var(--orange-dark);
    gap: 8px;
}

.column-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-column:hover .column-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3));
}

.news-list {
    padding: 15px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-list .news-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-list .news-item:hover {
    background: rgba(255,145,0,0.05);
}

.news-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.news-title {
    flex: 1;
    font-size: 13px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.news-list .news-item:hover .news-title {
    color: var(--orange);
}

.news-date {
    font-size: 11px;
    color: var(--text-light);
    flex-shrink: 0;
    white-space: nowrap;
}

.news-list.industry-news .news-date {
    color: #50c878;
    font-weight: 500;
}

.news-list.industry-news .news-item:hover {
    background: rgba(80,200,120,0.08);
}

.news-list.industry-news .news-item:hover .news-title {
    color: #50c878;
}

.faq-list {
    padding: 15px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,145,0,0.03);
    border-left: 3px solid var(--orange);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255,145,0,0.08);
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.faq-q i {
    color: var(--orange);
    font-size: 12px;
}

.faq-a {
    font-size: 12px;
    color: var(--text-gray);
    padding-left: 20px;
}

.about-mission {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,145,0,0.15), rgba(255,145,0,0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--orange);
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
}

.mission-card h3 {
    font-size: 20px;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

.recommend-tips {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 15px;
}

.tip-item i {
    color: var(--orange);
    font-size: 18px;
}

.room-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.room-item {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.room-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.room-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-item:hover img {
    transform: scale(1.08);
}

.room-info {
    padding: 30px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.room-info h3 {
    font-size: 24px;
    color: var(--text);
    font-weight: 600;
}

.room-tag {
    padding: 5px 15px;
    background: var(--orange-light);
    color: var(--orange);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.room-desc {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 6px 14px;
    background: #f5f5f5;
    color: var(--text-gray);
    border-radius: 8px;
    font-size: 13px;
}

.room-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.room-price {
    font-size: 26px;
    color: var(--orange);
    font-weight: 700;
}

.room-price span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: normal;
    margin-left: 5px;
}

.room-btn {
    padding: 10px 25px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-btn:hover {
    background: var(--orange-dark);
}

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    height: 220px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: var(--shadow-hover);
}

.about-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text);
}

.about-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 22px;
}

.about-feature-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.about-feature-text p {
    font-size: 14px;
    margin-bottom: 0;
}

.gallery-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,145,0,0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item::before {
    content: '\f00e';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.large img {
    height: 420px;
}

.booking {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.booking-content {
    position: relative;
    z-index: 1;
}

.booking h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.booking-desc {
    font-size: 19px;
    max-width: 750px;
    margin: 0 auto 50px;
    opacity: 0.95;
    line-height: 1.7;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input {
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.form-input:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.form-input::placeholder {
    color: #aaa;
}

.form-btn {
    padding: 18px 40px;
    background: #fff;
    color: var(--orange);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 35px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
    color: var(--orange);
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.footer-desc {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 13px;
}

.footer-contact i {
    width: 26px;
    height: 26px;
    background: rgba(255,145,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 12px;
    flex-shrink: 0;
}

.footer-links-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-col h4 {
    color: var(--orange);
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    color: #888;
    font-size: 12px;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 15px;
}

.footer-bottom .footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-bottom .footer-links a:hover {
    color: var(--orange);
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 15px;
    width: 55px;
    height: 55px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255,145,0,0.4);
}

.mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #fff;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover,
.contact-item:active {
    background: rgba(255,145,0,0.2);
}

.contact-item i {
    font-size: 24px;
}

.contact-item.phone i {
    color: #28a745;
}

.contact-item.wechat i {
    color: #07c160;
}

.contact-item.qq i {
    color: #12b7f5;
}

.contact-item.qq-group i {
    color: #ff6b6b;
}

.contact-item span {
    font-size: 12px;
}

.qr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.qr-modal.show {
    display: flex;
}

.qr-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
}

.qr-modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.qr-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qr-modal-close:hover {
    background: #eee;
    color: #333;
}

.qr-modal-header {
    margin-bottom: 20px;
}

.qr-modal-header i {
    font-size: 48px;
    margin-bottom: 10px;
}

.qr-modal-header h3 {
    font-size: 20px;
    color: var(--text);
    margin: 0;
}

.qr-modal-header .fa-weixin {
    color: #07c160;
}

.qr-modal-header .fa-qq {
    color: #12b7f5;
}

.qr-modal-header .fa-users {
    color: #ff6b6b;
}

.qr-code {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
}

.qr-code img {
    width: 180px;
    height: 180px;
    border-radius: 10px;
}

.qr-info {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.qr-info p {
    margin: 5px 0;
}

.qr-info .highlight {
    font-weight: 600;
    color: var(--orange);
    font-size: 16px;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.qr-info .highlight:hover {
    color: var(--orange-dark);
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,145,0,0.4);
}

.copy-btn.copied {
    background: #28a745;
}

.copy-btn.copied i {
    animation: copySuccess 0.5s ease;
}

@keyframes copySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.copy-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    z-index: 999999;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.copy-toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.copy-toast i {
    color: #28a745;
    font-size: 20px;
    animation: toastBounce 0.5s ease;
}

@keyframes toastBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
}

@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .header-contact {
        gap: 20px;
    }
    
    .contact-item {
        font-size: 12px;
    }
    
    .nav-list {
        gap: 25px;
    }
    
    .nav-list a {
        font-size: 14px;
    }
    
    .search-box input {
        width: 140px;
    }
    
    .banner h1 {
        font-size: 40px;
    }
    
    .banner-desc {
        font-size: 16px;
    }
    
    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ktv-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .ktv-item img {
        height: 140px;
    }
    
    .ktv-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .about-images {
        flex-direction: column;
    }
    
    .about-img-main {
        height: 280px;
    }
    
    .about-img-side {
        flex-direction: row;
        width: 100%;
    }
    
    .side-img {
        flex: 1;
        height: 160px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recommend-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recommend-tips {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .room-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ranking-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }
    
    .phone-icon {
        display: none;
    }
    
    .banner-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .ranking-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    
    .header-top {
        display: none;
    }
    
    .header-main {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
    }
    
    .nav {
        height: 65px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
        box-shadow: 0 2px 10px rgba(255,145,0,0.2);
    }
    
    .logo-title {
        font-size: 18px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .nav-list {
        display: none;
    }
    
    .phone-icon {
        display: none;
    }
    
    .search-box {
        display: none;
    }
    
    .book-btn {
        padding: 8px 14px;
        font-size: 12px;
        gap: 4px;
        border-radius: 30px;
        box-shadow: 0 2px 10px rgba(255,145,0,0.25);
    }
    
    .menu-toggle {
        display: flex;
        padding: 6px;
    }
    
    .menu-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .mobile-menu {
        width: 280px;
        right: -280px;
    }
    
    .mobile-menu.active {
        right: 0;
    }
    
    .mobile-menu-header {
        padding: 18px;
        background: linear-gradient(135deg, var(--orange), var(--orange-dark));
        border-bottom: none;
    }
    
    .mobile-menu-title {
        color: #fff;
        font-size: 17px;
        font-weight: 600;
    }
    
    .mobile-menu-close {
        color: #fff;
        font-size: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-close:hover {
        color: rgba(255,255,255,0.8);
    }
    
    .mobile-nav-list {
        padding: 15px;
    }
    
    .mobile-nav-list li {
        margin-bottom: 5px;
    }
    
    .mobile-nav-list li a {
        padding: 12px 16px;
        font-size: 15px;
        border-radius: 8px;
        color: #ccc;
    }
    
    .mobile-nav-list li a:hover {
        background: rgba(255,145,0,0.15);
        color: var(--orange);
    }
    
    .mobile-contact {
        padding: 15px;
        background: rgba(255,255,255,0.05);
    }
    
    .mobile-contact p {
        font-size: 13px;
        color: #999;
        margin-bottom: 8px;
    }
    
    .mobile-contact i {
        color: var(--orange);
        font-size: 14px;
    }
    
    .mobile-menu-overlay {
        display: block;
        z-index: 99998;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .banner {
        min-height: 400px;
        margin-top: 40px;
        padding: 0;
    }
    
    .banner h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .banner-desc {
        font-size: 14px;
        margin-top: 15px;
    }
    
    .banner-stats {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        width: calc(50% - 10px);
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .section-title p {
        font-size: 14px;
    }
    
    .recommend-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .recommend-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .recommend-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recommend-item {
        flex-direction: column;
    }
    
    .recommend-item img {
        width: 100%;
        height: 180px;
        border-radius: 12px 12px 0 0;
    }
    
    .recommend-content {
        border-radius: 0 0 12px 12px;
        padding: 20px;
    }
    
    .room-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .room-item {
        flex-direction: column;
    }
    
    .room-item img {
        width: 100%;
        height: 180px;
        border-radius: 12px 12px 0 0;
    }
    
    .room-info {
        border-radius: 0 0 12px 12px;
        padding: 20px;
    }
    
    .ktv-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .ktv-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .ktv-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ktv-item img {
        height: 160px;
    }
    
    .ktv-tags {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .about-desc {
        font-size: 14px;
    }
    
    .about-highlights {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .highlight-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .about-stats.compact {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-images .img-grid {
        grid-template-columns: 1fr;
    }
    
    .img-item.large,
    .img-item.medium,
    .img-item.small {
        height: 150px;
    }
    
    .gallery-list {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: 1;
        height: 200px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .column-header {
        padding: 15px;
    }
    
    .column-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .column-title h3 {
        font-size: 16px;
    }
    
    .column-image {
        height: 120px;
    }
    
    .ranking-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ranking-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ranking-position {
        position: relative;
        margin-bottom: 10px;
    }
    
    .ranking-image {
        width: 100%;
        height: 150px;
    }
    
    .job-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .job-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .job-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .booking-btn {
        padding: 14px;
        font-size: 15px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-main {
        gap: 15px;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-logo .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .footer-desc {
        font-size: 13px;
    }
    
    .footer-contact {
        font-size: 13px;
        gap: 10px;
    }
    
    .footer-contact i {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .footer-links-wrap {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .footer-main {
        text-align: center;
    }
    
    .footer-contacts {
        justify-content: center;
    }
    
    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .footer-col ul li {
        margin-bottom: 4px;
    }
    
    .footer-col ul li a {
        font-size: 11px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .footer-bottom .footer-links {
        gap: 15px;
    }
    
    .footer-bottom .footer-links a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .banner h1 {
        font-size: 24px;
    }
    
    .banner-desc {
        font-size: 13px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .recommend-desc,
    .room-desc,
    .ktv-desc {
        font-size: 13px;
    }
    
    .recommend-price .current-price,
    .room-price {
        font-size: 20px;
    }
    
    .faq-q {
        font-size: 12px;
    }
    
    .faq-a {
        font-size: 11px;
    }
    
    .footer {
        padding: 25px 0 10px;
    }
    
    .footer-content {
        gap: 20px;
        margin-bottom: 18px;
    }
    
    .footer-main {
        gap: 8px;
    }
    
    .footer-logo {
        font-size: 18px;
    }
    
    .footer-logo .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .footer-desc {
        font-size: 12px;
    }
    
    .footer-contact {
        font-size: 12px;
        gap: 8px;
    }
    
    .footer-contact i {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    .footer-links-wrap {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .footer-col h4 {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .footer-col ul li {
        margin-bottom: 3px;
    }
    
    .footer-col ul li a {
        font-size: 10px;
    }
    
    .footer-bottom {
        padding-top: 12px;
        gap: 8px;
    }
    
    .copyright {
        font-size: 11px;
    }
    
    .footer-bottom .footer-links {
        gap: 12px;
    }
    
    .footer-bottom .footer-links a {
        font-size: 11px;
    }
    
    .mobile-contact-bar {
        display: flex;
    }
    
    main,
    .footer {
        padding-bottom: 80px;
    }
}

@media (min-width: 769px) {
    .mobile-contact-bar {
        display: none;
    }
}

/* Ranking Section Styles */
.ranking-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 10px;
}

.ranking-tab {
    padding: 12px 30px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ranking-tab:hover {
    color: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.ranking-tab.active {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-color: var(--orange);
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.ranking-content {
    position: relative;
}

.ranking-panel {
    display: none;
}

.ranking-panel.active {
    display: block;
}

.ranking-intro {
    background: linear-gradient(135deg, rgba(255,145,0,0.08), rgba(255,145,0,0.02));
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid rgba(255,145,0,0.15);
}

.intro-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.intro-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

.area-list,
.price-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.area-card,
.price-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.area-card:hover,
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.area-header,
.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, rgba(255,145,0,0.05), #fff);
}

.area-name,
.price-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.area-tag,
.price-tag {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.area-tag.premium,
.price-tag.premium {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.area-desc {
    padding: 5px 30px;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
}

.ktv-grid {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.ktv-card {
    background: #fafafa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.ktv-card:hover {
    background: #fff;
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255,145,0,0.2);
}

.ktv-rank-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    border-radius: 10px;
    z-index: 2;
}

.ktv-rank-badge.top1 {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,215,0,0.4);
}

.ktv-rank-badge.top2 {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #fff;
    box-shadow: 0 4px 15px rgba(192,192,192,0.3);
}

.ktv-rank-badge.top3 {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: #fff;
    box-shadow: 0 4px 15px rgba(205,127,50,0.3);
}

.ktv-rank-badge.top4,
.ktv-rank-badge.top5,
.ktv-rank-badge.top6,
.ktv-rank-badge.top7,
.ktv-rank-badge.top8 {
    background: linear-gradient(135deg, #666, #444);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102,102,102,0.3);
}

.ktv-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ktv-card-info {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ktv-card-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.ktv-card-info .ktv-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.ktv-card-info .ktv-rating i {
    color: #ffc107;
    font-size: 13px;
}

.ktv-card-info .ktv-rating span {
    font-size: 15px;
    font-weight: 700;
    color: var(--orange);
    margin-left: 5px;
}

.ktv-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-gray);
}

.meta-item i {
    color: var(--orange);
    font-size: 12px;
}

.ktv-review {
    background: rgba(255,145,0,0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid var(--orange);
}

.review-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.review-content {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-gray);
}

.ktv-card-info .ktv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.ktv-card-info .ktv-tag {
    padding: 5px 12px;
    background: #f0f0f0;
    color: var(--text-gray);
    border-radius: 6px;
    font-size: 11px;
}

.ktv-card-info .ktv-tag.premium {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
}

.ktv-card-btn {
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.ktv-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
}

.ranking-tips {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    padding: 25px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

@media (max-width: 1400px) {
    .ktv-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .ranking-tips {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .ktv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .area-header,
    .price-header {
        padding: 20px 25px;
    }
    
    .area-name,
    .price-name {
        font-size: 18px;
    }
    
    .ktv-grid {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .ranking-intro {
        padding: 20px;
    }
    
    .intro-content h3 {
        font-size: 18px;
    }
    
    .intro-content p {
        font-size: 14px;
    }
    
    .ranking-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .ranking-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .area-header,
    .price-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding: 18px;
    }
    
    .ktv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .ktv-card-info {
        padding: 18px;
    }
    
    .ktv-card-info h4 {
        font-size: 18px;
    }
    
    .ktv-meta {
        gap: 12px;
    }
    
    .ranking-tips {
        padding: 20px;
    }
}

/* 地图导航版块样式 */
.map-intro {
    background: linear-gradient(135deg, rgba(255,145,0,0.08), rgba(255,145,0,0.02));
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid rgba(255,145,0,0.15);
}

.map-intro .intro-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.map-intro .intro-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

.map-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.map-tab {
    padding: 12px 28px;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.map-tab.active {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-color: var(--orange);
}

.map-content {
    display: block;
}

.map-panel {
    display: none;
}

.map-panel.active {
    display: block;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.location-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.location-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.location-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.location-item:hover {
    background: rgba(255,145,0,0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.location-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    color: #fff;
    font-size: 16px;
}

.location-info {
    flex: 1;
}

.location-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.location-info p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 4px;
    line-height: 1.5;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.location-tags span {
    padding: 4px 12px;
    background: #fff;
    color: var(--text-gray);
    border-radius: 8px;
    font-size: 11px;
    border: 1px solid #eee;
}

.location-nav {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    height: fit-content;
    align-self: flex-start;
    white-space: nowrap;
}

.location-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,145,0,0.3);
    color: #fff;
}

.map-display {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.map-container {
    width: 100%;
    height: 740px;
    border-radius: 15px;
    background: #f5f5f5;
}

.map-visual {
    width: 100%;
    height: 100%;
    position: relative;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.map-marker-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: markerPulse 2s infinite;
}

.map-marker-point span:first-child {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(255,107,107,0.4);
}

.marker-label {
    background: rgba(255,255,255,0.95);
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: #333;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@keyframes markerPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.map-legend-bar {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--text-gray);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.map-legend-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.map-tips {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.map-tips .tip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.map-tips .tip-item i {
    color: var(--orange);
    font-size: 16px;
}

/* 消费指南与避坑攻略版块样式 */
.guide-intro {
    background: linear-gradient(135deg, rgba(255,145,0,0.08), rgba(255,145,0,0.02));
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid rgba(255,145,0,0.15);
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 32px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.guide-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--orange);
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.guide-card.warning {
    border-left-color: #ff6b6b;
}

.guide-card.business {
    border-left-color: #4ecdc4;
}

.guide-card.tips {
    border-left-color: #a855f7;
}

.guide-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.guide-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.guide-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.guide-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.highlight-tag {
    padding: 5px 14px;
    background: rgba(255,145,0,0.1);
    color: var(--orange);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.highlight-tag.warning-tag {
    background: rgba(255,107,107,0.1);
    color: #ff6b6b;
}

.highlight-tag.business-tag {
    background: rgba(78,205,196,0.1);
    color: #4ecdc4;
}

.highlight-tag.tips-tag {
    background: rgba(168,85,247,0.1);
    color: #a855f7;
}

.guide-detail {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.guide-detail h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.guide-detail ul,
.guide-detail ol {
    margin: 0;
    padding-left: 20px;
}

.guide-detail li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

.guide-detail li:last-child {
    margin-bottom: 0;
}

.tip-table {
    width: 100%;
    border-collapse: collapse;
}

.tip-row {
    display: flex;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

.tip-row:last-child {
    border-bottom: none;
}

.tip-row.tip-header {
    background: rgba(0,0,0,0.05);
    font-weight: 700;
    color: var(--text);
}

.tip-row > div {
    flex: 1;
    font-size: 14px;
    color: var(--text-gray);
}

.tip-row.tip-header > div {
    color: var(--text);
}

.guide-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-content {
    flex: 1;
}

.cta-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-btn {
    padding: 15px 35px;
    background: #fff;
    color: var(--orange);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: var(--orange);
}

.cta-btn-outline {
    padding: 15px 35px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: #fff;
    color: var(--orange);
}

/* 玩法攻略版块样式 */
.gameplay-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.gameplay-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gameplay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.gameplay-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.gameplay-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.gameplay-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gameplay-tips {
    background: linear-gradient(135deg, rgba(255,145,0,0.05), rgba(255,145,0,0.02));
    border-radius: 15px;
    padding: 20px;
}

.tip-box {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.tip-box:last-child {
    margin-bottom: 0;
}

.tip-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.tip-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.gameplay-rules {
    background: linear-gradient(135deg, rgba(78,205,196,0.05), rgba(78,205,196,0.02));
    border-radius: 15px;
    padding: 20px;
}

.gameplay-rules h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.gameplay-rules ul {
    margin: 0;
    padding-left: 20px;
}

.gameplay-rules li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.gameplay-rules li:last-child {
    margin-bottom: 0;
}

.rule-highlight {
    background: #fff;
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 15px;
    font-size: 13px;
    color: var(--orange);
    font-weight: 600;
}

.gameplay-guide {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guide-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(168,85,247,0.05), rgba(168,85,247,0.02));
    border-radius: 12px;
}

.guide-icon-box {
    font-size: 24px;
    flex-shrink: 0;
}

.guide-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
}

.guide-info p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.gameplay-extra {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.extra-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: var(--shadow);
}

.extra-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.extra-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.song-list,
.game-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.song-list span,
.game-list span {
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.song-list span::before,
.game-list span::before {
    content: "•";
    color: var(--orange);
    font-size: 12px;
}

/* 预约预订版块样式 */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.booking-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.booking-card.featured {
    background: linear-gradient(135deg, rgba(255,145,0,0.08), rgba(255,145,0,0.02));
    border: 2px solid var(--orange);
}

.booking-card.featured::before {
    content: 'HOT';
    position: absolute;
    top: 15px;
    right: -45px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
}

.booking-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.booking-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.booking-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.booking-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.booking-features span {
    padding: 6px 14px;
    background: rgba(255,145,0,0.1);
    color: var(--orange);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.booking-card.featured .booking-features span {
    background: rgba(255,145,0,0.2);
}

.booking-price {
    margin-bottom: 20px;
}

.booking-price .original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.booking-price .current {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange);
}

.booking-price:not(.original) {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.booking-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,145,0,0.3);
}

.booking-card.featured .booking-btn {
    background: linear-gradient(135deg, #339af0, #1971c2);
}

.booking-card.featured .booking-btn:hover {
    box-shadow: 0 8px 20px rgba(51,154,240,0.3);
}

.booking-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-gray);
}

.highlight-item i {
    font-size: 20px;
    color: var(--orange);
}

/* FAQ智能问答区样式 */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.faq-tab {
    padding: 12px 30px;
    background: #f8f9fa;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    background: rgba(255,145,0,0.1);
    color: var(--orange);
}

.faq-tab.active {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
}

.faq-content {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.faq-panel {
    display: none;
}

.faq-panel.active {
    display: block;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-q {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.q-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #339af0, #1971c2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-q span:last-child {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

.faq-a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-left: 40px;
}

.a-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-a span:last-child {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-cta {
    background: linear-gradient(135deg, #339af0, #1971c2);
    border-radius: 15px;
    padding: 25px;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-icon {
    font-size: 36px;
}

.cta-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.faq-cta-btn {
    padding: 13px 30px;
    background: #fff;
    color: #339af0;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #339af0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-cards {
        grid-template-columns: 1fr;
    }
    
    .intro-stats {
        gap: 30px;
    }
    
    .gameplay-cards {
        grid-template-columns: 1fr;
    }
    
    .gameplay-extra {
        grid-template-columns: 1fr;
    }
    
    .faq-tabs {
        flex-wrap: wrap;
    }
    
    .faq-tab {
        padding: 10px 20px;
    }
    
    .faq-a {
        padding-left: 0;
        flex-direction: column;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-highlights {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .highlight-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links-wrap {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-main {
        text-align: center;
        gap: 10px;
    }
    
    .footer-contacts {
        justify-content: center;
        gap: 8px;
    }
    
    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .footer-col ul li {
        margin-bottom: 4px;
    }
    
    .footer-col ul li a {
        font-size: 11px;
    }
    
    .map-intro {
        padding: 20px;
    }
    
    .map-intro .intro-content h3 {
        font-size: 18px;
    }
    
    .map-intro .intro-content p {
        font-size: 14px;
    }
    
    .map-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .map-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .location-card {
        padding: 20px;
    }
    
    .location-header h3 {
        font-size: 18px;
    }
    
    .location-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .location-icon {
        width: 36px;
        height: 36px;
    }
    
    .location-nav {
        width: 100%;
        justify-content: center;
    }
    
    .map-placeholder {
        height: 350px;
    }
    
    .map-legend-bar {
        flex-direction: column;
        gap: 8px;
        bottom: 10px;
        left: 10px;
        padding: 10px 15px;
    }
    
    .map-tips {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
}