/* Modern Champions Section Styling */

.campeones-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.campeones-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.campeones-scroll {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 0;
    scroll-behavior: smooth;
    /* Removed scrollbar-width: thin; */
    /* Removed scrollbar-color: var(--gracie-red) #f1f1f1; */
}

.campeones-scroll::-webkit-scrollbar {
    height: 8px;
}

.campeones-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.campeones-scroll::-webkit-scrollbar-thumb {
    background: var(--gracie-red);
    border-radius: 10px;
}

.campeon-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.campeon-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.campeon-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
}

.campeon-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.campeon-card:hover .campeon-image img {
    transform: scale(1.1);
}

.campeon-info {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: white;
}

.campeon-info h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
    transition: color 0.3s ease;
}

.campeon-card:hover .campeon-info h3 {
    color: var(--gracie-red);
}

.campeon-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
}

/* Belt visualization */
.campeon-belt {
    height: 12px;
    width: 100%;
    background: #fff;
    position: relative;
    margin-top: 15px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.belt-color {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/* Belt colors */
.white-belt .belt-color {
    background-color: white;
    border: 1px solid #ddd;
}

.blue-belt .belt-color {
    background-color: #2d8cff;
}

.purple-belt .belt-color {
    background-color: #8a2be2;
}

.brown-belt .belt-color {
    background-color: #8b4513;
}

.black-belt .belt-color {
    background-color: #000;
}

/* Belt stripes */
.belt-stripes {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    width: 20%;
    left: 70%;
    padding-right: 4px;
    z-index: 2;
}

.stripe {
    width: 3px;
    height: 100%;
    background-color: white;
    border-radius: 0px;
    position: relative;
    z-index: 2;
}

/* Stripes background for non-black belts */
.white-belt .belt-stripes::before,
.blue-belt .belt-stripes::before,
.purple-belt .belt-stripes::before,
.brown-belt .belt-stripes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    z-index: 1;
}

/* Professor red bar for black belts */
.black-belt .belt-stripes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--gracie-red);
    z-index: 1;
}

/* Campeon details overlay */
.campeon-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.campeon-card:hover .campeon-details {
    opacity: 1;
    pointer-events: auto;
}

.campeon-details h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.campeon-details h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gracie-red);
}

.campeon-details p {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.achievements {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 80%;
}

.campeon-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.campeon-social a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.campeon-social a:hover {
    color: var(--gracie-red);
}

/* Scroll navigation buttons */
.scroll-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.scroll-btn {
    background: var(--gracie-red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.scroll-btn:hover {
    background: #a00000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .campeon-card {
        flex: 0 0 250px;
    }
    
    .campeon-info h3 {
        font-size: 1.4rem;
    }
    
    .campeon-info p {
        font-size: 1rem;
    }
}