/*
Theme Name: ReiDoRetorno Theme
Author: Besourin
Version: 1.0
*/

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    background: #0b0b0b;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    height: 100%;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.champion-selection {
    text-align: center;
    margin: 30px auto;
    background: rgba(15, 15, 15, 0.92);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #870000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.45);
}

.champion-selection h2 {
    font-size: 24px;
    color: #870000;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.champion-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.champion-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .2s ease;
    object-fit: cover;
}

.champion-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.45);
    border-color: #caa14a;
}

.champion-icon.is-active {
    border-color: #caa14a;
    box-shadow: 0 0 14px rgba(255, 215, 0, 0.65);
    transform: scale(1.08);
}

#champion-info {
    max-width: 900px;
    margin: 40px auto 0;
    background: rgba(20, 20, 20, 0.94);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #870000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.45);
    display: none;
}

#champion-name {
    text-align: center;
    font-size: 30px;
    color: #870000;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#champion-image {
    width: 220px;
    max-width: 100%;
    display: block;
    margin: 0 auto 24px;
    border-radius: 10px;
    object-fit: cover;
}

.section-title {
    font-size: 20px;
    color: #870000;
    margin: 28px 0 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.spells,
.build {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.spells img,
.build img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

#champion-matchup {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 16px;
    color: #f3f3f3;
}

#champion-matchup p {
    margin: 0 0 12px;
}

.champion-selector {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.champion-selector img {
    width: 64px;
    cursor: pointer;
}

section {
    margin-top: 120px;
    padding: 40px;
    border-top: 1px solid #eee;
}

.champion-image {
    width: 200px;
    margin-bottom: 20px;
}

.spells {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.spells img {
    width: 48px;
}

.garen-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.garen-banner img {
    width: 100%;
    object-fit: contain;
    display: block;
}