.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 1.25rem;
    max-width: 50rem;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: var(--heading-large);
    margin-bottom: 1.25rem;
    font-weight: bold;
    text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: var(--text-regular);
    line-height: 1.6;
    text-shadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.5);
}

.hero-indicators {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.625rem;
    z-index: 2;
}

.hero-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-indicator.active {
    background-color: white;
}

.hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0.9375rem 1.25rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.hero-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 1.25rem;
}

.next-btn {
    right: 1.25rem;
}

/* 响应式布局 */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 37.5rem;
        padding: 0 var(--container-padding);
    }
}

@media (max-width: 767px) {
    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: var(--heading-medium);
        margin-bottom: 0.9375rem;
    }

    .hero-content p {
        font-size: var(--text-small);
    }

    .hero-indicator {
        width: 0.5rem;
        height: 0.5rem;
    }
}

/* 适配超大屏幕 */
@media (min-width: 1441px) {
    .hero-content {
        max-width: 62.5rem;
    }

    .hero-content h1 {
        font-size: calc(var(--heading-large) * 1.2);
    }

    .hero-content p {
        font-size: calc(var(--text-regular) * 1.2);
    }
}
