﻿/* 英雄区域视频背景 */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* 添加额外的暗色遮罩 */
.hero-video-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    z-index: 1;
    overflow: hidden;
    background: none;
}

.hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.xiaogequ.com/static/images/hero-bg.jpg') no-repeat center center/cover;
    z-index: -1;
    display: none;
}

@media (max-width: 768px) {
    .hero-video-bg video {
        display: none;
    }
    .hero-fallback-bg {
        display: block;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
}

.btn-hero {
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.5);
    color: white;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-5px);
}


/* 特色区样式 */
.features-section {
    background-color: var(--light-color);
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.features-container {
    margin-top: 60px;
}

.feature-box {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    z-index: -1;
}

.feature-box:hover:before {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.feature-box:hover .feature-icon, 
.feature-box:hover .feature-title, 
.feature-box:hover .feature-text {
    color: white;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-text {
    color: var(--text-light);
    transition: var(--transition);
}

/* 数据统计区域 */
.stats-section {
    background: linear-gradient(45deg, var(--dark-color), #2a2a2a);
    padding: 100px 0;
    color: white;
}

.stat-box {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 艺人展示区域 */
.artists-section {
    padding: 120px 0;
    background-color: var(--dark-color);
    color: white;
}

.artist-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

.artist-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    transform: translateY(100px);
    transition: var(--transition);
}

.artist-card:hover .artist-overlay {
    transform: translateY(0);
}

.artist-card:hover .artist-image {
    transform: scale(1.1);
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.artist-genre {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* 最新发布区域 */
.releases-section {
    padding: 120px 0;
    background-color: var(--light-color);
}

.release-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.release-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.release-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.release-content {
    padding: 20px;
}

.release-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.release-artist {
    color: var(--text-light);
    margin-bottom: 15px;
}

.release-date {
    font-size: 0.9rem;
    color: var(--primary-color);
}


/* 平台优势区域 */
.platform-section {
    padding: 120px 0;
    background-color: var(--light-color);
}

.platform-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.platform-icon {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 3rem;
}

.platform-content {
    padding: 30px;
}

.platform-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-features li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.platform-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* 创作者类型区域 */
.creator-types-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* 英雄区域内的创作者类型 */
.hero-creator-types {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
}

.hero-creator-types .creator-type-card {
    background-color: rgba(47, 47, 47, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.67);
    transition: all 0.3s ease;
    border: 1px solid rgb(255, 255, 255);
}

.hero-creator-types .creator-type-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

.hero-creator-types .creator-type-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.hero-creator-types .creator-type-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hero-creator-types .creator-type-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 15px 0;
}

.hero-creator-types .creator-type-benefits {
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}



.hero-creator-types .creator-type-button-container {
    text-align: left;
}

.hero-creator-types .creator-type-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-creator-types .creator-type-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.creator-type-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}