

/* Last buys scroller styles: */

.lastBuysScroller {
    padding-top: 10px;
    margin-bottom: 50px;
    display: block;
    color: #fff;
}

.lastBuysScroller .header {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 700;
}

.lastBuysScroller .scrollContainer {
    overflow: hidden;
    position: relative;
    height: 60px;
}

.lastBuysScroller .scrollContainer .inner {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 16px;
    align-items: center;
    
    transition-timing-function: linear;
    transform: translateX(0);
}

.lastBuysScroller .scrollContainer .inner .item {
    width: 350px;
    height: 50px;
    background-color: red;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(190, 196, 255, 0.12);
    padding: 0 16px;
    font-size: 15px;
    justify-content: space-between;
}

.lastBuysScroller .scrollContainer .inner .item .time {
    white-space: nowrap;
    font-size: 14px;
    opacity: 0.8;
}

.lastBuysScroller .scrollContainer .inner .item .username {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #a1ddff;
    font-weight: 600;
}

.lastBuysScroller .scrollContainer .inner .item .itemName {
    white-space: nowrap;
    font-weight: 600;
    color: gold;
}

@media (max-width: 900px) {
    .lastBuysScroller .header {
        font-size: 22px;
    }
}





.howToGetPointsSection {
    padding-bottom: 300px;
    color: #fff;
}

.howToGetPointsSection > .header {
    margin-bottom: 22px;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 20px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.howToGetPointsSection .xcardGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.howToGetPointsSection .xcardGrid .xcard {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(190, 196, 255, 0.12);
    padding: 20px 20px;
    border-radius: 12px;
    display: flex;
    gap: 18px;
    max-width: 100%;
}

.howToGetPointsSection .xcardGrid .xcard .iconWrapper {
    background-color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 50px;
    flex-shrink: 0;
    height: min-content;
    font-size: 27px;
    height: 60px;
    width: 60px;
    box-sizing: border-box;
}

.howToGetPointsSection .xcardGrid .xcard .details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.howToGetPointsSection .xcardGrid .xcard .details .header {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.howToGetPointsSection .xcardGrid .xcard .details .content {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 1200px) {
    .howToGetPointsSection .xcardGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 900px) {
    .howToGetPointsSection > .header {
        margin-bottom: 22px;
        font-size: 22px;
    }

    .howToGetPointsSection .xcardGrid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .howToGetPointsSection .xcardGrid .xcard .iconWrapper {
        padding: 10px;
        font-size: 20px;
        height: 50px;
        width: 50px;
    }

    .howToGetPointsSection .xcardGrid .xcard .details .header {
        font-size: 18px;
    }

    .howToGetPointsSection .xcardGrid .xcard .details .content {
        font-size: 15px;
    }

}






.leaderboardSection {
    color: #fff;
    background: linear-gradient(120deg,rgba(63, 94, 251, 0.5) 0%, rgba(84, 214, 253, 0.5) 100%);
    margin-bottom: 100px;
    border-radius: 16px;
    padding: 30px 20px 50px 20px;
}

.leaderboardSection > .header {
    margin-bottom: 22px;
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 20px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.leaderboardSection .tableWrapper {
    max-width: 1000px;
    max-height: 600px;
    overflow-y: scroll;
    margin: 0 auto;
    border-radius: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
    background-color: rgba(0, 0, 0, 0.6);
}

.leaderboardSection table {
    border-collapse: collapse;
    width: 100%;
    
    
    padding: 10px;
    overflow: hidden;
    font-family: 'Rubik', sans-serif !important;
    font-size: 18px;
}

.leaderboardSection table thead tr th {
    text-align: left;
    padding: 14px 20px 12px 20px;
    font-family: 'Rubik', sans-serif !important;
    white-space: nowrap;
}

.leaderboardSection table tbody tr td {
    text-align: left;
    padding: 10px 20px;
    font-family: 'Rubik', sans-serif !important;
}

.leaderboardSection table thead th i {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 6px;
}

.leaderboardSection table tbody tr:nth-child(2n),
.leaderboardSection table thead tr {
    background-color: rgba(0, 0, 0, 0.2);
}

.leaderboardSection table tbody tr:nth-child(1) td:nth-child(1),
.leaderboardSection table tbody tr:nth-child(1) td:nth-child(2) {
    font-weight: 900;
    color: gold;
    font-size: 20px;
}

.leaderboardSection table tbody tr:nth-child(2) td:nth-child(1),
.leaderboardSection table tbody tr:nth-child(2) td:nth-child(2) {
    font-weight: 900;
    color: #C0C0C0;
    font-size: 20px;
}

.leaderboardSection table tbody tr:nth-child(3) td:nth-child(1),
.leaderboardSection table tbody tr:nth-child(3) td:nth-child(2) {
    font-weight: 900;
    color: #CD7F32;
    font-size: 20px;
}

@media (max-width: 950px) {
    .leaderboardSection > .header {
        font-size: 24px;
    }

    .leaderboardSection table thead th i {
        display: none;
    }

    .leaderboardSection table {
        font-size: 16px;
    }

    .leaderboardSection table thead tr th {
        padding: 14px 16px 12px 16px;
    }

    .leaderboardSection table tbody tr td {
        padding: 10px 16px;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}