/* 表演体系专用样式 - 深色主题 */
.main-content {
    background-color: #1a1a1a;
    color: #ffffff;
}

.container-section {
    padding: 2rem;
    background: rgba(40, 40, 40, 0.95);
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.img-text-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}

.img-text-container img {
    width: 40%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.text-content {
    flex: 1;
}

.reverse {
    flex-direction: row-reverse;
}

.four-skills {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.skill {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
}

.skill:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.container-section h1, 
.container-section h2, 
.container-section h3 {
    color: #D4AF37;
}

.container-section ul {
    list-style: none;
    padding-left: 0;
}

.container-section ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.container-section ul li::before {
    content: "•";
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.container-section ul li strong {
    color: #66B2B2;
}

.overview-image {
    text-align: center;
    margin: 2rem 0 4rem;
}

.banner-image {
    width: 80%;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.image-caption {
    margin-top: 1rem;
    color: #66B2B2;
    font-size: 1.2em;
    font-style: italic;
}

@media (max-width: 768px) {
    .img-text-container {
        flex-direction: column;
    }
    
    .img-text-container img {
        width: 100%;
        max-width: 500px;
    }
    
    .reverse {
        flex-direction: column;
    }
    
    .four-skills {
        grid-template-columns: 1fr;
    }
    
    .banner-image {
        width: 100%;
    }
}

/* 主容器样式 */
.performance-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

/* 行当分类样式 */
.role-types {
    margin-bottom: 60px;
}

.role-types h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.role-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
}

.role-detail.reverse {
    flex-direction: row-reverse;
}

.role-image {
    flex: 0 0 40%;
}

.role-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.role-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.role-info h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.role-description ul {
    list-style: none;
    padding: 0;
}

.role-description li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.1rem;
    padding-left: 20px;
    position: relative;
}

.role-description li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
}

.role-description strong {
    color: #ffffff;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .role-detail, .role-detail.reverse {
        flex-direction: column;
        gap: 25px;
    }

    .role-image {
        flex: none;
    }

    .role-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .role-detail {
        padding: 20px;
    }

    .role-info h3 {
        font-size: 1.6rem;
    }

    .role-description li {
        font-size: 1rem;
    }
}

/* 基本功法样式 */
.basic-skills {
    margin-top: 80px;
}

.basic-skills h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
}

.skills-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.skills-group {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
}

.skills-group h3 {
    font-size: 1.8rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.skill-item {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.skill-item h4 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.skill-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .role-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skills-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .performance-container {
        padding: 20px;
    }

    .role-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .role-card img {
        height: 180px;
    }
}

/* 添加行当总体介绍样式 */
.role-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.role-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.role-description .role-intro {
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
}

.role-description .role-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .role-intro p {
        font-size: 1rem;
    }
    
    .role-description .role-intro p {
        font-size: 0.95rem;
    }
}

/* 添加视频样式 */
.video-section {
    margin: 40px 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.video-description {
    text-align: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9比例 */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* 调整视频位置间距 */
.skills-group .video-section {
    margin: -10px 0 25px 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .video-section {
        margin: 30px 0;
        padding: 15px;
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
    .skills-group .video-section {
        margin: 0 0 20px 0;
    }
}

/* 修改角色体验入口样式 */
.role-experience {
    background: linear-gradient(45deg, #2d2d2d, #1a1a1a);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #D4AF37;
}

.role-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/role-bg-pattern.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.role-experience-content {
    position: relative;
    z-index: 1;
}

.role-experience h3 {
    color: #D4AF37;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.role-experience p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.start-experience-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #D4AF37;
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.start-experience-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: #e5c04c;
}

/* 删除不需要的样式 */
.character-preview,
.character-icon {
    display: none;
} 