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

html {
    scroll-padding-top: 80px
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    background: rgba(45, 45, 45, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0
}

.navbar .max-w-7xl {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nav-link {
    color: #F8F9FA;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative
}

.nav-link:hover {
    color: #FFD700
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: all 0.3s ease;
    transform: translateX(-50%)
}

.nav-link:hover::after {
    width: 80%
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.8) 0%, rgba(76, 175, 80, 0.6) 100%)
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 2rem
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5)
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9
}

.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(123, 104, 238, 0.1)
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(123, 104, 238, 0.3)
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #7B68EE 0%, #9B59B6 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 2px solid #7B68EE;
    box-shadow: 0 4px 15px rgba(123, 104, 238, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(123, 104, 238, 0.6)
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 2px solid #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6)
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2D2D2D;
    position: relative
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7B68EE 0%, #4CAF50 100%);
    margin: 1rem auto 0;
    border-radius: 2px
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #7B68EE
}

.footer {
    background: #2D2D2D;
    color: #F8F9FA;
    padding: 3rem 0;
    margin-top: auto
}

.footer-link {
    color: #F8F9FA;
    text-decoration: none;
    transition: color 0.3s ease
}

.footer-link:hover {
    color: #FFD700
}

.qr-code {
    width: 150px;
    height: 150px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #F8F9FA;
    font-size: 1.5rem;
    cursor: pointer
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(45, 45, 45, 0.98);
        flex-direction: column;
        padding: 1rem 0
    }

    .nav-menu.active {
        display: flex
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block
    }

    .qr-code {
        width: 120px;
        height: 120px
    }

    .hero-section {
        padding-top: 60px
    }
}