/* 突破页面特定样式 */
.breakthrough-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.breakthrough-section {
    background: #1a1b26;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #2a2a35;
}

.breakthrough-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a35;
}

.breakthrough-title {
    font-size: 18px;
    font-weight: bold;
    color: #e0e0e0;
    display: flex;
    align-items: center;
}

.breakthrough-title i {
    margin-right: 10px;
    color: #9b59b6;
}

.cultivation-path {
    padding: 30px 0;
    position: relative;
}

.path-line {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    height: 4px;
    background: #333340;
    z-index: 1;
}

.path-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(to right, #3498db, #9b59b6);
    border-radius: 2px;
}

.realm-stages {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.realm-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.stage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #22222d;
    border: 3px solid #2a2a35;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    color: #aaa;
    font-size: 24px;
}

.stage-icon.completed {
    background: #3498db;
    border-color: #2980b9;
    color: #fff;
}

.stage-icon.current {
    background: #9b59b6;
    border-color: #8e44ad;
    color: #fff;
    animation: pulse-purple 1.5s infinite;
}

@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(155, 89, 182, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(155, 89, 182, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(155, 89, 182, 0);
    }
}

.stage-name {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #aaa;
}

.stage-name.completed {
    color: #3498db;
}

.stage-name.current {
    color: #9b59b6;
}

.stage-description {
    font-size: 12px;
    color: #777;
    text-align: center;
    margin-top: 5px;
}

.current-realm {
    background: #22222d;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    border: 1px solid #2a2a35;
}

.realm-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.realm-icon {
    width: 60px;
    height: 60px;
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
}

.realm-info {
    flex-grow: 1;
}

.realm-name {
    font-size: 18px;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.realm-progress {
    font-size: 14px;
    color: #aaa;
}

.progress-bar {
    height: 8px;
    background: #333340;
    border-radius: 4px;
    margin: 10px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 35%;
    background: linear-gradient(to right, #3498db, #9b59b6);
    border-radius: 4px;
}

.realm-description {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    margin-top: 15px;
}

.breakthrough-requirements {
    background: #22222d;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #2a2a35;
}

.requirements-title {
    font-size: 16px;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.requirements-title i {
    margin-right: 10px;
    color: #e74c3c;
}

.requirement-list {
    margin-bottom: 20px;
}

.requirement-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #2a2a35;
}

.requirement-item:last-child {
    border-bottom: none;
}

.requirement-name {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #e0e0e0;
}

.requirement-name i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.requirement-status {
    font-size: 14px;
    font-weight: bold;
}

.status-complete {
    color: #2ecc71;
}

.status-incomplete {
    color: #e74c3c;
}

.breakthrough-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.breakthrough-btn {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.breakthrough-btn:hover {
    background: linear-gradient(135deg, #8e44ad, #6c3483);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.breakthrough-btn i {
    margin-right: 8px;
}

.breakthrough-btn.disabled {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.breakthrough-status {
    font-size: 14px;
    color: #aaa;
    text-align: center;
    margin-top: 15px;
}

.breakthrough-risks {
    margin-top: 20px;
}

.risks-title {
    font-size: 16px;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.risks-title i {
    margin-right: 10px;
    color: #f39c12;
}

.risk-description {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 15px;
}

.risk-level {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.risk-label {
    font-size: 14px;
    color: #e0e0e0;
    margin-right: 15px;
    width: 80px;
}

.risk-indicators {
    display: flex;
}

.risk-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #333340;
    margin-right: 5px;
}

.risk-indicator.active {
    background: #f39c12;
}

.breakthrough-benefits {
    margin-top: 30px;
}

.benefits-title {
    font-size: 16px;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.benefits-title i {
    margin-right: 10px;
    color: #2ecc71;
}

.benefit-list {
    background: rgba(46, 204, 113, 0.1);
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #2ecc7133;
}

.benefit-item {
    padding: 8px 0;
    font-size: 14px;
    color: #e0e0e0;
    border-bottom: 1px dashed rgba(46, 204, 113, 0.2);
    display: flex;
    align-items: center;
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item i {
    color: #2ecc71;
    margin-right: 10px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .breakthrough-container {
        grid-template-columns: 1fr;
    }
    
    .realm-stages {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .path-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .realm-header {
        flex-direction: column;
        text-align: center;
    }
    
    .realm-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .risk-level {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .risk-label {
        margin-bottom: 10px;
    }
} 