.member-hero {
    padding: 300px 0px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.member-hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.member-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.member-buttons .btn {
    max-width: 300px !important;
    min-width: 200px !important;
    padding: 5px;
}

.member-steps {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background:
        radial-gradient(
            circle at center,
            rgba(0, 63, 255, 0.18),
            transparent 60%
        ),
        linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
}

.member-step-card {
    background: linear-gradient(
        180deg,
        var(--tile-gradient-top),
        var(--tile-gradient-bottom)
    );
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
}

.member-step-card:hover {
    transform: translateY(-6px);
}

.member-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(90deg, #003fff, #4a90e2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
}

.member-pricing {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

/* FILTER SECTION */
.filter-wrapper {
    display: flex;
    justify-content: center;
}

.filter-box {
    background: linear-gradient(
        180deg,
        rgba(0, 123, 255, 0.15),
        rgba(0, 123, 255, 0.05)
    );
    padding: 18px 22px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.filter-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.filter-select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 500;
    outline: none;
    transition: all 0.25s ease;
    appearance: none;
}

.filter-select:hover {
    border-color: rgba(0, 123, 255, 0.6);
}

.filter-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

/* .filter-box {
    position: relative;
}

.filter-box::after {
    content: "▾";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    font-size: 14px;
} */

/* OPTION LIST */
.filter-select option {
    background-color: #0f172a; /* DARK BG */
    color: #ffffff; /* TEXT PUTIH */
}

.pricing-table-wrapper {
    background: linear-gradient(
        180deg,
        var(--tile-gradient-top),
        var(--tile-gradient-bottom)
    );
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    overflow-x: auto;
}

.pricing-table {
    color: #e6edf7;
    margin-bottom: 0;
    background: transparent !important;
}

.pricing-table thead th {
    background: rgba(255, 255, 255, 0.04) !important;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.pricing-table tbody tr {
    background: transparent !important;
    transition: background 0.2s ease;
}

.pricing-table tbody tr:hover {
    background: rgba(74, 144, 226, 0.08) !important;
}

.pricing-table td,
.pricing-table th {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff;
}

/* Biar wrapper keliatan glow halus */
.pricing-table-wrapper {
    box-shadow:
        0 0 0 1px rgba(74, 144, 226, 0.15),
        0 20px 60px rgba(0, 63, 255, 0.15);
}

.page-link {
    background: transparent !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.page-item.active .page-link {
    background: linear-gradient(90deg, #003fff, #4a90e2) !important;
    border: none !important;
}
/*
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination li a,
.pagination li span {
    display: block;
    min-width: 36px;
    padding: 6px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: all 0.25s ease;
}

.pagination li a:hover {
    background: rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

.pagination li.active span {
    background: linear-gradient(90deg, #003fff, #4a90e2);
    border-color: #003fff;
    color: #fff;
    font-weight: 700;
}

.pagination li.disabled span {
    opacity: 0.4;
    cursor: not-allowed;
} */
/* FIX DATATABLE OVERRIDE */

table.pricing-table td.pricing-highlight,
table.pricing-table th.pricing-highlight {
    background: linear-gradient(
        180deg,
        rgba(0, 123, 255, 0.15),
        rgba(0, 123, 255, 0.05)
    ) !important;
    color: #ffffff !important;
    position: relative;
    z-index: 1;
}

/* kasih efek glow biar keliatan beda */
table.pricing-table td.pricing-highlight::after,
table.pricing-table th.pricing-highlight::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 123, 255, 0.15),
        rgba(0, 123, 255, 0.05)
    ) !important;
    pointer-events: none;
}
