.version2-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    margin-top: 84px;
}

.version2-center {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    align-self: stretch;
}

@media (min-width: 1440px) {
    .version2-center {
        width: 1440px;
    }
}

@media (max-width: 1440px) {
    .version2-center {
        padding: 16px !important;
    }
}

.version2-top-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.version2-top-header-title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    gap: 8px;
}

.version2-top-header-title h1 {
    font-size: 24px !important;
}

.version2-top-header-trophy-icon {
    display: flex;
    padding: 4px;
    align-items: center;
    border-radius: 63px;
    box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 0 1px #1e2329,
        0 0 1px 1.5px rgba(0, 0, 0, 0.24), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
    color: var(--Silver-White, #eaecef);
    border: 1px solid var(--Binance-Yellow, #f0890b);
    background: var(--Night-Black, #0b0e11);
}

.version2-top-header h1 {
    color: var(--Silver-White, #eaecef);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 150% */
    text-transform: capitalize;
}

.version2-top-header-badge-info {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.version2-top-header-right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.version2-top-header-badge-info-item {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.version2-top-header-badge-info-item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    padding-right: 4px;
}

.version2-top-header-badge-info-item-text {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.version2-top-header-badge-info-item-text p {
    color: var(--Binance-Yellow, #f0890b);
    text-align: center;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 175% */
    text-transform: capitalize;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.version2-top-header-trophy {
    text-decoration: none !important;
    display: flex;
    padding: 2px;
    padding-right: 16px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 32px;
    border: 1px solid var(--Binance-Yellow, #f0890b);
    background: var(--Graphite-Gray, #1e2329);
    box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 0 1px #1e2329,
        0 0 1px 1.5px rgba(0, 0, 0, 0.24), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
    cursor: pointer;
    transition: all 0.3s ease;
    &:hover {
        border: 1px solid var(--Binance-Yellow, #f0890b);
        background: var(--Binance-Yellow, #0b0e11);
        color: var(--Graphite-Gray, #1e2329);
    }
}

.version2-top-header-trophy-icon1 {
    display: none;
    padding: 4px;
    align-items: center;
    border-radius: 63px;
    box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 0 1px #1e2329,
        0 0 1px 1.5px rgba(0, 0, 0, 0.24), 0 2px 2px 0 rgba(0, 0, 0, 0.24);
    color: var(--Silver-White, #eaecef);
    border: 1px solid var(--Binance-Yellow, #f0890b);
    background: var(--Night-Black, #0b0e11);
}

.version2-top-header-trophy-icon1:hover {
    border: 1px solid var(--Binance-Yellow, #f0890b);
    background: var(--Binance-Yellow, #0b0e11);
    color: var(--Graphite-Gray, #1e2329);
}

.version2-top-header-trophy p {
    text-decoration: none !important;
    color: var(--Binance-Yellow, #f0890b);
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    text-transform: capitalize;
}

.version2-products-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

/* Empty state */
.version2-products-empty {
    grid-column: 1 / -1;
    padding: 60px 20px;
    text-align: center;
    color: #848e9c;
    font-size: 16px;
}

/* Responsive Grid */
@media (min-width: 1440px) {
    .version2-products-list {
        grid-template-columns: repeat(5, 1fr);
        padding: 0;
    }
}

@media (max-width: 1200px) {
    .version2-products-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .version2-products-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .version2-products-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ============================================
   RESPONSIVE STYLES FOR MOBILE
   ============================================ */

/* Tablets and smaller desktops (1024px - 1199px) */
@media (max-width: 1199px) {
    .version2-center {
        width: 100%;
        padding: 16px;
    }

    .version2-top-header {
        margin-top: 24px;
    }

    .version2-top-header h1 {
        font-size: 18px;
        line-height: 26px;
    }

    .version2-top-header-trophy p {
        font-size: 13px;
        line-height: 18px;
    }

    .version2-products-list {
        margin-top: 24px;
        gap: 20px;
    }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .version2-center {
        padding: 12px 24px;
    }

    .version2-top-header h1 {
        font-size: 16px;
        line-height: 24px;
        flex: 1 1 100%;
        order: 1;
    }

    .version2-top-header-badge-info-item-text p {
        font-size: 12px;
        line-height: 12px;
    }

    .version2-top-header-trophy {
        padding: 2px;
        padding-right: 12px;
        gap: 4px;
    }

    .version2-top-header-trophy-icon {
        padding: 5px;
    }

    .version2-top-header-trophy-icon svg {
        width: 14px;
        height: 14px;
    }

    .version2-top-header-trophy p {
        font-size: 12px;
        line-height: 16px;
    }

    .version2-products-list {
        margin-top: 20px;
        gap: 16px;
    }
}

/* Mobile landscape and small tablets (600px - 767px) */
@media (max-width: 767px) {
    .version2-center {
        padding: 12px 24px;
    }

    .version2-top-header {
        margin-top: 20px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: end;
        gap: 12px;
    }

    .version2-top-header-right {
        flex: 1 1 100%;
        order: 2;
    }

    .version2-top-header h1 {
        font-size: 14px;
        line-height: 20px;
    }

    .version2-top-header-title {
        width: 100%;
    }

    .version2-top-header-trophy {
        display: none;
    }

    .version2-top-header-trophy-icon1 {
        display: flex;
    }

    .version2-top-header-badge-info {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .version2-top-header-badge-info-item {
        align-items: flex-start;
        padding: 4px 0;
    }

    .version2-top-header-badge-info-item-icon {
        padding-right: 4px;
        padding-top: 2px;
        align-items: flex-start;
    }

    .version2-top-header-badge-info-item-icon svg {
        width: 10px;
        height: 10px;
    }

    .version2-top-header-badge-info-item-text {
        flex: 1;
        align-items: center;
        justify-content: center;
    }

    .version2-top-header-badge-info-item-text p {
        font-size: 12px;
        line-height: 12px;
        text-align: left;
        max-width: 100%;
        white-space: normal;
    }

    .version2-top-header-trophy {
        padding: 1px;
        padding-right: 10px;
        gap: 3px;
        flex: 0 0 auto;
    }

    .version2-top-header-trophy-icon {
        padding: 4px;
    }

    .version2-top-header-trophy-icon svg {
        width: 12px;
        height: 12px;
    }

    .version2-top-header-trophy p {
        font-size: 11px;
        line-height: 16px;
    }

    .version2-products-list {
        margin-top: 16px;
        gap: 12px;
    }
}

/* Mobile portrait (480px - 599px) */
@media (max-width: 599px) {
    .version2-center {
        padding: 12px 24px;
    }

    .version2-top-header {
        margin-top: 12px;
        gap: 8px;
    }

    .version2-top-header h1 {
        font-size: 13px;
        line-height: 18px;
    }

    .version2-top-header-right {
        gap: 10px;
        flex-wrap: wrap;
    }

    .version2-top-header-badge-info {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .version2-top-header-badge-info-item-text p {
        font-size: 12px;
        line-height: 11px;
        text-align: left;
    }

    .version2-top-header-trophy {
        flex: 0 0 auto;
    }

    .version2-products-list {
        margin-top: 12px;
        gap: 12px;
    }

    .version2-products-empty {
        padding: 40px 15px;
        font-size: 14px;
    }
}

/* Small mobile devices (360px - 479px) */
@media (max-width: 479px) {
    .version2-center {
        padding: 10px 16px;
    }

    .version2-top-header {
        margin-top: 10px;
    }

    .version2-top-header h1 {
        font-size: 12px;
        line-height: 16px;
    }

    .version2-top-header-right {
        gap: 8px;
        flex-wrap: wrap;
    }

    .version2-top-header-badge-info {
        flex: 1 1 100%;
    }

    .version2-top-header-badge-info-item-text p {
        font-size: 12px;
        line-height: 10px;
        text-align: left;
    }

    .version2-top-header-trophy {
        padding: 1px;
        padding-right: 8px;
        gap: 2px;
    }

    .version2-top-header-trophy-icon {
        padding: 3px;
    }

    .version2-top-header-trophy-icon svg {
        width: 10px;
        height: 10px;
    }

    .version2-top-header-trophy p {
        font-size: 10px;
        line-height: 14px;
    }

    .version2-products-list {
        margin-top: 10px;
        gap: 10px;
    }
}

/* Very small mobile devices (< 360px) */
@media (max-width: 359px) {
    .version2-center {
        padding: 8px 12px;
    }

    .version2-top-header {
        margin-top: 8px;
    }

    .version2-top-header h1 {
        font-size: 11px;
        line-height: 14px;
    }

    .version2-top-header-badge-info {
        flex: 1 1 100%;
    }

    .version2-top-header-badge-info-item-text p {
        font-size: 12px;
        line-height: 9px;
        text-align: left;
    }

    .version2-top-header-trophy {
        padding: 1px;
        padding-right: 6px;
    }

    .version2-top-header-trophy p {
        font-size: 9px;
        line-height: 12px;
    }

    .version2-products-list {
        gap: 8px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .version2-top-header {
        margin-top: 8px;
    }

    .version2-products-list {
        margin-top: 12px;
    }
}

/* High-resolution displays */
@media (min-width: 1440px) and (max-width: 1780px) {
    .version2-center {
        max-width: 1440px;
        padding: 16px 0px;
        margin: 0 auto;
    }
}

@media (min-width: 1921px) {
    .version2-center {
        max-width: 1440px;
        margin: 0 auto;
    }

    .version2-top-header h1 {
        font-size: 22px;
        line-height: 32px;
    }

    .version2-top-header-trophy p {
        font-size: 15px;
        line-height: 22px;
    }
}
