:root {
    --deep-black: #0B0B14;
    --orange: #FF5E2A;
    --orange-dark: #E04A1A;
    --gold: #FFD700;
    --light-gray: #333333;
    --dark-gray: #1A1A2E;
    --white: #FFFFFF;
    --text-gray: #999999;
    --card-bg: #16161F;
}

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

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(180deg, #0B0B14 0%, #1A1A2E 50%, #0B0B14 100%);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-gray);
}

.highlight {
    color: var(--orange);
}

.highlight-primary {
    color: var(--orange);
    font-weight: 900;
    font-size: 1.1em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 94, 42, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 94, 42, 0.8);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes numberRoll {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes particleMove {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.bounce-in {
    animation: bounceIn 0.6s ease-out forwards;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.global-particles .particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-50px) translateX(20px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) translateX(-20px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-50px) translateX(10px);
        opacity: 0.5;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a.active {
    color: var(--orange);
    border-bottom: 3px solid var(--orange);
    padding-bottom: 5px;
}

.nav-link-disabled {
    color: var(--text-gray);
    font-weight: 700;
    cursor: default;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-phone {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.douyin-btn-wrapper {
    position: relative;
}

.douyin-btn {
    padding: 12px 28px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.douyin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 94, 42, 0.5);
}

.douyin-qr-popup {
    position: absolute;
    top: 50px;
    right: 0;
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.douyin-btn-wrapper:hover .douyin-qr-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.douyin-qr-popup .qr-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
}

.douyin-qr-popup .qr-text {
    display: block;
    text-align: center;
    color: var(--deep-black);
    font-weight: 700;
    margin-top: 10px;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--card-bg);
    z-index: 1000;
    padding-top: 80px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
    display: block;
    padding: 20px 25px;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.mobile-menu a:hover {
    background: rgba(255, 94, 42, 0.1);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-section {
    min-height: calc(100vh - 80px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1517841905240-472988babdf9?w=1920&q=80') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 20, 0.85);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 94, 42, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px 0;
}

.hero-logo-section {
    margin-bottom: 20px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.hero-main-title {
    font-size: 6.5rem;
    font-weight: 900;
    background: linear-gradient(to right, var(--orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease-out forwards;
    text-shadow: 0 0 30px rgba(255, 94, 42, 0.3);
    -webkit-text-stroke: 1px transparent;
    filter: drop-shadow(0 0 10px rgba(255, 94, 42, 0.5)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.hero-sub-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.co-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.co-brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.co-brand-text {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 600;
    background: rgba(255, 215, 0, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.wechat-bubble {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.7s forwards;
    opacity: 0;
}

.bubble-avatar {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: contain;
    flex-shrink: 0;
}

.bubble-content {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 0 16px 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.bubble-text {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.bubble-emoji {
    font-size: 1.5rem;
    animation: bounceEmoji 2s ease-in-out infinite;
}

@keyframes bounceEmoji {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-tags {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--orange);
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 700;
    opacity: 0;
}

.tag-icon {
    font-size: 1.2rem;
}

.tag-text {
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    margin-bottom: 30px;
}

.hero-contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1s forwards;
}

.hero-phone-btn {
    color: var(--gold);
    background: transparent;
    border: 2px solid var(--gold);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-phone-btn:hover {
    background: var(--gold);
    color: var(--deep-black);
    transform: scale(1.05);
}

.hero-douyin {
    display: flex;
    align-items: center;
    gap: 10px;
}

.douyin-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.douyin-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 94, 42, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-scroll-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    z-index: 100;
    overflow: hidden;
}

.scroll-content {
    display: flex;
    gap: 40px;
    animation: scrollLeft 20s linear infinite;
}

.scroll-item {
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.student-section {
    padding: 80px 20px;
    background: transparent;
}

.student-section .section-header {
    margin-bottom: 20px;
}

.student-section .section-title {
    color: var(--white);
    font-size: 2.5rem;
}

.student-desc {
    text-align: center;
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 20px 25px;
    width: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 900;
}

.badge-red {
    background: #FF4757;
    color: var(--white);
}

.badge-gold {
    background: var(--gold);
    color: var(--deep-black);
}

.badge-king {
    background: var(--deep-black);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.card-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 0;
}

.card-highlight {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.card-price {
    margin-bottom: 0;
}

.price-current {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange);
}

.price-gold {
    color: var(--gold);
}

.price-king {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-left: 8px;
}

.card-discount {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.card-perk {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-style: italic;
}

.card-btn {
    width: 100%;
    padding: 12px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.card-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 94, 42, 0.5);
}

.btn-king {
    background: var(--gold);
    color: var(--deep-black);
}

.btn-king:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.student-tips {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-weight: 700;
    color: var(--orange);
}

.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 94, 42, 0.05) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 20px 0;
    position: relative;
}



.about-avatar {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 94, 42, 0.4);
}

.avatar-icon {
    font-size: 4rem;
}

.avatar-badge {
    background: rgba(255, 94, 42, 0.1);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.about-text {
    flex: 1;
}

.about-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-body p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-body .highlight {
    color: var(--orange);
    font-weight: 700;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: none;
    margin: 0;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(255, 94, 42, 0.08) 0%, rgba(255, 94, 42, 0.02) 100%);
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 94, 42, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 94, 42, 0.15);
    background: linear-gradient(135deg, rgba(255, 94, 42, 0.12) 0%, rgba(255, 94, 42, 0.05) 100%);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.highlight-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-invitation {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 94, 42, 0.1) 0%, rgba(255, 94, 42, 0.05) 100%);
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.about-invitation p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.about-invitation p:last-child {
    margin-bottom: 0;
    color: var(--orange);
}

.storefront-container {
    flex-shrink: 0;
    text-align: center;
}

.storefront-image {
    width: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.storefront-label {
    display: inline-block;
    margin-top: 15px;
    color: var(--orange);
    font-weight: 600;
    font-size: 1.1rem;
}

.float-douyin {
    position: fixed;
    left: 20px;
    bottom: 150px;
    z-index: 999;
    animation: floatBounce 2s ease-in-out infinite;
}

.float-douyin-img {
    width: 180px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.float-douyin-img:hover {
    transform: scale(1.05);
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.group-section {
    padding: 80px 20px;
    background: transparent;
}

.group-section .title-line {
    width: 100px;
    height: 3px;
    background: var(--orange);
    margin: 20px auto;
}

.price-table-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.price-table-left,
.price-table-right {
    flex: 1;
    min-width: 0;
}

.table-section {
    margin-bottom: 30px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-weight: 700;
    color: var(--white);
}

.label-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.label-color.orange {
    background: var(--orange);
}

.label-color.gold {
    background: var(--gold);
}

.table-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.table-row:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.row-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.row-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.row-detail {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.row-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.row-price .current {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--orange);
}

.row-price .original {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-decoration: line-through;
}

.discount {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
}

.discount.orange {
    background: rgba(255, 94, 42, 0.2);
    color: var(--orange);
}

.discount.gold {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

.table-footer {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
}

.footer-icon {
    font-size: 1.2rem;
}

.venue-section {
    padding: 80px 20px;
    background: transparent;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.venue-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid rgba(255, 94, 42, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.venue-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.venue-1 {
    background-image: url('专业器械区/微信图片_20260722141808_111_27.jpg');
}

.venue-2 {
    background-image: url('动感单车房/微信图片_20260722141954_122_27.jpg');
}

.venue-3 {
    background-image: url('专业器械区/微信图片_20260722141816_112_27.jpg');
}

.venue-4 {
    background-image: url('康养区/微信图片_20260722142005_126_27.jpg');
}

.venue-5 {
    background-image: url('房内风光/微信图片_20260721221039_90_27.jpg');
}

.venue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.venue-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.venue-icon {
    font-size: 1.5rem;
}

.venue-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 94, 42, 0.9);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    opacity: 0;
    transition: all 0.3s ease;
}

.venue-item:hover .venue-hover {
    opacity: 1;
}

.venue-item:hover .venue-img {
    transform: scale(1.1);
}

.reviews-section {
    padding: 80px 20px;
    background: transparent;
}

.reviews-section .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.reviews-section .section-title {
    font-size: 2.5rem;
}

.review-count {
    padding: 5px 15px;
    background: rgba(255, 94, 42, 0.2);
    color: var(--orange);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: var(--card-bg);
    padding: 20px 25px;
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.review-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 60px;
    align-items: center;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: center;
}

.user-name {
    font-weight: 700;
    font-size: 0.85rem;
}

.user-level {
    font-size: 0.65rem;
    color: var(--gold);
}

.review-date {
    font-size: 0.6rem;
    color: var(--text-gray);
}

.review-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-tags {
    display: flex;
    gap: 8px;
}

.review-tags span {
    padding: 3px 10px;
    background: rgba(255, 94, 42, 0.2);
    color: var(--orange);
    border-radius: 10px;
    font-size: 0.75rem;
}

.review-rating {
    color: var(--gold);
    font-size: 1rem;
}

.review-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white);
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.useful-count {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.review-summary {
    text-align: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.summary-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--deep-black);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.review-cta {
    margin-top: 20px;
    text-align: center;
}

.review-cta-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-black);
    margin-bottom: 10px;
}

.review-join-btn {
    padding: 8px 30px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-join-btn:hover {
    transform: scale(1.05);
}

.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(255, 94, 42, 0.08) 0%, rgba(255, 215, 0, 0.03) 50%, rgba(255, 94, 42, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 42, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about-avatar {
    flex-shrink: 0;
    text-align: center;
}

.avatar-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(255, 94, 42, 0.4);
}

.avatar-icon {
    font-size: 5rem;
}

.avatar-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: var(--deep-black);
    border-radius: 30px;
    font-weight: 900;
    font-size: 0.9rem;
}

.about-text {
    flex: 1;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-body .highlight {
    color: var(--orange);
    font-weight: 700;
}

.about-invitation {
    color: var(--gold) !important;
    font-weight: 700;
    font-size: 1.2rem !important;
    margin-top: 10px;
}

.values-section {
    padding: 80px 20px;
    background: transparent;
}

.coaches-section .quote {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.coaches-section .quote-author {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 94, 42, 0.15);
    border-color: rgba(255, 94, 42, 0.3);
}

.value-item:hover::before {
    opacity: 1;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 94, 42, 0.15), rgba(255, 215, 0, 0.15));
    border: 2px solid rgba(255, 94, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(145deg, rgba(255, 94, 42, 0.25), rgba(255, 215, 0, 0.25));
    border-color: var(--orange);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.value-item:hover .value-title {
    color: var(--orange);
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.value-item:hover .value-desc {
    color: rgba(255, 255, 255, 0.8);
}

.location-section {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-section {
    padding: 80px 20px;
    background: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
}

.faq-question span:last-child {
    font-size: 1rem;
    font-weight: 700;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 100px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-contact {
    text-align: center;
    padding: 20px;
    background: rgba(255, 94, 42, 0.1);
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
    color: var(--orange);
    font-weight: 700;
}

.faq-phone {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.2rem;
}

.location-section {
    padding: 80px 20px;
    background: transparent;
}

.location-content {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.map-card {
    position: relative;
    width: 450px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
}

.map-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 30px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    z-index: 10;
}

.map-btn:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 0 20px rgba(255, 94, 42, 0.5);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    font-size: 1.5rem;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.phone-link {
    color: var(--orange);
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qr-border {
    padding: 10px;
    background: linear-gradient(135deg, var(--orange), var(--gold));
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(255, 94, 42, 0.4);
}

.qr-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 15px;
}

.qr-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.about-storefront {
    margin: 0;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(255, 94, 42, 0.2);
}

.about-storefront-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    min-height: 500px;
}

.about-storefront-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-storefront-label {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.location-tip {
    text-align: center;
    padding: 15px;
    background: var(--orange);
    color: var(--white);
    border-radius: 10px;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto;
}

.cta-section {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.cta-section .section-header {
    position: relative;
    z-index: 1;
}

.cta-section .section-title {
    font-size: 3.5rem;
    background: linear-gradient(to right, var(--white), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 94, 42, 0.3);
}

.cta-section .section-desc {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-gray);
}

.cta-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    width: 250px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.cta-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 94, 42, 0.1));
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.cta-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 10px;
}

.cta-card.featured .cta-price {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cta-desc {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.cta-btn {
    width: 100%;
    padding: 12px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 94, 42, 0.5);
}

.cta-card.featured .cta-btn {
    background: var(--gold);
    color: var(--deep-black);
}

.cta-single-btn {
    width: 240px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 35px;
    font-weight: 900;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(255, 94, 42, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.cta-single-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(255, 94, 42, 0.6);
}

.footer-section {
    padding: 60px 20px 30px;
    background: transparent;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-main {
    font-size: 1.5rem;
}

.footer-logo .logo-sub {
    font-size: 0.75rem;
}

.footer-address, .footer-time {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.col-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-slogan {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--orange);
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.85rem;
}


.venue-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-modal.active {
    opacity: 1;
    visibility: visible;
}

.venue-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.venue-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.venue-modal.active .venue-modal-content {
    transform: scale(1);
}

.venue-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.venue-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.venue-modal-header {
    padding: 60px 20px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
}

.venue-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.venue-modal-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.venue-modal-body {
    max-height: calc(85vh - 140px);
    overflow-y: auto;
    padding-bottom: 70px;
}

.venue-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 10px;
}

.venue-modal-grid-item {
    position: relative;
    aspect-ratio: 9 / 16;
    cursor: pointer;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 8px;
}

.venue-modal-grid-item img,
.venue-modal-grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.venue-modal-grid-item video {
    background: #000;
}

.venue-modal-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.venue-modal-grid-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.venue-modal-grid-item:hover .venue-modal-grid-item-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.venue-modal-grid-play {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

.venue-modal-grid-item:hover .venue-modal-grid-play {
    transform: scale(1.15);
    background: rgba(255, 94, 42, 0.95);
}

.venue-modal-grid-item:hover .venue-modal-grid-play::after {
    color: white;
}

.venue-modal-grid-play::after {
    content: '▶';
    color: #000;
    font-size: 1.2rem;
    margin-left: 2px;
}

.venue-modal-grid-item-index {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    padding: 3px 8px;
    border-radius: 4px;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.venue-modal-grid-item-video-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 94, 42, 0.95);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
}

.venue-modal-tabs {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 100;
}

.venue-modal-tab {
    padding: 10px 24px;
    border-radius: 25px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.venue-modal-tab.active {
    background: rgba(255, 94, 42, 0.9);
    color: white;
}

.venue-modal-tab:hover {
    background: rgba(255, 255, 255, 0.25);
}

.venue-video-player {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.venue-video-player.active {
    opacity: 1;
    visibility: visible;
}

.venue-video-player-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-video-player-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.venue-video-player-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.venue-video-player-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.venue-modal-description {
    padding: 20px 30px 30px;
    text-align: center;
}

.venue-modal-description p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.venue-modal-image-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.venue-modal-image-preview.active {
    opacity: 1;
    visibility: visible;
}

.venue-modal-image-preview img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.venue-modal-image-preview-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 94, 42, 0.8);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.venue-modal-image-preview-close:hover {
    background: var(--orange);
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: 0 0 20px rgba(255, 94, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 94, 42, 0.8);
}

.music-player {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 9997;
}

.music-toggle {
    width: 50px;
    height: 50px;
    background: rgba(255, 94, 42, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 94, 42, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.music-toggle:hover {
    opacity: 1;
    transform: scale(1.1);
    background: rgba(255, 94, 42, 0.5);
    box-shadow: 0 0 20px rgba(255, 94, 42, 0.4);
}

.music-toggle.playing {
    opacity: 1;
    background: rgba(255, 94, 42, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.music-icon {
    font-size: 1.5rem;
    z-index: 2;
}

.music-toggle.playing .music-icon {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.music-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 94, 42, 0.5);
    opacity: 0;
    pointer-events: none;
}

.music-toggle.playing .music-wave {
    animation: wave 2s ease-out infinite;
}

.music-toggle.playing .wave1 {
    animation-delay: 0s;
}

.music-toggle.playing .wave2 {
    animation-delay: 0.6s;
}

.music-toggle.playing .wave3 {
    animation-delay: 1.2s;
}

@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
        font-size: 13px;
    }
    
    .navbar-container {
        height: 65px;
        padding: 0 12px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-contact {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo-img {
        width: 45px;
        height: 45px;
    }
    
    .hero-section {
        min-height: calc(100vh - 65px);
        padding-top: 40px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-main-title {
        font-size: 3.2rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-sub-title {
        font-size: 0.85rem;
        padding: 0 15px;
        line-height: 1.6;
        text-align: justify;
        text-align-last: center;
    }
    
    .hero-logo {
        width: 65px;
        height: 65px;
        margin: 15px 0;
    }
    
    .hero-contact-info {
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-phone-btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
    
    .hero-tags {
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: center;
        margin: 15px 0;
        overflow-x: auto;
    }
    
    .tag {
        padding: 4px 10px;
        font-size: 0.65rem;
        flex-shrink: 0;
    }
    
    .tag-icon {
        font-size: 0.9rem;
    }
    
    .tag-text {
        font-size: 0.65rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .section {
        padding: 50px 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .section-desc {
        font-size: 0.85rem;
        line-height: 1.6;
        text-align: justify;
        text-align-last: center;
        padding: 0 8px;
    }
    
    .venue-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .venue-item {
        height: 180px;
        border-width: 2px;
    }
    
    .venue-text {
        font-size: 0.95rem;
        bottom: 15px;
        left: 15px;
    }
    
    .venue-icon {
        font-size: 1.1rem;
    }
    
    .venue-hover {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .value-card {
        padding: 15px;
    }
    
    .value-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .value-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .value-desc {
        font-size: 0.75rem;
        line-height: 1.5;
        text-align: justify;
        text-align-last: left;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 8px;
    }
    
    .about-left {
        width: 100%;
        padding: 0;
    }
    
    .about-right {
        width: 100%;
        margin-top: 25px;
        padding: 0;
    }
    
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
        margin: 20px auto;
        gap: 8px;
    }
    
    .highlight-card {
        padding: 12px;
    }
    
    .avatar-circle {
        width: 90px;
        height: 90px;
    }
    
    .avatar-icon {
        font-size: 3.2rem;
    }
    
    .about-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .about-text {
        font-size: 0.85rem;
        line-height: 1.6;
        padding: 0 8px;
        text-align: justify;
        text-align-last: left;
    }
    
    .about-body p {
        text-align: justify;
        text-align-last: left;
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .highlight-desc {
        text-align: justify;
        text-align-last: left;
        font-size: 0.7rem;
        line-height: 1.5;
    }
    
    .highlight-icon {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    
    .highlight-title {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .about-invitation {
        padding: 0 8px;
        text-align: center;
    }
    
    .about-invitation p {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 6px;
        text-align: justify;
        text-align-last: center;
    }
    
    .about-storefront-img {
        min-height: 220px;
        height: 220px;
    }
    
    .pricing-cards {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }
    
    .card {
        width: 100%;
        padding: 15px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .card.featured {
        transform: none;
        margin: 0;
    }
    
    .card-title {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }
    
    .card-subtitle {
        font-size: 0.65rem;
        margin-bottom: 2px;
    }
    
    .card-highlight {
        font-size: 0.6rem;
        margin-bottom: 0;
    }
    
    .card-price {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .price-current {
        font-size: 1.3rem;
    }
    
    .price-original {
        font-size: 0.6rem;
    }
    
    .card-discount {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }
    
    .card-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        top: -15px;
    }
    
    .card-list {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .card-list li {
        font-size: 0.7rem;
        padding-left: 12px;
    }
    
    .card-btn {
        padding: 8px;
        font-size: 0.75rem;
    }
    
    .price-table-wrapper {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        overflow-x: visible;
    }
    
    .price-table-left,
    .price-table-right {
        width: 100%;
    }
    
    .price-table {
        width: 100%;
        min-width: auto;
        font-size: 0.7rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 6px 5px;
        white-space: nowrap;
    }
    
    .table-row {
        padding: 12px;
    }
    
    .row-name {
        font-size: 0.75rem;
    }
    
    .row-detail {
        font-size: 0.6rem;
    }
    
    .row-price .current {
        font-size: 0.9rem;
    }
    
    .row-price .original {
        font-size: 0.6rem;
    }
    
    .discount {
        font-size: 0.55rem;
        padding: 2px 6px;
    }
    
    .student-section {
        padding: 50px 12px;
    }
    
    .student-section .section-title {
        font-size: 1.8rem;
    }
    
    .student-desc {
        font-size: 0.8rem;
        padding: 0 8px;
        text-align: justify;
        text-align-last: center;
        margin-bottom: 15px;
    }
    
    .student-cards {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .student-card {
        width: calc(50% - 5px);
        max-width: none;
        padding: 14px;
        min-width: 130px;
    }
    
    .student-card h3 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .student-card p {
        font-size: 0.7rem;
        margin-bottom: 8px;
        line-height: 1.5;
        text-align: justify;
        text-align-last: left;
    }
    
    .student-card .price {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .student-card-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .student-tips {
        font-size: 0.75rem;
        padding: 0 8px;
        text-align: justify;
        text-align-last: center;
        margin-top: 15px;
    }
    
    .reviews-section {
        padding: 50px 12px;
    }
    
    .reviews-section .section-title {
        font-size: 1.2rem;
    }
    
    .review-summary {
        padding: 12px 15px;
        margin-bottom: 15px;
        background: linear-gradient(135deg, var(--orange), var(--gold));
        border-radius: 12px;
    }
    
    .summary-stats {
        gap: 12px;
        justify-content: center;
    }
    
    .stat-item {
        font-size: 0.75rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .reviews-container {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }
    
    .review-card {
        width: 100%;
        padding: 12px 15px;
        flex-direction: row;
        gap: 10px;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .user-name {
        font-size: 0.75rem;
    }
    
    .user-level, .review-date {
        font-size: 0.55rem;
    }
    
    .review-tags span {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    
    .review-rating {
        font-size: 0.8rem;
    }
    
    .review-content {
        font-size: 0.7rem;
        line-height: 1.5;
        margin: 0;
        text-align: justify;
        text-align-last: left;
    }
    
    .useful-count {
        font-size: 0.6rem;
    }
    
    .review-cta-text {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--deep-black);
        margin-bottom: 10px;
        padding: 0;
        background: none;
        border-radius: 0;
        border: none;
        display: block;
    }
    
    .review-join-btn {
        padding: 8px 25px;
        font-size: 0.8rem;
        background: var(--orange);
        color: var(--white);
    }
    
    .faq-section {
        padding: 50px 12px;
    }
    
    .faq-section .section-title {
        font-size: 1.8rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .faq-card {
        padding: 14px;
    }
    
    .faq-question {
        font-size: 0.85rem;
        padding: 10px 0;
    }
    
    .faq-answer {
        font-size: 0.75rem;
        line-height: 1.6;
        text-align: justify;
        text-align-last: left;
    }
    
    .faq-icon {
        font-size: 0.8rem;
        width: 24px;
        height: 24px;
    }
    
    .cta-section {
        padding: 50px 12px;
    }
    
    .cta-section .section-title {
        font-size: 1.8rem;
    }
    
    .cta-section .section-desc {
        font-size: 0.85rem;
        padding: 0 8px;
        text-align: justify;
        text-align-last: center;
    }
    
    .cta-single-btn {
        padding: 12px 35px;
        font-size: 1rem;
    }
    
    .location-section {
        padding: 50px 12px;
    }
    
    .location-section .section-title {
        font-size: 1.8rem;
    }
    
    .location-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .map-card {
        width: 100%;
        max-width: 400px;
        height: 280px;
    }
    
    .location-card {
        width: 100%;
        max-width: 380px;
        padding: 20px;
    }
    
    .qr-img {
        width: 110px;
        height: 110px;
    }
    
    .footer-section {
        padding: 40px 12px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .footer-col {
        margin-bottom: 0;
    }
    
    .footer-links {
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-address, .footer-time {
        font-size: 0.85rem;
    }
    
    .float-douyin-img {
        width: 110px;
    }
    
    .float-douyin {
        left: 8px;
        bottom: 110px;
    }
    
    .venue-modal-content {
        width: 95%;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 16px;
    }
    
    .venue-modal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
        padding: 8px;
    }
    
    .venue-modal-grid-item {
        aspect-ratio: 9 / 16;
        border-radius: 6px;
    }
    
    .venue-modal-header {
        padding: 50px 15px 15px;
    }
    
    .venue-modal-title {
        font-size: 1.3rem;
    }
    
    .venue-modal-description {
        font-size: 0.8rem;
        text-align: justify;
        text-align-last: left;
    }
    
    .venue-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        top: 12px;
        right: 12px;
    }
    
    .venue-modal-body {
        max-height: calc(90vh - 130px);
        padding-bottom: 65px;
    }
    
    .venue-modal-tab {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
    
    .venue-modal-grid-play {
        width: 42px;
        height: 42px;
    }
    
    .venue-modal-grid-item-video-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .venue-modal-grid-item-index {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .venue-video-player-video {
        width: 100%;
        height: 100%;
    }
    
    .venue-video-player-close {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
        top: 18px;
        right: 18px;
    }
    
    .back-to-top-btn {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .group-section,
    .about-section,
    .venue-section,
    .values-section,
    .reviews-section,
    .faq-section {
        padding: 70px 15px;
    }
    
    .group-section .section-title,
    .venue-section .section-title,
    .values-section .section-title,
    .reviews-section .section-title,
    .faq-section .section-title {
        font-size: 2.2rem;
    }
    
    .price-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .price-table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 8px;
        white-space: nowrap;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .value-item {
        padding: 18px;
    }
    
    .value-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .value-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .value-desc {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .faq-card {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 12px 0;
    }
    
    .faq-answer {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .faq-icon {
        font-size: 0.9rem;
        width: 28px;
        height: 28px;
    }
    
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .highlight-card {
        padding: 15px;
    }
    
    .highlight-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .highlight-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .highlight-desc {
        font-size: 0.7rem;
        line-height: 1.5;
    }
    
    .about-invitation {
        padding: 0 10px;
        text-align: center;
    }
    
    .about-invitation p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    .student-desc {
        font-size: 0.85rem;
        padding: 0 10px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .student-tips {
        font-size: 0.8rem;
        padding: 0 10px;
        text-align: center;
        margin-top: 20px;
    }
    
    .group-section .section-desc {
        padding: 0 10px;
        text-align: center;
    }
    
    .reviews-section .section-desc {
        padding: 0 10px;
        text-align: center;
    }
    
    .faq-section .section-desc {
        padding: 0 10px;
        text-align: center;
    }
    
    .location-section .section-desc {
        padding: 0 10px;
        text-align: center;
    }
    
    .review-summary {
        padding: 0 10px;
    }
    
    .summary-stats {
        gap: 15px;
        justify-content: center;
    }
    
    .stat-item {
        font-size: 0.85rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .nav-links-mobile {
        top: 65px;
    }
    
    .nav-links-mobile li {
        padding: 12px 18px;
    }
    
    .nav-links-mobile a {
        font-size: 0.9rem;
    }
    
}