.music-hero {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.music-hero-content {
    max-width: 900px;
    padding: 0 40px;
    z-index: 1;
}

.music-hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1.2;
}

.music-hero p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* 理念区块 */
.philosophy-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.philosophy-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.philosophy-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.philosophy-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* 内容区块 */
.content-section {
    background: #f9f9f9;
    padding: 100px 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* 音乐推荐卡片 */
.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.music-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.music-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.music-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.music-card:hover .music-card-image img {
    transform: scale(1.1);
}

.music-card-content {
    padding: 30px;
}

.music-card-category {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.music-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.music-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* 故事区块 */
.story-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.story-grid:nth-child(even) {
    direction: rtl;
}

.story-grid:nth-child(even) > * {
    direction: ltr;
}

.story-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.story-content {
    padding: 20px 0;
}

.story-label {
    display: inline-block;
    background: #333;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .philosophy-grid,
    .music-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .music-hero h1 {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .music-hero {
        min-height: 500px;
    }
    
    .music-hero h1 {
        font-size: 38px;
    }
    
    .music-hero p {
        font-size: 16px;
    }
    
    .philosophy-section,
    .story-section {
        margin: 80px auto;
        padding: 0 20px;
    }
    
    .philosophy-grid,
    .music-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-grid:nth-child(even) {
        direction: ltr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .story-title {
        font-size: 28px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
}

/* 体验官招募表单区域 */
.experience-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.experience-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.form-content {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.lifestyle-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.lifestyle-form .form-group {
    margin-bottom: 25px;
}

.lifestyle-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.lifestyle-form input,
.lifestyle-form textarea,
.lifestyle-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.lifestyle-form input:focus,
.lifestyle-form textarea:focus,
.lifestyle-form select:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.lifestyle-form textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin: 30px 0 !important;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-notice {
    margin-top: 30px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fff5f0 0%, #fff8f5 100%);
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
}

.form-notice h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-notice h4::before {
    content: '✨';
    font-size: 18px;
}

.form-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-notice li {
    padding: 10px 0 10px 28px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    position: relative;
}

.form-notice li::before {
    content: '✓';
    position: absolute;
    left: 8px;
    color: #ff6b35;
    font-weight: bold;
    font-size: 16px;
}

/* 验证码样式 */
.captcha-group {
    margin: 30px 0 !important;
}

.captcha-container {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 10px;
}

.captcha-question {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.captcha-math {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0 8px;
    font-family: 'Courier New', monospace;
}

.captcha-input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.captcha-input-container input {
    flex: 1;
    margin: 0;
}

.refresh-captcha {
    padding: 12px 16px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 60px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.refresh-captcha:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.refresh-captcha:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

.captcha-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .experience-form-section {
        padding: 60px 0;
    }
    
    .experience-form-container {
        padding: 0 20px;
    }
    
    .form-header h2 {
        font-size: 32px;
    }
    
    .form-header p {
        font-size: 16px;
    }
    
    .form-content {
        padding: 30px 20px;
    }
    
    .lifestyle-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-notice {
        padding: 20px;
    }
    
    .form-notice li {
        font-size: 13px;
    }
    
    .captcha-container {
        padding: 15px;
    }
    
    .captcha-question {
        font-size: 14px;
    }
    
    .captcha-math {
        font-size: 18px;
    }
    
    .captcha-input-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .captcha-input-container input {
        width: 100%;
    }
    
    .refresh-captcha {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
    }
}
