/* 云顶之弈主题页面样式 */
body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.tft-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.composition-section, .hexcore-section {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

.composition-item, .hexcore-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.composition-item:hover, .hexcore-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.composition-name, .hexcore-name {
    font-weight: bold;
    font-size: 1.2em;
    color: #4caf50;
    margin-bottom: 10px;
}

.composition-description, .hexcore-description {
    margin-bottom: 10px;
    line-height: 1.5;
}

.composition-stats, .hexcore-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9em;
    color: #bbb;
}

.champions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.champion {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid gold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8em;
}

.synergies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.synergy {
    background: rgba(76, 175, 80, 0.3);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8em;
}

.active {
    border: 2px solid #4caf50;
    background: rgba(76, 175, 80, 0.3) !important;
}

@media (max-width: 768px) {
    .tft-content {
        flex-direction: column;
    }
    
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2em;
    }
}