
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .auth-bg {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem 1rem;
        background: #080a12;
        background-image:
            radial-gradient(ellipse 70% 55% at 20% 0%, rgba(108,99,255,.14) 0%, transparent 65%),
            radial-gradient(ellipse 50% 45% at 85% 100%, rgba(16,217,160,.10) 0%, transparent 60%);
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .auth-card {
        width: 100%;
        max-width: 430px;
        background: rgba(15, 17, 26, 0.85);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 24px;
        padding: 2.75rem 2.25rem 2.25rem;
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        box-shadow:
            0 32px 80px rgba(0,0,0,.55),
            0 0 0 1px rgba(108,99,255,.12) inset,
            0 1px 0 rgba(255,255,255,.06) inset;
        animation: rise .55s cubic-bezier(.22,1,.36,1) both;
    }

    @keyframes rise {
        from { opacity: 0; transform: translateY(28px) scale(.98); }
        to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .auth-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
        gap: .6rem;
    }

    .auth-brand .logo-ring {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        background: linear-gradient(135deg, #6c63ff 0%, #10d9a0 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 28px rgba(108,99,255,.4);
    }

    .auth-brand .logo-ring svg {
        width: 26px;
        height: 26px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .auth-brand h1 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #f0f0f8;
        letter-spacing: -.025em;
    }

    .auth-brand p {
        font-size: .82rem;
        color: rgba(200,200,230,0.45);
        font-weight: 400;
        margin-top: -.2rem;
    }

    .auth-tabs {
        display: flex;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 12px;
        padding: 4px;
        margin-bottom: 1.75rem;
        gap: 4px;
    }

    .auth-tabs a {
        flex: 1;
        text-align: center;
        padding: .5rem;
        border-radius: 9px;
        font-size: .82rem;
        font-weight: 600;
        color: rgba(200,200,230,0.45);
        text-decoration: none;
        transition: background .2s, color .2s;
        letter-spacing: .01em;
    }

    .auth-tabs a.active {
        background: rgba(108,99,255,.22);
        color: #a09af8;
        box-shadow: 0 0 0 1px rgba(108,99,255,.3) inset;
    }

    .field {
        margin-bottom: 1rem;
    }

    .field label {
        display: block;
        font-size: .72rem;
        font-weight: 600;
        color: rgba(200,200,230,0.45);
        letter-spacing: .07em;
        text-transform: uppercase;
        margin-bottom: .4rem;
    }

    .field .input-wrap {
        position: relative;
    }

    .field .input-wrap .ico {
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        width: 17px;
        height: 17px;
        stroke: rgba(200,200,230,.3);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        pointer-events: none;
        transition: stroke .2s;
    }

    .field input[type="email"],
    .field input[type="password"],
    .field input[type="text"] {
        width: 100%;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 11px;
        padding: .72rem 1rem .72rem 2.6rem;
        font-size: .9rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: #f0f0f8;
        outline: none;
        transition: border-color .2s, box-shadow .2s, background .2s;
    }

    .field input::placeholder {
        color: rgba(200,200,230,.25);
        font-size: .85rem;
    }

    .field input:focus {
        border-color: #6c63ff;
        background: rgba(108,99,255,.07);
        box-shadow: 0 0 0 3px rgba(108,99,255,.2);
    }

    .field .input-wrap:focus-within .ico {
        stroke: rgba(108,99,255,.7);
    }

    .field input.is-invalid {
        border-color: #f45b7a;
    }

    .field input.is-invalid:focus {
        box-shadow: 0 0 0 3px rgba(244,91,122,.2);
    }

    .invalid-feedback,
    .text-danger {
        display: block;
        font-size: .73rem;
        color: #f45b7a;
        margin-top: .35rem;
    }

    .captcha-label {
        font-size: .72rem;
        font-weight: 600;
        color: rgba(200,200,230,0.45);
        letter-spacing: .07em;
        text-transform: uppercase;
        margin-bottom: .4rem;
        display: block;
    }

    .captcha-visual {
        display: flex;
        align-items: center;
        gap: .65rem;
        margin-bottom: .6rem;
    }

    .captcha-canvas-wrap {
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,.15);
        flex-shrink: 0;
    }

    #captchaCanvas {
        display: block;
        width: 160px;
        height: 58px;
    }

    .captcha-refresh-btn {
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 9px;
        color: rgba(200,200,230,.5);
        font-size: .75rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
        cursor: pointer;
        padding: .4rem .75rem;
        transition: background .2s, color .2s;
        display: flex;
        align-items: center;
        gap: .35rem;
        white-space: nowrap;
    }

    .captcha-refresh-btn:hover {
        background: rgba(255,255,255,.12);
        color: #f0f0f8;
    }

    .captcha-refresh-btn svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .row-between {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.4rem;
    }

    .check-label {
        display: flex;
        align-items: center;
        gap: .45rem;
        cursor: pointer;
        user-select: none;
    }

    .check-label input[type="checkbox"] {
        width: 15px;
        height: 15px;
        accent-color: #6c63ff;
        cursor: pointer;
    }

    .check-label span {
        font-size: .8rem;
        color: rgba(200,200,230,0.45);
    }

    .forgot-a {
        font-size: .8rem;
        color: rgba(160,154,248,.65);
        text-decoration: none;
        transition: color .2s;
    }

    .forgot-a:hover {
        color: #a09af8;
    }

    .btn-submit {
        width: 100%;
        padding: .82rem;
        background: linear-gradient(135deg, #6c63ff 0%, #4b44d6 100%);
        border: none;
        border-radius: 11px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: .95rem;
        font-weight: 700;
        color: #fff;
        cursor: pointer;
        letter-spacing: .01em;
        box-shadow: 0 6px 22px rgba(108,99,255,.42);
        transition: transform .15s, box-shadow .15s, filter .2s;
        position: relative;
        overflow: hidden;
    }

    .btn-submit::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,.1) 0%, transparent 60%);
        pointer-events: none;
    }

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(108,99,255,.5);
        filter: brightness(1.08);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

    .auth-footer {
        margin-top: 1.3rem;
        text-align: center;
        font-size: .8rem;
        color: rgba(200,200,230,0.45);
    }

    .auth-footer a {
        color: #a09af8;
        text-decoration: none;
        font-weight: 600;
        transition: color .2s;
    }

    .auth-footer a:hover {
        color: #c8c5ff;
    }

    .sep {
        height: 1px;
        background: rgba(255,255,255,.06);
        margin: 1.4rem 0;
    }

    #captchaValue {
        display: none;
    }
