/* Aatrox Champion Display Styles */
.aatrox-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.aatrox-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    margin: 20px 0;
}

/* Basic Info Styles */
.aatrox-basic-info {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.aatrox-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.champion-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #e74c3c;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.champion-info {
    flex: 1;
}

.aatrox-title {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #e74c3c;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.champion-title {
    font-size: 1.2em;
    color: #f39c12;
    margin: 0;
    font-style: italic;
}

.aatrox-lore {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.aatrox-lore h3 {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.aatrox-lore p {
    line-height: 1.6;
    font-size: 1.1em;
}

.aatrox-tags {
    text-align: center;
}

.aatrox-tags h3 {
    color: #f39c12;
    margin-bottom: 10px;
}

.tag {
    background-color: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
}

/* Skills Styles */
.aatrox-skills {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.aatrox-skills h3 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
}

.skill {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.skill:hover {
    transform: translateY(-2px);
}

.skill.passive {
    border-left-color: #f39c12;
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.skill-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    border: 2px solid #e74c3c;
    object-fit: cover;
}

.skill.passive .skill-icon {
    border-color: #f39c12;
}

.skill h4 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.3em;
    flex: 1;
}

.skill p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.skill-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.skill-stats span {
    background: #ecf0f1;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
    color: #2c3e50;
}

/* Skins Styles */
.aatrox-skins {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.aatrox-skins h3 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
}

.skins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.skin-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.skin-item:hover {
    transform: translateY(-5px);
}

.skin-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.skin-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.skin-item:hover .skin-image {
    transform: scale(1.1);
}

.skin-info {
    padding: 15px;
    text-align: center;
}

.skin-info h4 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.chromas-badge {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8em;
}

/* Stats Styles */
.aatrox-stats {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.aatrox-stats h3 {
    color: #2c3e50;
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.stat-group {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-group h4 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 1.3em;
    text-align: center;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item span:first-child {
    color: #2c3e50;
    font-weight: bold;
}

.stat-item span:last-child {
    color: #555;
}

/* Difficulty Bars */
.difficulty-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.difficulty-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.difficulty-bar span:first-child {
    min-width: 80px;
    color: #2c3e50;
    font-weight: bold;
    font-size: 0.9em;
}

.bars {
    display: flex;
    gap: 2px;
}

.bar {
    width: 15px;
    height: 8px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.bar.filled {
    background-color: #e74c3c;
}

.bar.empty {
    background-color: #ecf0f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .aatrox-container {
        padding: 15px;
    }
    
    .aatrox-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .champion-image {
        width: 100px;
        height: 100px;
    }
    
    .aatrox-title {
        font-size: 2em;
    }
    
    .skill-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .skill-icon {
        width: 40px;
        height: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .skins-grid {
        grid-template-columns: 1fr;
    }
    
    .skin-image-container {
        height: 150px;
    }
    
    .skill-stats {
        flex-direction: column;
    }
    
    .difficulty-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aatrox-container > * {
    animation: fadeIn 0.6s ease-out;
}

.skill:nth-child(1) { animation-delay: 0.1s; }
.skill:nth-child(2) { animation-delay: 0.2s; }
.skill:nth-child(3) { animation-delay: 0.3s; }
.skill:nth-child(4) { animation-delay: 0.4s; }
.skill:nth-child(5) { animation-delay: 0.5s; }