.athletes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px;
}

.athlete-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
}

.athlete-card:hover {
    transform: translateY(-5px);
}

/* Variantes de cor para o athlete-card */
.athlete-card--blue {
    background: rgba(0, 123, 255, 0.02);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.athlete-card--blue .info-item .value,
.athlete-card--blue .athlete-name {
    color: #0056b3;
}

.athlete-card--blue .unite-combat-btn {
    border-color: #0056b3;
    color: #0056b3;
}

.athlete-card--blue .unite-combat-btn:hover {
    background: #0056b3;
    color: #fff;
}

.athlete-card--red {
    background: rgba(220, 53, 69, 0.02);
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.athlete-card--red .info-item .value,
.athlete-card--red .athlete-name {
    color: #dc3545;
}

.athlete-card--red .unite-combat-btn {
    border-color: #dc3545;
    color: #dc3545;
}

.athlete-card--red .unite-combat-btn:hover {
    background: #dc3545;
    color: #fff;
}

.athlete-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.athlete-inner {
    position: relative;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.athlete-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #eee;
    width: 100%;
    padding-bottom: 16px;
}

.athlete-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.athlete-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.athlete-name {
    font-size: 1.1em;
    font-weight: 600;
}

.club-identifier {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none !important;
}

.club-logo {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

.club-letter {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 600;
    color: #666;
}

.athlete-body {
    flex-grow: 1;
    width: 100%;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    line-height: 1em;
}

.info-item .label {
    display: block;
    font-size: 0.8em;
    text-transform: uppercase;
    opacity: 0.8;
    line-height: 1em;
}

.info-item .value {
    display: block;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
}

.athlete-footer {
    text-align: center;
    width: 100%;
}

.unite-combat-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #333;
    color: #333;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 100px;
}

.unite-combat-btn:hover {
    background: #333;
    color: #ffff;
}

.athlete-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.athlete-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.athlete-info {
    padding: 0 15px 15px;
    text-align: center;
    color: #666;
}

.athletes-pagination {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.athletes-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.athletes-pagination .current {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.athletes-pagination a:hover {
    background-color: #f8f9fa;
}

.load-more-container {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.load-more-athletes {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.load-more-athletes:hover {
    background-color: #0056b3;
}

.reference-athlete-info {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(8,8,8,0.9);
    border-radius: 100px;
    padding: 8px 8px;
    z-index: 1000;
}

@media screen and (max-width: 768px) {
    .reference-athlete-info {
        width: calc(100% - 2em);
    }
    
}

.reference-athlete-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reference-athlete-photo {
    display: flex;
}

.reference-athlete-photo img {
    border-radius: 100px !important;
    overflow: hidden;
    width: 48px !important;
    height: 48px !important;
    object-fit: cover;
}

.reference-athlete-details {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding-right: 16px;
    text-align: left;
}

h3.reference-athlete-name {
    font-size: 1em;
    color: #fff;
    margin: 0;
}

.reference-athlete-category {
    margin: 0;
    font-size: 0.9em;
    color: #b4b4b4;
}

.initial-message {
    text-align: center;
    padding: 50px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.initial-message p {
    font-size: 1.2em;
    color: #666;
    margin: 0;
}

.no-results-message {
    text-align: center;
    padding: 50px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.no-results-message i {
    font-size: 2.5em;
    color: #666;
    margin-bottom: 10px;
}

.no-results-message p {
    font-size: 1.2em;
    color: #666;
    margin: 0;
}

/* Estilos do Combat Overview */
#combat-overview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#combat-overview .combat-overview--blue,
#combat-overview .combat-overview--red {
    flex: 1;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#combat-overview .combat-overview--blue {
    background: rgba(0, 123, 255, 0.05);
    border: 2px solid rgba(0, 123, 255, 0.2);
}

#combat-overview .combat-overview--red {
    background: rgba(220, 53, 69, 0.05);
    border: 2px solid rgba(220, 53, 69, 0.2);
}

#combat-overview .athlete-photo {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    border-radius: 50%;
    overflow: hidden;
}

#combat-overview .athlete-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#combat-overview .athlete-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 8px;
    color: #191919;
}

#combat-overview .athlete-category {
    font-size: 1em;
    color: #666;
}

#combat-overview .versus-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #000;
    border-radius: 100px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    #combat-overview {
        flex-direction: column;
    }
    
    #combat-overview .combat-overview--blue,
    #combat-overview .combat-overview--red {
        max-width: 100%;
    }
    
    #combat-overview .versus-text {
        transform: rotate(90deg);
    }
}
