.explore {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 10px 15px 30px;
}
.explore-header {
    margin-bottom: 20px;
}
.explore-title {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}
.explore-title span {
    color: #a1fd2e;
}
.explore-subtitle {
    opacity: 0.5;
    font-size: 11px;
    line-height: 1.5;
}
.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.explore-card {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 125px;
    padding: 18px;
    background: #171a21;
    border-radius: 8px;
    overflow: hidden;
}
.explore-card-content {
    position: relative;
    min-width: 0;
    width: 100%;
    padding-right: 30px;
}
.explore-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    border-radius: 7px;
    background: #222630;
    font-size: 16px;
    flex-shrink: 0;
}
.explore-card-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.explore-card-description {
    margin-top: 5px;
    color: #fff;
    opacity: 0.5;
    font-size: 11px;
    line-height: 1.45;
    text-align: left !important;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.explore-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #222630;
    color: #a1fd2e;
    font-size: 12px;
    transition: background.2s ease, color.2s ease, transform.2s ease;
}
.explore-card:hover.explore-arrow {
    background: #a1fd2e;
    color: #000;
    transform: translateX(2px);
}
@media (max-width: 600px) {
    .explore {
        padding: 25px 0px;
    }
    .explore-header {
        margin-bottom: 16px;
    }
    .explore-title {
        font-size: 20px;
    }
    .explore-subtitle {
        font-size: 10px;
    }
    .explore-grid {
        gap: 9px;
    }
    .explore-card {
        min-height: 130px;
        padding: 14px;
    }
    .explore-card-content {
        padding-right: 25px;
    }
    .explore-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 8px;
        font-size: 14px;
    }
    .explore-card-title {
        font-size: 14px;
        line-height: 1.3;
    }
    .explore-card-description {
        font-size: 10px;
        margin-top: 4px;
    }
    .explore-arrow {
        top: 10px;
        right: 10px;
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}
@media (max-width: 480px) {
    .explore-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .explore-card {
        min-height: 120px;
    }
}
@media (max-width: 380px) {
    .explore {
        padding: 20px 0px;
    }
    .explore-grid {
        gap: 7px;
    }
    .explore-card {
        min-height: 108px;
        padding: 12px;
    }
    .explore-card-content {
        padding-right: 22px;
    }
    .explore-icon {
        width: 27px;
        height: 27px;
        margin-bottom: 7px;
        font-size: 12px;
    }
    .explore-card-title {
        font-size: 11px;
    }
    .explore-card-description {
        font-size: 7px;
    }
    .explore-arrow {
        right: 7px;
        width: 21px;
        height: 21px;
        font-size: 9px;
    }
}

/*disabled*/
.disabled-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.disabled-page .disabled-card {
    position: relative;
    width: 100%;
    max-width: 580px;
    padding: 55px 40px;
    text-align: center;
    background: #171a21;
    border-radius: 20px;
    overflow: hidden;
}

.disabled-page .disabled-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 180px;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #A1FD2E, transparent);
}

.disabled-page .disabled-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(161, 253, 46, 0.10);
    border: 1px solid rgba(161, 253, 46, 0.25);
    color: #A1FD2E;
    font-size: 30px;
}

.disabled-page .disabled-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #A1FD2E;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.disabled-page .disabled-card h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.disabled-page .disabled-card p {
    max-width: 470px;
    margin: 0 auto;
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

.disabled-page .disabled-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.disabled-page .disabled-btn,
.disabled-page .disabled-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 19px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s ease;
}

.disabled-page .disabled-btn {
    background: #A1FD2E;
    color: #111;
}

.disabled-page .disabled-btn:hover {
    color: #111;
}

.disabled-page .disabled-back {
    color: #a5adba;
    background: #1a202a;
    border: 1px solid #222a35;
}

.disabled-page .disabled-back:hover {
    color: #fff;
    border-color: #3a4350;
}

.disabled-page .disabled-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #222a35;
    color: #999;
    font-size: 12px;
}

.disabled-page .disabled-note i {
    color: #A1FD2E;
}

@media (max-width: 600px) {
    .disabled-page {
        padding: 30px 15px;
    }

    .disabled-page .disabled-card {
        padding: 40px 22px;
    }

    .disabled-page .disabled-card h1 {
        font-size: 24px;
    }

    .disabled-page .disabled-actions {
        flex-direction: column;
    }

    .disabled-page .disabled-btn,
    .disabled-page .disabled-back {
        width: 100%;
    }
}