

/* 首页英雄区域 */
.hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: var(--purple-gradient);
    position: relative;
    overflow: hidden;
}

.hero-tag {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-color);
    max-width: 1000px;
}

.hero-title .highlight {
    color: var(--primary-light);
}

.hero-description {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 10;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.cta-button {
    padding: 14px 42px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), #5a1eae);
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(54, 10, 125, 0.2);
    position: relative;
    z-index: 10;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(54, 10, 125, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.scroll-down:hover {
    color: var(--primary-color);
    transform: translate(-50%, -5px);
}

.scroll-down i {
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.shape {
    position: absolute;
    opacity: 0.3;
    z-index: 0;
}

.shape-1 {
    top: 20%;
    left: 10%;
    font-size: 40px;
    color: #8b5cf6;
    transform: rotate(-15deg);
    animation: float 6s infinite ease-in-out;
}

.shape-2 {
    bottom: 15%;
    right: 10%;
    font-size: 32px;
    color: #6366f1;
    animation: float 8s infinite ease-in-out;
}

.shape-3 {
    top: 30%;
    right: 20%;
    font-size: 36px;
    color: #a855f7;
    transform: rotate(10deg);
    animation: float 7s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}