.field-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .85rem;
    }

    .field {
        margin-bottom: .9rem;
    }

    .field label {
        display: block;
        font-size: .72rem;
        font-weight: 600;
        color: rgba(200,200,230,0.45);
        letter-spacing: .07em;
        text-transform: uppercase;
        margin-bottom: .4rem;
    }

    .field .input-wrap {
        position: relative;
    }

    .field .input-wrap .ico {
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        width: 17px;
        height: 17px;
        stroke: rgba(200,200,230,.3);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        pointer-events: none;
        transition: stroke .2s;
    }

    .field input[type="text"],
    .field input[type="email"],
    .field input[type="password"] {
        width: 100%;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 11px;
        padding: .72rem 1rem .72rem 2.6rem;
        font-size: .88rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: #f0f0f8;
        outline: none;
        transition: border-color .2s, box-shadow .2s, background .2s;
    }
/* Custom Styles for Crypto/Mall Platform */
.platform-container {
    background-color: #f9fafb;
    min-height: 100vh;
    padding-bottom: 96px;
    font-family: sans-serif;
    color: #374151;
}

/* Header & Navbar */
.top-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.235);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.action-grid-wrapper {
    background-color: #ffffff;
    padding: 24px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    text-align: center;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    transition: transform 0.2s;
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.bg-recharge { background-color: #fef2f2; color: #ef4444; }
.bg-withdrawal { background-color: #eff6ff; color: #3b82f6; }
.bg-teams { background-color: #faf5ff; color: #a855f7; }
.bg-invitation { background-color: #f0fdf4; color: #22c55e; }

.action-label {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
}


.ticker-container {
    background-color: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    min-height: 55px;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.ticker-avatar {
    color: #f87171;
    display: flex;
    align-items: center;
}

.ticker-window {
    position: relative;
    width: 100%;
    height: 38px;
    overflow: hidden;
}

.ticker-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #4b5563;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

.ticker-hidden-up {
    opacity: 0;
    transform: translateY(-20px);
}

.ticker-hidden-down {
    opacity: 0;
    transform: translateY(20px);
}

.user-title {
    font-weight: 600;
    color: #374151;
    display: block;
}

.status-success {
    color: #22c55e;
    font-size: 11px;
}

.amount-text {
    font-weight: 700;
    color: #888888;
}

.product-section {
    padding: 24px 16px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

@media (min-width: 1024px) {
    .product-grid { 
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.product-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.product-img {
    width: 100%;
    height: 115px;
    object-fit: cover;
    display: block;
}

.product-body {
    padding: 10px;
}

.product-name {
    font-weight: 700;
    font-size: 13px;
    color: #222222;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-desc {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.customer-service-section {
    background: #fcfcfc;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding-bottom: 80px; 
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 10px 4px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #9ca3af;
    font-size: 11px;
}

.nav-link svg {
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
}

.nav-link.active {
    color: #2563eb;
}
.product-img, .xp-thumb-img {
    width: 100%;
    height: 115px;
    object-fit: cover;
    display: block;
}

.product-card-link {
    text-decoration: none !important;
    display: block;
    color: inherit;
    width: 100%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px;
    padding: 5px;
    width: 100%;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


.product-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 0px !important; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img-wrapper {
    width: 100%;
    height: 125px;
    background-color: #f8f9fa;
    overflow: hidden;
}

.xp-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px !important;
}

.action-grid-wrapper {
    background: #ffffff;

    padding: 18px 15%; 
    border-bottom: 5px solid #f5f5f5;
    width: 100%;
    box-sizing: border-box;
}

.action-grid {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    text-align: center;
}


.icon-box {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    margin-bottom: 6px;
}

.custom-icon {
    width: 34px;
    height: 34px;
    display: block;
}


.action-label {
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .action-grid-wrapper {
        padding: 18px 8%; 
    }
}


.ticker-container {
    margin-top: 0px;
    background: #ffffff;
    padding: 14px 16px;
    border-bottom: 8px solid #f5f5f5;
}
.platform-intro-section {
    background: #fcfcfc;
    padding: 20px 16px;
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    margin-top: 0;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.intro-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.intro-card {
    flex: 0 0 calc(25% - 9px);
    background: #ffffff;
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 130px;
    background: #e0e0e0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 10px 8px 14px 4px;
}

.card-title {
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-desc {
    font-size: 13px;
    color: #8e8e93;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .intro-card {
        flex: 0 0 calc(50% - 6px);
    }
}
.customer-service-section {
    background: #fcfcfc;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding-bottom: 30px;
}

.service-banner {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-overlay-content {
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

.banner-overlay-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #6A4D52;
    margin: 0 0 8px 0;
}

.banner-overlay-content p {
    font-size: 14px;
    color: chocolate;
    margin: 0;
    font-weight: bold;
}

.service-links {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 18px 16px;
    border-radius: 8px;
    text-decoration: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: background 0.2s ease;
}

.service-item:active {
    background: #f5f5f5;
}

.service-text {
    font-size: 15px;
    font-weight: 400;
    color: #222222;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    fill: #222222;
}

@media (max-width: 480px) {
    .service-banner {
        height: 180px;
    }
    .banner-overlay-content h1 {
        font-size: 18px;
    }
    .banner-overlay-content p {
        font-size: 12px;
    }
}
  .settings-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #ffffff;
        min-height: 80vh;
        box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }


    .settings-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        border-bottom: 1px solid #eaeaea;
        position: relative;
    }

    .back-btn {
        font-size: 18px;
        color: #333;
        cursor: pointer;
        text-decoration: none;
    }

    .settings-header h1 {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }


    .settings-options {
        background-color: #ffffff;
    }

    .option-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        border-bottom: 1px solid #f1f1f1;
        cursor: pointer;
        transition: background 0.2s;
        text-decoration: none;
        color: #333;
    }

    .option-item:hover {
        background-color: #f9f9f9;
        color: #333;
        text-decoration: none;
    }

    .option-text {
        font-size: 15px;
    }

    .option-arrow {
        color: #999;
        font-size: 14px;
    }

    .logout-section {
        display: flex;
        justify-content: center;
        padding-top: 40px;
        background-color: #f8f9fa;
        min-height: 400px;
    }

    .logout-btn {
        background: none;
        border: none;
        color: #ff4d4f;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: opacity 0.2s;
        height: fit-content;
    }

    .logout-btn:hover {
        opacity: 0.8;
        text-decoration: underline;
    }

    .deposit-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #ffffff;
        min-height: 100vh;
        position: relative;
        padding-bottom: 80px; 
    }

    .deposit-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        border-bottom: 5px solid #f8f9fa;
        position: relative;
    }

    .back-btn {
        font-size: 18px;
        color: #333;
        text-decoration: none;
    }

    .deposit-header h1 {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .deposit-section {
        padding: 15px 20px;
        border-bottom: 5px solid #f8f9fa;
    }

    .section-title {
        font-size: 15px;
        font-weight: 600;
        color: #222;
        margin-bottom: 15px;
    }

    .selection-grid {
        display: flex;
        gap: 15px;
    }

    .select-card {
        position: relative;
        width: 80px;
        height: 80px;
        border: 1px solid #dcdcdc;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        background-color: #fff;
        overflow: hidden;
    }

    .select-card.active {
        border-color: #ff4d4f; 
    }

    .card-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 6px;
    }

    .card-text {
        font-size: 11px;
        color: #555;
        font-weight: 500;
    }

    .card-text.text-only {
        font-size: 12px;
        font-weight: 500;
    }

    .checked-badge {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 0;
        border-bottom: 16px solid #ff3b30;
        border-left: 16px solid transparent;
    }

    .checked-badge::after {
        content: '✓';
        position: absolute;
        bottom: -18px;
        right: 1px;
        color: #fff;
        font-size: 10px;
        font-weight: bold;
    }
    .amount-input-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 10px;
    }

    .currency-label {
        font-size: 18px;
        color: #888;
        font-weight: 400;
    }

    .amount-input {
        font-size: 32px;
        font-weight: bold;
        color: #222;
        border: none;
        outline: none;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .info-meta {
        margin-top: 15px; 
        font-size: 13px;
        color: #666;
        line-height: 1.8;
    }

    .highlight-text {
        color: #ff9500; 
        font-weight: 500;
    }

    .muted-text {
        color: #999;
        font-size: 12px;
        margin-top: 5px;
    }

    .deposit-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        z-index: 999;
    }

    .deposit-submit-btn {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: block;
        background-color: #61464b; 
        color: #ffffff;
        border: none;
        padding: 16px 0;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        text-align: center;
        transition: background 0.2s;
    }

    .deposit-submit-btn:hover {
        background-color: #4a3438;
    }

    @media (min-width: 1200px) {
        .deposit-footer {
            left: 50%;
            transform: translateX(-50%);
            max-width: 1200px;
        }
    }



  .withdraw-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #ffffff;
        min-height: 100vh;
        position: relative;
        padding-bottom: 80px;
    }

    .withdraw-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        border-bottom: 5px solid #f8f9fa;
        position: relative;
    }

    .back-btn {
        font-size: 18px;
        color: #333;
        text-decoration: none;
    }

    .withdraw-header h1 {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .withdraw-section {
        padding: 15px 20px;
        border-bottom: 5px solid #f8f9fa;
    }

    .section-title {
        font-size: 14px;
        font-weight: 600;
        color: #555;
        margin-bottom: 12px;
    }

    .selection-grid {
        display: flex;
        gap: 15px;
    }

    .select-card {
        position: relative;
        width: 85px;
        height: 85px;
        border: 1px solid #dcdcdc;
        border-radius: 6px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        background-color: #fff;
        overflow: hidden;
    }

    .select-card.active {
        border-color: #ff3b30;
    }

    .icon-wrapper {
        width: 32px;
        height: 32px;
        background-color: #007bff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 14px;
        margin-bottom: 6px;
    }

    .card-text {
        font-size: 11px;
        color: #222;
        font-weight: 500;
        text-align: center;
        line-height: 1.2;
        padding: 0 4px;
    }

    .checked-badge {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 0;
        border-bottom: 16px solid #ff3b30;
        border-left: 16px solid transparent;
    }

    .checked-badge::after {
        content: '✓';
        position: absolute;
        bottom: -18px;
        right: 1px;
        color: #fff;
        font-size: 10px;
        font-weight: bold;
    }

    .wallet-info {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .wallet-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .wallet-name {
        font-size: 15px;
        font-weight: 600;
        color: #222;
    }

    .amount-input-wrapper {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .currency-label {
        font-size: 16px;
        color: #222;
        font-weight: 600;
    }

    .amount-input {
        font-size: 28px;
        font-weight: bold;
        color: #222;
        border: none;
        outline: none;
        width: 100%;
        padding: 0;
    }

    .password-input-wrapper {
        width: 100%;
    }

    .withdraw-password {
        width: 100%;
        max-width: 200px;
        font-size: 24px;
        font-weight: bold;
        letter-spacing: 6px;
        border: none;
        outline: none;
        padding: 10px 0;
        color: #222;
    }

    .withdraw-password::placeholder {
        color: #ccc;
        letter-spacing: 2px;
    }

    .withdraw-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        z-index: 999;
    }

    .withdraw-submit-btn {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        display: block;
        background-color: #61464b;
        color: #ffffff;
        border: none;
        padding: 16px 0;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        text-align: center;
        transition: background 0.2s;
    }

    .withdraw-submit-btn:hover {
        background-color: #4a3438;
    }

    @media (min-width: 1200px) {
        .withdraw-footer {
            left: 50%;
            transform: translateX(-50%);
            max-width: 1200px;
        }
    }
  
    .team-container {
        width: 100%;
      
        margin: 0 auto;
        background-color: #ffffff;
        min-height: 100vh;
    }

    .team-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        background-color: #ffffff;
        position: relative;
    }

    .back-btn {
        font-size: 18px;
        color: #333;
        text-decoration: none;
    }

    .team-header h1 {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: #222;
    }

    .team-hero-section {
        background: linear-gradient(135deg, #873e45 0%, #442a2f 100%);
        padding: 30px 20px;
        color: #ffffff;
        text-align: left;
    }

    .hero-label {
        font-size: 13px;
        opacity: 0.8;
        margin: 0 0 8px 0;
    }

    .hero-amount {
        font-size: 32px;
        font-weight: bold;
        margin: 0 0 30px 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 20px;
        column-gap: 10px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .stat-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .stats-grid .stat-box:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        right: -5px;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .stat-value {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .stat-title {
        font-size: 11px;
        opacity: 0.7;
        white-space: nowrap;
    }

    .sub-stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        padding-top: 15px;
    }

    .sub-stat-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .sub-stats-row .sub-stat-box:first-child::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .tabs-section {
        background-color: #ffffff;
    }

    .tabs-header {
        display: flex;
        border-bottom: 1px solid #f0f0f0;
    }

    .tab-item {
        flex: 1;
        text-align: center;
        padding: 15px 0;
        font-size: 14px;
        color: #666;
        cursor: pointer;
        position: relative;
        font-weight: 500;
    }

    .tab-item.active {
        color: #222;
        font-weight: bold;
    }

    .tab-item.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 42%;
        width: 16%;
        height: 2px;
        background-color: #222;
    }

    .tabs-content {
        padding: 40px 20px;
    }

    .tab-panel {
        display: none;
    }

    .tab-panel.active {
        display: block;
    }

    .no-data-wrapper {
        text-align: center;
        color: #bbbbbb;
        font-size: 13px;
        margin-top: 20px;
    }


    #messageTab .nav-link {
        border: none !important;
        background: transparent !important;
    }
    #messageTab .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 35px;
        height: 2px;
        background-color: transparent;
        transition: background-color 0.2s;
    }
    #messageTab .nav-link.active {
        color: #222222 !important;
        font-weight: 600 !important;
    }
    #messageTab .nav-link.active::after {
        background-color: #873e45;
    }

      #recordTab .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 45px;
            height: 2.5px;
            background-color: transparent;
            transition: background-color 0.2s;
        }
        #recordTab .nav-link.active::after {
            background-color: #873e45;
        }
        
