.forbes-section {
    min-height: calc(100vh - 4.6875rem - 4.5rem);
}
.forbes-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
}
.forbes-subtitle {
    color: #e0e6f0;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
}
.forbes__top {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}
.top-item {
    text-align: center;
    color: #fff;
    width: 280px;
}
.top-item--gold {
    order: 2;
    transform: scale(1.15);
    margin-bottom: 2rem;
}
.top-item--silver {
    order: 1;
}
.top-item--bronze {
    order: 3;
}
.top-item__position {
    font-size: 2.5rem;
    font-weight: 200;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.top-item--gold .top-item__position {
    background-image: linear-gradient(208deg, #fccc01, #ff3500);
}
.top-item--silver .top-item__position {
    background-image: linear-gradient(208deg, #d4daef, #9aa7d7);
}
.top-item--bronze .top-item__position {
    background-image: linear-gradient(208deg, #b17040, #8a420e);
}
.top-item__figure {
    position: relative;
    padding: 0;
    margin-top: 1rem;
}
.top-item__rect {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-item__skin {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
}
.top-item__nickname {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1rem;
}
.top-item__balance {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-top: 0.5rem;
}
.forbes-table-container {
    background-color: #313742;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.forbes-table {
    width: 100%;
    border-collapse: collapse;
    color: #e0e6f0;
}
.forbes-table td,
.forbes-table th {
    padding: 1rem 1.5rem;
    text-align: center;
    vertical-align: middle;
}
.forbes-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.forbes-table tbody tr:last-child {
    border-bottom: none;
}
.forbes-table tbody tr:hover {
    background-color: rgba(254, 121, 45, 0.1);
    cursor: pointer;
}
.error-cell,
.loader-cell {
    text-align: center;
    padding: 3rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
}
.error-cell {
    color: #ea4f3d;
}
/* Responsive */
@media (max-width: 920px) {
    .forbes__top {
        display: grid;
        grid-template-columns: 1fr 1.1fr 1fr;
        align-items: flex-end;
        gap: 0.5rem;
    }
    .top-item {
        width: 100%;
        margin-bottom: 0;
    }
    .top-item--silver {
        order: 1;
    }
    .top-item--gold {
        order: 2;
        transform: scale(1.1);
        margin-bottom: 0;
    }
    .top-item--bronze {
        order: 3;
    }
    .top-item__position {
        font-size: 2rem;
    }
    .top-item__rect {
        height: 150px;
    }
    .top-item__skin {
        max-height: 140px;
    }
    .top-item__nickname {
        font-size: 0.9rem;
        word-break: break-word;
    }
    .top-item__balance {
        font-size: 0.8rem;
    }
}
@media (max-width: 768px) {
    .forbes-title {
        font-size: 2.5rem;
    }
    .forbes-subtitle {
        font-size: 1rem;
    }
    .forbes-table td,
    .forbes-table th {
        padding: 0.8rem 0.6rem;
        font-size: 14px;
    }
}
@media (max-width: 576px) {
    .forbes-title {
        font-size: 1.895rem;
        line-height: 2rem;
    }
    .forbes-table td,
    .forbes-table th {
        padding: 0.3rem 1rem;
    }
    .forbes-table td {
        padding: 0.5rem 0.3rem;
    }
}