

/* 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;
    }

}


