@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* /Controls/Admin/Trades/SingleTradeInfoAdminComponent.razor.rz.scp.css */

.trade-info-card[b-hrcw3o30c3] {
    background-color: #ffffff; /* White card background */
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Softer shadow for light theme */
    border: 1px solid #dee2e6; /* Light border for the card */
}

.card-header[b-hrcw3o30c3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef; /* Lighter separator line */
}

.symbol-container[b-hrcw3o30c3] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crypto-icon[b-hrcw3o30c3] {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.pair[b-hrcw3o30c3] {
    font-size: 1.4em;
    font-weight: bold;
    color: #212529; /* Darker text for pair name */
}

.status[b-hrcw3o30c3] {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

    .status.open[b-hrcw3o30c3] {
        background-color: #007bff; /* Blue for open */
        color: #ffffff;
    }

    .status.closed[b-hrcw3o30c3] {
        background-color: #6c757d; /* Gray for closed */
        color: #ffffff;
    }

.card-body[b-hrcw3o30c3] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row[b-hrcw3o30c3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95em;
}

.label[b-hrcw3o30c3] {
    color: #6c757d; /* Muted gray for labels */
}

.value[b-hrcw3o30c3] {
    color: #343a40; /* Dark gray for values */
    font-weight: 500;
}

.type-buy[b-hrcw3o30c3] {
    color: #198754; /* Green for buy (Bootstrap success green) */
    font-weight: bold;
}

.type-sell[b-hrcw3o30c3] {
    color: #dc3545; /* Red for sell (Bootstrap danger red) */
    font-weight: bold;
}

.pnl .label[b-hrcw3o30c3] {
    font-weight: bold;
}

.pnl-positive[b-hrcw3o30c3] {
    color: #198754; /* Green for profit */
    font-weight: bold;
}

.pnl-negative[b-hrcw3o30c3] {
    color: #dc3545; /* Red for loss */
    font-weight: bold;
}

.card-footer[b-hrcw3o30c3] {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef; /* Lighter separator line */
    text-align: right; /* Aligns button to the right by default */
}

.form-group[b-hrcw3o30c3] {
    margin-bottom: 10px;
    text-align: left; /* Align label and input to the left */
}

.form-label[b-hrcw3o30c3] {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #495057; /* Darker gray for form labels */
}

.form-input[b-hrcw3o30c3] {
    width: calc(100% - 18px); /* Full width minus padding and border */
    padding: 8px;
    border: 1px solid #ced4da; /* Standard input border */
    border-radius: 4px;
    font-size: 0.95em;
    background-color: #fff;
    color: #495057;
}

    .form-input[b-hrcw3o30c3]::placeholder {
        color: #adb5bd; /* Placeholder text color */
    }

.btn-close[b-hrcw3o30c3] {
    background-color: #dc3545; /* Red for close button */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.2s ease;
}

    .btn-close:hover[b-hrcw3o30c3] {
        background-color: #c82333; /* Darker red on hover */
    }

    .btn-close:disabled[b-hrcw3o30c3] {
        background-color: #adb5bd;
        cursor: not-allowed;
    }

#trade-closed-message[b-hrcw3o30c3] {
    text-align: center;
    color: #6c757d; /* Muted text color */
    font-style: italic;
    margin-top: 10px;
}
/* /Controls/Common/AccessDenied.razor.rz.scp.css */

.card[b-oz1mrl3b85] {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid #e1e5e8;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.card-icon[b-oz1mrl3b85] {
    margin-bottom: 24px;
}

    .card-icon img[b-oz1mrl3b85] {
        width: 80px;
        height: 80px;
    }

.card-title[b-oz1mrl3b85] {
    font-size: 28px;
    font-weight: 700;
    color: #d9534f; /* A soft red for warning */
    margin: 0 0 16px;
}

.card-message[b-oz1mrl3b85] {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px;
    color: #6c757d;
}

.card-button[b-oz1mrl3b85] {
    background-color: #6c757d;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .card-button:hover[b-oz1mrl3b85] {
        background-color: #5a6268;
        transform: translateY(-2px);
    }
/* /Controls/Common/AssetSelectorComponent.razor.rz.scp.css */

.asset-selector[b-rq6dcswuay] {
    background-color: var(--white);
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative; /* For dropdown body positioning */
}

.dropdown-header[b-rq6dcswuay] {
    padding: 16px 24px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .dropdown-header:hover[b-rq6dcswuay] {
        background-color: var(--light-gray);
    }

.selected-value[b-rq6dcswuay] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.placehold[b-rq6dcswuay] {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

.chevron-icon[b-rq6dcswuay] {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.asset-selector.open .chevron-icon[b-rq6dcswuay] {
    transform: rotate(180deg);
}

.asset-selector .dropdown-body[b-rq6dcswuay] {
    display: none;
    border-top: 1px solid var(--light-gray);
}

.asset-selector.open .dropdown-body[b-rq6dcswuay] {
    display: block;
}

.selector-header h2[b-rq6dcswuay] {
    margin: 0;
    color: var(--indigo-dark);
    font-weight: 600;
    font-size: 20px;
}

.search-container[b-rq6dcswuay] {
    position: relative;
    padding: 16px 24px;
    /* Removed border-bottom from here, handled by dropdown-body */
}

.search-icon[b-rq6dcswuay] {
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.5;
}



.crypto-list-container[b-rq6dcswuay] {
    max-height: 400px;
    overflow-y: auto;
    padding: 8px 0;
}

    /* Custom scrollbar for webkit browsers */
    .crypto-list-container[b-rq6dcswuay]::-webkit-scrollbar {
        width: 8px;
    }

    .crypto-list-container[b-rq6dcswuay]::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 10px;
    }

    .crypto-list-container[b-rq6dcswuay]::-webkit-scrollbar-thumb {
        background-color: var(--indigo);
        border-radius: 10px;
        border: 2px solid var(--light-gray);
    }


.crypto-list[b-rq6dcswuay] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crypto-item[b-rq6dcswuay] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .crypto-item:hover[b-rq6dcswuay] {
        background-color: var(--light-gray);
    }

.crypto-item-left[b-rq6dcswuay] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.crypto-icon[b-rq6dcswuay] {
    width: 40px;
    height: 40px;
}

.crypto-info .crypto-symbol[b-rq6dcswuay] {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
}

.crypto-info .crypto-name[b-rq6dcswuay] {
    color: var(--text-secondary);
    font-size: 14px;
}

.crypto-item-right[b-rq6dcswuay] {
    text-align: right;
}

.crypto-price[b-rq6dcswuay] {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 16px;
}

.crypto-balance[b-rq6dcswuay] {
    color: var(--text-secondary);
    font-size: 14px;
}
/* /Controls/Common/ImageViewer.razor.rz.scp.css */
.image-viewer[b-dnt6cjaq60] {
    display: inline-block;
    cursor: pointer;
}

.viewer-img[b-dnt6cjaq60] {
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

    .viewer-img:hover[b-dnt6cjaq60] {
        transform: scale(1.05);
    }

/* Modal overlay */
.modal-backdrop[b-dnt6cjaq60] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-dnt6cjaq60] {
    position: relative;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.modal-img[b-dnt6cjaq60] {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

/* Close button */
.close-btn[b-dnt6cjaq60] {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff4444;
    border: none;
    color: white;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

    .close-btn:hover[b-dnt6cjaq60] {
        background: #e60000;
    }
/* /Controls/Common/OrderBook2CardComponent.razor.rz.scp.css */
.orderbook[b-es39ebiu0r] {
    gap: 2rem;
}

.orderbook-section[b-es39ebiu0r] {
    flex: 1;
}

.order-table[b-es39ebiu0r] {
    width: 100%;
    border-collapse: collapse;
    font-family: monospace;
}

    .order-table th[b-es39ebiu0r], .order-table td[b-es39ebiu0r] {
        padding: 4px 6px;
        border-bottom: 1px solid #222;
        text-align: right;
        font-size: 0.9em;
    }

.price-bid[b-es39ebiu0r] {
    color: #4caf50;
}

.price-ask[b-es39ebiu0r] {
    color: #e53935;
}

.placeholder-row td[b-es39ebiu0r] {
    color: #888;
}
/* /Controls/Common/RandomPriceBarComponent.razor.rz.scp.css */
/* /Controls/Common/SelectCountryDropDownComponent.razor.rz.scp.css */

/*! CSS Used from: Embedded */
.css-jhp2bj[b-j6uf20wmvv] {
    box-sizing: border-box;
    margin: 0px !important;
}

    .css-jhp2bj .search_box[b-j6uf20wmvv] {
        position: sticky;
        top: 0px;
        left: 0px;
        z-index: 100;
        padding: 6px;
        border: none;
        outline: none;
        background: rgb(30, 33, 36) !important;
        margin: 0px !important;
    }

        .css-jhp2bj .search_box div[b-j6uf20wmvv] {
            border: none !important;
            outline: none !important;
            margin: 0px !important;
        }

    .css-jhp2bj .scrollable[b-j6uf20wmvv] {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        box-sizing: border-box;
        max-height: calc(-100px + 88vh);
        overflow: scroll;
        padding: 6px;
        margin: 0px !important;
    }

        .css-jhp2bj .scrollable div[b-j6uf20wmvv] {
            cursor: pointer;
            transition: 100ms ease-out;
            padding: 10px 12px;
            border-radius: 8px;
            display: grid;
            margin: 0px !important;
        }

            .css-jhp2bj .scrollable div .country_item[b-j6uf20wmvv] {
                font-size: 14px;
                gap: 6px;
                max-width: max-content;
                cursor: pointer;
                -webkit-box-pack: justify;
                justify-content: space-between;
                display: flex;
                -webkit-box-align: center;
                align-items: center;
                background: transparent;
            }

            .css-jhp2bj .scrollable div:hover[b-j6uf20wmvv] {
                background-color: rgba(0, 0, 0, 0.2);
            }

            .css-jhp2bj .scrollable div.selected[b-j6uf20wmvv] {
                background-color: rgba(0, 0, 0, 0.2);
            }

            .css-jhp2bj .scrollable div p[b-j6uf20wmvv] {
                font-size: 14px;
                white-space: nowrap;
                color: var(--color-000);
                line-height: 18px;
                font-weight: 500;
                margin: 0;
            }

@media (max-width: 768px) {
    .css-jhp2bj .scrollable[b-j6uf20wmvv] {
        padding-bottom: 200px;
    }
}

.css-g70r1a[b-j6uf20wmvv] {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 4px;
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-sizing: border-box;
}

    .css-g70r1a img[b-j6uf20wmvv] {
        width: 16px;
        height: 16px;
    }

    .css-g70r1a input[b-j6uf20wmvv] {
        line-height: 18px;
        color: rgb(255, 255, 255);
        border: none;
        outline: none;
        background: transparent;
        font-weight: 500;
        width: 100%;
    }

        .css-g70r1a input[b-j6uf20wmvv]::placeholder {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

.css-cg9ir8[b-j6uf20wmvv] {
    display: block;
    position: absolute;
    left: 0px;
    max-width: 80%;
    min-width: 80%;
    z-index: 101;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    transition: transform 200ms ease-out, opacity 100ms ease-out;
    max-height: 300px;
    overflow-y: auto;
    transform: translateY(0px);
    opacity: 1;
    pointer-events: auto;
    margin-top: 4px;
    border-radius: 8px;
    background: rgb(30, 33, 36) !important;
    backdrop-filter: blur(200px) !important;
}
/* /Controls/Common/SingleTradeInfo.razor.rz.scp.css */

.trade-info-card[b-me9r8mihc0] {
    background-color: #ffffff; /* White card background */
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Softer shadow for light theme */
    border: 1px solid #dee2e6; /* Light border for the card */
}

.card-header[b-me9r8mihc0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef; /* Lighter separator line */
}

/* Added container for symbol and icon */
.symbol-container[b-me9r8mihc0] {
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

/* Style for the SVG icon */
.crypto-icon[b-me9r8mihc0] {
    width: 24px; /* Adjust size as needed */
    height: 24px;
    vertical-align: middle; /* Helps align with text */
}

.pair[b-me9r8mihc0] {
    font-size: 1.4em;
    font-weight: bold;
    color: #212529;
}

.status[b-me9r8mihc0] {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

    .status.open[b-me9r8mihc0] {
        background-color: #007bff; /* Blue for open */
        color: #ffffff;
    }

    .status.closed[b-me9r8mihc0] {
        background-color: #6c757d; /* Gray for closed */
        color: #ffffff;
    }

.card-body[b-me9r8mihc0] {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Spacing between rows */
}

.detail-row[b-me9r8mihc0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95em;
}

.label[b-me9r8mihc0] {
    color: #6c757d; /* Lighter gray for labels */
}

.value[b-me9r8mihc0] {
    color: #343a40;
    font-weight: 500;
}

.type-buy[b-me9r8mihc0] {
    color: #28a745; /* Green for buy */
    font-weight: bold;
}

.type-sell[b-me9r8mihc0] {
    color: #dc3545; /* Red for sell */
    font-weight: bold;
}

.pnl .label[b-me9r8mihc0] {
    font-weight: bold;
}

.pnl-positive[b-me9r8mihc0] {
    color: #28a745; /* Green for profit */
    font-weight: bold;
}

.pnl-negative[b-me9r8mihc0] {
    color: #dc3545; /* Red for loss */
    font-weight: bold;
}

.card-footer[b-me9r8mihc0] {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef; /* Separator */
    text-align: right;
}

.btn-close[b-me9r8mihc0] {
    background-color: #dc3545; /* Red for close button */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.2s ease;
}

    .btn-close:hover[b-me9r8mihc0] {
        background-color: #c82333; /* Darker red on hover */
    }
/* /Controls/Common/ToastComponent.razor.rz.scp.css */
.mytoast[b-paigibldyw] {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    /* Start as a circle */
    width: 40px;
    height: 40px;
    padding: 0.5rem;
    background: var(--neon-cyan);
    color: #000;
    border-radius: 50%;
    opacity: 0;
    z-index: 999999;
    overflow: hidden;
    animation: toastEntrance-b-paigibldyw 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

    .mytoast.exiting[b-paigibldyw] {
        animation: toastExit-b-paigibldyw 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }

.mytoast-content[b-paigibldyw] {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mytoast-heading[b-paigibldyw] {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.mytoast-message[b-paigibldyw] {
    margin: 2px 0;
    font-size: 14px;
}

.mytoast-close[b-paigibldyw] {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 1px;
}

.mytoast-progress[b-paigibldyw] {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(0,0,0,0.3);
    width: 100%;
    transform-origin: left;
    animation: progressBar-b-paigibldyw 5s linear forwards;
}


/* Reveal content once fully expanded */
.mytoast.expanded .mytoast-content[b-paigibldyw] {
    opacity: 1;
}

/* Entrance Animation: circle expands to a rectangle */
@keyframes toastEntrance-b-paigibldyw {
    0% {
        transform: translateX(-50%) translateY(-100%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        opacity: 0;
    }

    40% {
        transform: translateX(-50%) translateY(20px);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(20px);
        width: 300px;
        height: max-content;
        border-radius: 0.5rem;
        opacity: 1;
    }
}

@keyframes toastExit-b-paigibldyw {
    0% {
        transform: translateX(-50%) translateY(20px);
        width: 300px;
        border-radius: 0.5rem;
        opacity: 1;
    }

    40% {
        transform: translateX(-50%) translateY(20px);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
}

/* Progress bar animation */
@keyframes progressBar-b-paigibldyw {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

/* Success Variation with Glow */
.mytoast-success[b-paigibldyw] {
    background: var(--neon-cyan, #d1e7dd);
    color: #000;
    box-shadow: 0 0 12px var(--neon-cyan, #d1e7dd);
}

    .mytoast-success .mytoast-progress[b-paigibldyw] {
        background: linear-gradient(to right, var(--neon-cyan, #00f7ff), #00d1e0);
    }

/* Danger Variation with Glow */
.mytoast-danger[b-paigibldyw] {
    background: #f8d7da; /* red-500 */
    color: #fff;
    box-shadow: 0 0 12px #f8d7da;
}

    .mytoast-danger .mytoast-progress[b-paigibldyw] {
        background: linear-gradient(to right, #ef4444, #f87171);
    }

/* Info Variation with Glow */
.mytoast-info[b-paigibldyw] {
    background: #cff4fc; /* bright blue */
    color: #fff;
    box-shadow: 0 0 12px #cff4fc;
}

    .mytoast-info .mytoast-progress[b-paigibldyw] {
        background: linear-gradient(to right, #0ea5e9, #38bdf8);
    }

/* Warning Variation with Glow */
.mytoast-warning[b-paigibldyw] {
    background: #fff3cd; /* amber */
    color: #000;
    box-shadow: 0 0 12px #fff3cd;
}

    .mytoast-warning .mytoast-progress[b-paigibldyw] {
        background: linear-gradient(to right, #f59e0b, #fbbf24);
    }
/* /Controls/Experts/ExpertDetailsComponent.razor.rz.scp.css */
:root[b-6iajano126] {
    --bg-color: #f8f9fa;
    --card-bg-color: #ffffff;
    --text-color: #212529;
    --text-muted-color: #6c757d;
    --border-color: #e9ecef;
}

.investment-card[b-6iajano126] {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

    .investment-card:hover[b-6iajano126] {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

.card-top[b-6iajano126] {
    padding: 24px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 2px;
}


.card-title[b-6iajano126] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.card-subtitle[b-6iajano126] {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted-color);
}

.investment-card .card-body[b-6iajano126] {
    padding: 24px;
}

.plan-details[b-6iajano126] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item[b-6iajano126] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label[b-6iajano126] {
    margin: 0;
    color: var(--color-000);
    font-size: 0.9rem;
}

.detail-value[b-6iajano126] {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
    text-align: right;
}
/* /Controls/Future/LeverageSelector.razor.rz.scp.css */
.leverage-selector-wrapper[b-erbm0wipio] {
    position: relative;
}

.leverage-controls[b-erbm0wipio] {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--body-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px;
    width: 320px;
    z-index: 1000;
    margin-top: 8px;
}

    .leverage-controls.show[b-erbm0wipio] {
        display: block;
        animation: fadeIn-b-erbm0wipio 0.2s ease-out;
    }

@keyframes fadeIn-b-erbm0wipio {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leverage-btn[b-erbm0wipio] {
    border-radius: 20px;
    padding: 4px 12px;
    margin: 2px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

    .leverage-btn.active[b-erbm0wipio] {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

.leverage-slider-container[b-erbm0wipio] {
    margin: 16px 0;
}

.slider-value[b-erbm0wipio] {
    font-weight: bold;
    color: #0d6efd;
    margin-left: 8px;
}

.leverage-input-group[b-erbm0wipio] {
    display: flex;
    align-items: center;
}

.leverage-input[b-erbm0wipio] {
    width: 80px;
    margin-right: 8px;
}

.overlay[b-erbm0wipio] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 999;
    display: none;
}

    .overlay.show[b-erbm0wipio] {
        display: block;
    }
/* /Controls/Market/BuzzMedia.razor.rz.scp.css */
h1[b-dkjjzad80c] {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 60px;
    color: var(--color-000);
}

.card-container[b-dkjjzad80c] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.card[b-dkjjzad80c] {
    background-color: #111;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .card:hover[b-dkjjzad80c] {
        border: 1px solid #333;
        transform: translateY(-5px);
    }

    .card h3[b-dkjjzad80c] {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff;
    }

    .card p[b-dkjjzad80c] {
        color: #aaa;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .card .logo[b-dkjjzad80c] {
        margin-top: auto;
        font-size: 0.9rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }


@media (max-width: 768px) {
    h1[b-dkjjzad80c] {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .card[b-dkjjzad80c] {
        padding: 25px;
    }
}
/* /Controls/Market/CopyTraders.razor.rz.scp.css */
:root[b-3efhoiwqmx] {
    --bg: #000;
    --card: #0a0a0a;
    --border: rgba(255, 136, 0, 0.2);
    --accent: #ff8800;
    --accent-glow: rgba(255, 136, 0, 0.5);
    --text: #ffffff;
    --subtext: rgba(255,255,255,0.7);
}

.page[b-3efhoiwqmx] {
    width: 100%;
    max-width: 1200px;
}

.hero[b-3efhoiwqmx] {
    text-align: center;
    margin-bottom: 40px;
}

    .hero h1[b-3efhoiwqmx] {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        margin: 0;
        color: #ff8800;
        text-shadow: 0 0 12px rgba(255, 136, 0, 0.5);
    }

    .hero p[b-3efhoiwqmx] {
        font-size: 15px;
        color: rgba(255,255,255,0.7);
        margin-top: 10px;
    }

.cards[b-3efhoiwqmx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card[b-3efhoiwqmx] {
    background: linear-gradient(180deg, rgba(20,20,20,0.95), rgba(0,0,0,0.95));
    border: 1px solid rgba(255, 136, 0, 0.2);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
}

    .card:hover[b-3efhoiwqmx] {
        transform: translateY(-6px);
        border-color: #ff8800;
        box-shadow: 0 0 20px rgba(255, 136, 0, 0.5);
    }

.top[b-3efhoiwqmx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avatar[b-3efhoiwqmx] {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8800;
    font-weight: 700;
    font-size: 14px;
    box-shadow: inset 0 0 10px rgba(255, 136, 0, 0.5);
}

.meta[b-3efhoiwqmx] {
    margin-left: 12px;
    flex: 1;
}

.name[b-3efhoiwqmx] {
    font-weight: 600;
    font-size: 16px;
}

.sub[b-3efhoiwqmx] {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-top: 3px;
}

.chart-wrap[b-3efhoiwqmx] {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    width: 100px;
    height: 40px;
}

.bar[b-3efhoiwqmx] {
    width: 6px;
    border-radius: 3px;
    background: linear-gradient(to top, #ff8800, rgba(255,136,0,0.2));
    animation: grow-b-3efhoiwqmx 2s ease-in-out infinite;
}

    .bar:nth-child(odd)[b-3efhoiwqmx] {
        animation-delay: 0.3s;
    }

@keyframes grow-b-3efhoiwqmx {
    0%,100% {
        height: 20px;
    }

    50% {
        height: 35px;
    }
}

.stats[b-3efhoiwqmx] {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
}

.stat .num[b-3efhoiwqmx] {
    font-size: 17px;
    font-weight: 700;
    color: #ff8800;
}

.stat .lbl[b-3efhoiwqmx] {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.bottom[b-3efhoiwqmx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.copy-btn[b-3efhoiwqmx] {
    background: #ff8800;
    color: #000;
    border: none;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 136, 0, 0.5);
}

    .copy-btn:hover[b-3efhoiwqmx] {
        box-shadow: 0 0 20px rgba(255, 136, 0, 0.5);
        transform: translateY(-2px);
    }

@media(max-width: 700px) {
    .top[b-3efhoiwqmx] {
        flex-wrap: wrap;
    }

    .chart-wrap[b-3efhoiwqmx] {
        width: 80px;
    }
}
/* /Controls/Market/FAQArea.razor.rz.scp.css */
/* FAQ Section */
.faq-container[b-o2pkvslfv4] {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

h1[b-o2pkvslfv4] {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.faq-item[b-o2pkvslfv4] {
    border-bottom: 1px solid #222;
    padding: 1.2rem 0;
    cursor: pointer;
}

.faq-question[b-o2pkvslfv4] {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer[b-o2pkvslfv4] {
    display: none;
    margin-top: 0.5rem;
    color: #bbb;
    line-height: 1.6;
}

.faq-item.active .faq-answer[b-o2pkvslfv4] {
    display: block;
    animation: fadeIn-b-o2pkvslfv4 0.3s ease-in-out;
}

@keyframes fadeIn-b-o2pkvslfv4 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.plus-icon[b-o2pkvslfv4] {
    font-size: 1.5rem;
    color: #888;
}

@media (max-width: 768px) {
    nav[b-o2pkvslfv4] {
        flex-direction: column;
        gap: 1rem;
    }

    .menu[b-o2pkvslfv4] {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* /Controls/Market/FavoriteSuggestionsComponent.razor.rz.scp.css */
.crypto-card[b-2z9mij78ij] {
    background-color: var(--card-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .crypto-card:hover[b-2z9mij78ij] {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.07);
        border-color: #3672f8;
    }


.crypto-info[b-2z9mij78ij] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.crypto-logo[b-2z9mij78ij] {
    width: 40px;
    height: 40px;
}

.crypto-name[b-2z9mij78ij] {
    font-weight: 500;
    color: var(--color-000);
}

.crypto-symbol[b-2z9mij78ij] {
    font-size: 0.9rem;
    color: var(--color-900);
}

.checkbox-wrapper[b-2z9mij78ij] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.crypto-card .form-check-input[b-2z9mij78ij] {
    width: 1.5em;
    height: 1.5em;
    border-radius: 0.35em;
    cursor: pointer;
}

.crypto-card input[type="checkbox"]:checked[b-2z9mij78ij] {
    background-color: #3672f8;
    border-color: #3672f8;
}

.btn-primary-custom[b-2z9mij78ij] {
    background: linear-gradient(90deg, #3672f8, #6943f2);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-size 0.3s ease;
    background-size: 100% 100%;
}

    .btn-primary-custom:hover[b-2z9mij78ij] {
        background-size: 150% 150%;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(82, 93, 244, 0.4);
        color: white;
    }
/* /Controls/Market/FooterArea.razor.rz.scp.css */
/* Hero Section */
.hero[b-p7xaugflkt] {
    flex: 1;
    background-color: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 1rem;
}

    .hero h1[b-p7xaugflkt] {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 2rem;
        color: #fff;
    }

    .hero .signup-btn[b-p7xaugflkt] {
        background: #f7931a;
        color: #000;
        padding: 0.8rem 2rem;
        border: none;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

        .hero .signup-btn:hover[b-p7xaugflkt] {
            background: #ffaa33;
            transform: translateY(-2px);
        }

        .hero .signup-btn[b-p7xaugflkt]::before {
            content: "🎁";
            font-size: 1.2rem;
        }

/* Footer */
footer[b-p7xaugflkt] {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid #222;
}

    footer .logo[b-p7xaugflkt] {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    footer p[b-p7xaugflkt] {
        font-size: 0.9rem;
        color: #888;
    }

@media (max-width: 768px) {
    
    .hero h1[b-p7xaugflkt] {
        font-size: 2rem;
    }
}
/* Footer Base */
.blofin-footer[b-p7xaugflkt] {
    background-color: #0b0b0b;
    padding-top: 20px;
}

/* Grid Layout */
.footer-wrapper[b-p7xaugflkt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

/* Column Headings */
.footer-col h4[b-p7xaugflkt] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
}

/* Lists */
.footer-col ul[b-p7xaugflkt] {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

    .footer-col ul li[b-p7xaugflkt] {
        margin-bottom: 8px;
    }

        .footer-col ul li a[b-p7xaugflkt] {
            text-decoration: none;
            color: #9ca3af;
            font-size: 0.88rem;
            transition: color 0.25s ease;
        }

            .footer-col ul li a:hover[b-p7xaugflkt] {
                color: #f9b31a;
            }

/* Register + QR Section */
.qr-col[b-p7xaugflkt] {
    text-align: left;
}

    .qr-col h4[b-p7xaugflkt] {
        line-height: 1.5;
        margin-bottom: 18px;
    }

.register-btn[b-p7xaugflkt] {
    display: inline-block;
    background-color: #fff;
    color: #0b0b0b;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .register-btn:hover[b-p7xaugflkt] {
        background-color: #f9b31a;
        color: #000;
    }

/* QR Section */
.qr-wrapper[b-p7xaugflkt] {
    margin-top: 25px;
    text-align: center;
}

    .qr-wrapper img[b-p7xaugflkt] {
        width: 120px;
        height: 120px;
        border-radius: 6px;
    }

    .qr-wrapper p[b-p7xaugflkt] {
        font-size: 0.85rem;
        color: #9ca3af;
        margin-top: 6px;
    }

/* Footer Bottom */
.footer-bottom[b-p7xaugflkt] {
    border-top: 1px solid #1e1e1e;
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #a1a1a1;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-wrapper[b-p7xaugflkt] {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .blofin-footer[b-p7xaugflkt] {
        padding: 50px 6% 20px;
    }

    .footer-wrapper[b-p7xaugflkt] {
        grid-template-columns: 1fr 1fr;
    }

    .qr-col[b-p7xaugflkt] {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-wrapper[b-p7xaugflkt] {
        grid-template-columns: 1fr;
    }

    .register-btn[b-p7xaugflkt] {
        width: 100%;
    }
}
/* /Controls/Market/FuelYourFuture.razor.rz.scp.css */
.container[b-kcn6kzsld3] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    animation: fadeInUp-b-kcn6kzsld3 1.5s ease forwards;
}

.wallet-img[b-kcn6kzsld3] {
    width: 260px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.5));
    animation: glowPulse-b-kcn6kzsld3 3s ease-in-out infinite;
}

.steps[b-kcn6kzsld3] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    min-width: 300px;
}

.step[b-kcn6kzsld3] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .step[b-kcn6kzsld3]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, rgba(255,255,255,0.15), transparent, rgba(255,255,255,0.15));
        transition: 0.6s;
    }

    .step:hover[b-kcn6kzsld3]::before {
        left: 100%;
    }

    .step:hover[b-kcn6kzsld3] {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }

    .step span[b-kcn6kzsld3] {
        font-size: 1.25rem;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .step:hover span[b-kcn6kzsld3] {
        color: #ffcc66;
    }

.arrow[b-kcn6kzsld3] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.step:hover .arrow[b-kcn6kzsld3] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.arrow svg[b-kcn6kzsld3] {
    width: 20px;
    height: 20px;
    fill: #fff;
    transition: fill 0.3s ease;
}

.step:hover .arrow svg[b-kcn6kzsld3] {
    fill: #ffcc66;
}

@keyframes glowPulse-b-kcn6kzsld3 {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(255, 200, 0, 0.8));
    }
}

@keyframes fadeInUp-b-kcn6kzsld3 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown-b-kcn6kzsld3 {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1[b-kcn6kzsld3] {
        font-size: 2rem;
    }

    .container[b-kcn6kzsld3] {
        flex-direction: column;
    }
    .products-container[b-kcn6kzsld3] {
        flex-direction: column;
        align-items: center;
    }
}

/* Discover More Products Section */
.products-section[b-kcn6kzsld3] {
    max-width: 1200px;
    width: 100%;
    margin-top: 2rem;
    animation: fadeInUp-b-kcn6kzsld3 1.5s ease forwards;
}

    .products-section h2[b-kcn6kzsld3] {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 3rem;
    }

.products-container[b-kcn6kzsld3] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.product-card[b-kcn6kzsld3] {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: left;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .product-card:hover[b-kcn6kzsld3] {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    }

    .product-card h3[b-kcn6kzsld3] {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #fff;
    }

    .product-card p[b-kcn6kzsld3] {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }
/* /Controls/Market/MarqueeArea.razor.rz.scp.css */
.partners-container[b-nc5kjemc7n] {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    background: #000;
    padding: 20px 0;
}

.partners-marquee[b-nc5kjemc7n] {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.partners-track[b-nc5kjemc7n] {
    display: flex;
    gap: 60px;
    animation: scroll-b-nc5kjemc7n 40s linear infinite;
}

    .partners-track img[b-nc5kjemc7n] {
        height: 50px;
        opacity: 0.8;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

        .partners-track img:hover[b-nc5kjemc7n] {
            transform: scale(1.1);
            opacity: 1;
        }

@keyframes scroll-b-nc5kjemc7n {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .partners-track[b-nc5kjemc7n] {
        gap: 40px;
        animation-duration: 30s;
    }

        .partners-track img[b-nc5kjemc7n] {
            height: 35px;
        }
}
/* /Controls/Market/SomeSection.razor.rz.scp.css */

/* Hero Section */
.hero[b-1i63bxwaa7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 5%;
    flex-wrap: wrap;
}

.hero-text[b-1i63bxwaa7] {
    max-width: 600px;
}

    .hero-text h1[b-1i63bxwaa7] {
        font-size: 3rem;
        line-height: 1.2;
        color: #e0e0e0;
        font-weight: bolder;
    }

    .hero-text .highlight[b-1i63bxwaa7] {
        color: #555;
    }

.download-section[b-1i63bxwaa7] {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.qr-code[b-1i63bxwaa7] {
    width: 120px;
    height: 120px;
}

.app-buttons p[b-1i63bxwaa7] {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
}

.store-icons[b-1i63bxwaa7] {
    display: flex;
    gap: 10px;
}

    .store-icons img[b-1i63bxwaa7] {
        width: 35px;
        height: 35px;
        filter: brightness(0.8);
        transition: filter 0.3s;
    }

        .store-icons img:hover[b-1i63bxwaa7] {
            filter: brightness(1.2);
        }

/* Hero Image */
.hero-image img[b-1i63bxwaa7] {
    width: 480px;
    transform: rotate(-8deg);
    transition: transform 0.3s;
}

    .hero-image img:hover[b-1i63bxwaa7] {
        transform: rotate(-5deg) scale(1.03);
    }

/* Responsive */
@media (max-width: 900px) {
    .hero[b-1i63bxwaa7] {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img[b-1i63bxwaa7] {
        margin-top: 40px;
        transform: none;
        width: 280px;
    }

    .download-section[b-1i63bxwaa7] {
        justify-content: center;
    }
}
/* /Controls/Market/TopHeader.razor.rz.scp.css */
:root[b-yu0mem2xrm] {
    --bg: #050505;
    --card: #0b0b0b;
    --muted: #8b8b8b;
    --accent: #ff8b00;
    --accent-2: #f39c12;
    --glass: rgba(255,255,255,0.04);
    --radius: 14px;
    --max-width: 1200px;
    --container-pad: 48px;
}

.page[b-yu0mem2xrm] {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--container-pad)) 24px;
}

/* HERO */
.hero[b-yu0mem2xrm] {
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 36px;
    align-items: center;
    min-height: 76vh;
    margin-top: 24px;
}

.hero-left[b-yu0mem2xrm] {
    padding-right: 12px;
}

h1[b-yu0mem2xrm] {
    font-size: clamp(36px, 6.2vw, 84px);
    margin: 0 0 22px 0;
    color: var(--color-000);
    font-weight: 900;
    letter-spacing: -1px;
}

.lead[b-yu0mem2xrm] {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 18px;
    max-width: 52ch;
    font-weight: 400;
}

/* Signup form row */
.signup-row[b-yu0mem2xrm] {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
}

.input[b-yu0mem2xrm] {
    flex: 1 1 380px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 18px 20px;
    border-radius: 12px;
    color: #ddd;
    font-size: 16px;
    outline: none;
    transition: box-shadow .18s, border-color .18s;
}

    .input[b-yu0mem2xrm]::placeholder {
        color: rgba(255,255,255,0.28)
    }

    .input:focus[b-yu0mem2xrm] {
        box-shadow: 0 6px 18px rgba(0,0,0,0.6);
        border-color: rgba(255,255,255,0.12)
    }

.cta[b-yu0mem2xrm] {
    background: linear-gradient(180deg,var(--primary-color), var(--primary-color));
    color: #0b0b0b;
    padding: 16px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(255,140,0,0.14), inset 0 -2px 0 rgba(0,0,0,0.1);
}

.socials[b-yu0mem2xrm] {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 6px;
}

    .socials .label[b-yu0mem2xrm] {
        color: var(--muted);
        margin-right: 10px;
        font-size: 16px
    }

.icon-btn[b-yu0mem2xrm] {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--glass);
    display: inline-grid;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 38%);
}

    .icon-btn svg[b-yu0mem2xrm] {
        width: 28px;
        height: 28px
    }

/* right hero image */
.hero-right[b-yu0mem2xrm] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 18px;
}

.hero-art[b-yu0mem2xrm] {
    width: 100%;
    height: 100%;
    max-width: 640px;
    border-radius: 16px;
    display: block;
    object-fit: contain
}

/* ticker */
.ticker-wrap[b-yu0mem2xrm] {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 15px
}

.speaker[b-yu0mem2xrm] {
    opacity: 0.6
}


/* responsive */
@media (max-width:980px) {
    .hero[b-yu0mem2xrm] {
        grid-template-columns: 1fr 1fr;
        gap: 18px
    }

    .hero-right[b-yu0mem2xrm] {
        padding: 8px
    }

    .hero-art[b-yu0mem2xrm] {
        max-width: 520px
    }
}

@media (max-width:750px) {
    .page[b-yu0mem2xrm] {
        padding: 28px 18px
    }

    .hero[b-yu0mem2xrm] {
        grid-template-columns: 1fr;
        min-height: 75vh
    }

    .hero-right[b-yu0mem2xrm] {
        order: 2;
        margin-top: 18px
    }

    .hero-left[b-yu0mem2xrm] {
        order: 1
    }

    .signup-row[b-yu0mem2xrm] {
        justify-content: center
    }

    .input[b-yu0mem2xrm] {
        flex: 1 1 100%;
        min-width: 0
    }

    .cta[b-yu0mem2xrm] {
        flex: 0 0 auto
    }

    .socials[b-yu0mem2xrm] {
        justify-content: flex-start
    }
}

@media (max-width:420px) {
    h1[b-yu0mem2xrm] {
        font-size: 34px
    }

    .input[b-yu0mem2xrm] {
        padding: 14px
    }

    .cta[b-yu0mem2xrm] {
        padding: 12px 18px;
        font-size: 15px
    }

    .icon-btn[b-yu0mem2xrm] {
        width: 48px;
        height: 48px
    }
}

/* small touches */
.muted-small[b-yu0mem2xrm] {
    color: var(--muted);
    font-size: 14px;
    margin-top: 18px
}
/* /Controls/Referral/RefInfoComponent.razor.rz.scp.css */
:root[b-kk3nxk237a] {
    --bg-color: #f8f9fa;
    --card-bg-color: #ffffff;
    --text-color: #212529;
    --text-muted-color: #6c757d;
    --border-color: #e9ecef;
    --primary-color: #3672f8;
    --primary-gradient: linear-gradient(90deg, #3672f8, #6943f2);
    --secondary-color: #6c757d;
}


.referral-actions-card[b-kk3nxk237a] {
    background-color: var(--card-bg-color);
    padding: 1.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.stats-grid[b-kk3nxk237a] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .stats-grid[b-kk3nxk237a] {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card[b-kk3nxk237a] {
    background-color: var(--card-bg-color);
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .stat-card:hover[b-kk3nxk237a] {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
    }

.stat-icon[b-kk3nxk237a] {
    font-size: 1.5rem;
}

.stat-value[b-kk3nxk237a] {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color);
}

.stat-label[b-kk3nxk237a] {
    color: var(--text-muted-color);
    font-size: 0.85rem;
}

.referrals-table-card[b-kk3nxk237a] {
    background-color: var(--card-bg-color);
    padding: 1.5rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.table[b-kk3nxk237a] {
    margin-bottom: 0;
}

    .table thead th[b-kk3nxk237a] {
        color: var(--text-muted-color);
        font-weight: 500;
        border-bottom-width: 1px;
    }

    .table tbody tr:last-child td[b-kk3nxk237a] {
        border-bottom: none;
    }

.table-hover tbody tr:hover[b-kk3nxk237a] {
    background-color: var(--bg-color);
}
/* /Controls/SMS/SMSHeaderComponent.razor.rz.scp.css */
.stats-bar[b-6yjp026vkf] {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.stats-items[b-6yjp026vkf] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stats-item[b-6yjp026vkf] {
    display: flex;
    flex-direction: column;
}

.stats-label[b-6yjp026vkf] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.stats-value[b-6yjp026vkf] {
    font-size: 1.75rem;
    font-weight: 600;
    color: #212529;
}

.btn-view-investments[b-6yjp026vkf] {
    background-color: transparent;
    border: 2px solid #3672f8;
    color: #3672f8;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

    .btn-view-investments:hover[b-6yjp026vkf] {
        background-color: #3672f8;
        color: white;
    }
/* /Controls/SMS/SMSPackageComponent.razor.rz.scp.css */
:root[b-ilzcksn9di] {
    --bg-color: #f8f9fa;
    --card-bg-color: #ffffff;
    --text-color: #212529;
    --text-muted-color: #6c757d;
    --border-color: #e9ecef;
}

.investment-card[b-ilzcksn9di] {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: url('card_background_light.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

    .investment-card:hover[b-ilzcksn9di] {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

.card-top[b-ilzcksn9di] {
    padding: 24px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}


.apy-badge[b-ilzcksn9di] {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    color: #000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.card-title[b-ilzcksn9di] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

.card-subtitle[b-ilzcksn9di] {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted-color);
}

.investment-card .card-body[b-ilzcksn9di] {
    padding: 24px;
}

.plan-details[b-ilzcksn9di] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item[b-ilzcksn9di] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label[b-ilzcksn9di] {
    margin: 0;
    color: var(--text-muted-color);
    font-size: 0.9rem;
}

.detail-value[b-ilzcksn9di] {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
    text-align: right;
}

.btn-invest[b-ilzcksn9di] {
    background: linear-gradient(90deg, #3672f8, #6943f2);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-size 0.3s ease;
    background-size: 100% 100%;
}

    .btn-invest:hover[b-ilzcksn9di] {
        background-size: 150% 150%;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(82, 93, 244, 0.4);
        color: white;
    }
/* /Controls/SMS/SMSSidebarComponent.razor.rz.scp.css */

.investments-sidebar[b-pez4vhkcbj] {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 450px;
    height: 100%;
    background-color: #ffffff;
    color: #212529;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-left: 1px solid #e9ecef;
}

    .investments-sidebar.show[b-pez4vhkcbj] {
        transform: translateX(0);
    }

.sidebar-header[b-pez4vhkcbj] {
    padding: 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.btn-back[b-pez4vhkcbj] {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #212529;
    padding: 0;
    line-height: 1;
}

.sidebar-title[b-pez4vhkcbj] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.sidebar-body[b-pez4vhkcbj] {
    padding: 1.5rem;
    overflow-y: auto;
    flex-grow: 1;
}

.sidebar-overlay[b-pez4vhkcbj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

    .sidebar-overlay.show[b-pez4vhkcbj] {
        opacity: 1;
        visibility: visible;
    }

.investments-sidebar[b-pez4vhkcbj]  .investment-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.investments-sidebar[b-pez4vhkcbj]  .item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.investments-sidebar[b-pez4vhkcbj]  .item-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.investments-sidebar[b-pez4vhkcbj]  .item-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

    .investments-sidebar[b-pez4vhkcbj]  .item-status.active {
        background-color: rgba(40, 167, 69, 0.1);
        color: #28a745;
    }

    .investments-sidebar[b-pez4vhkcbj]  .item-status.closed {
        background-color: rgba(220, 53, 69, 0.1);
        color: #dc3545;
    }

    .investments-sidebar[b-pez4vhkcbj]  .item-status.pending {
        background-color: rgba(255, 193, 7, 0.1);
        color: #ffc107;
    }

.investments-sidebar[b-pez4vhkcbj]  .item-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.investments-sidebar[b-pez4vhkcbj]  .detail-row {
    display: flex;
    justify-content: space-between;
}

.investments-sidebar[b-pez4vhkcbj]  .item-details .label {
    color: #6c757d;
}

.investments-sidebar[b-pez4vhkcbj]  .item-details .value {
    font-weight: 500;
    text-align: right;
}

.investments-sidebar[b-pez4vhkcbj]  .item-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    margin-top: 0.25rem;
}

.investments-sidebar[b-pez4vhkcbj]  .btn-close-investment {
    width: 100%;
    background-color: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .investments-sidebar[b-pez4vhkcbj]  .btn-close-investment:hover {
        background-color: #dc3545;
        color: white;
    }

    .investments-sidebar[b-pez4vhkcbj]  .btn-close-investment:disabled {
        background-color: #e9ecef;
        border-color: #e9ecef;
        color: #6c757d;
        cursor: not-allowed;
    }

@media (max-width: 768px) {
    .investments-sidebar[b-pez4vhkcbj] {
        width: 100%;
    }
}
/* /Controls/Trade/ViewTradeModal.razor.rz.scp.css */
#tradeDetailsModal .modal-content[b-b935p43jzf] {
    border-radius: 12px;
}

#tradeDetailsModal .modal-header .badge[b-b935p43jzf] {
    position: absolute;
    top: 1.5rem;
    right: 3.5rem;
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
}

.trade-details-grid[b-b935p43jzf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem 2rem;
    padding-top: 1rem;
}

    .trade-details-grid .detail-item[b-b935p43jzf] {
        display: flex;
        flex-direction: column;
        padding: 0.5rem 0;
        border-bottom: 1px solid #e9ecef;
    }

    .trade-details-grid .detail-label[b-b935p43jzf] {
        color: #6c757d;
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .trade-details-grid .detail-value[b-b935p43jzf] {
        font-weight: 500;
        font-size: 0.95rem;
    }
.asset-logo[b-b935p43jzf] {
    width: 36px;
    height: 36px;
}
.badge[b-b935p43jzf] {
    position: absolute;
    top: 25px;
    right: 55px;
}
@media(max-width: 768px) {
    .badge[b-b935p43jzf] {
        right: 15px;
    }
}
    @media(max-width: 465px) {
        .trade-details-grid .detail-item[b-b935p43jzf] {
            flex-direction: row;
            justify-content: space-between;
        }

        
    }
/* /Controls/Transactions/TransactionHistoryComponent.razor.rz.scp.css */
 .status[b-h7ei4xay12] {
    min-width: 80px;
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
    justify-content: center;
    display: flex;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}
 span.pending[b-h7ei4xay12] {
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    max-width: max-content;
    border-radius: 4px;
    color: rgb(49, 172, 238);
    background: rgba(49, 172, 238, 0.1);
}

 span.approved[b-h7ei4xay12] {
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    max-width: max-content;
    border-radius: 4px;
    color: #4CAF50;
    background: rgb(76 175 80 / 17%);
}

 span.declined[b-h7ei4xay12] {
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    max-width: max-content;
    border-radius: 4px;
    color: #f31100;
    background: rgb(244 67 54 / 17%);
}
/* /Layout/BottomNav.razor.rz.scp.css */
.bottom-nav[b-xnixxewbru] {
    /* On desktop, we don't display the bottom nav */
    display: none;
}

/* Styles for mobile view */
@media (max-width: 768px) {
    .bottom-nav[b-xnixxewbru] {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--body-color);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
        z-index: 1000;
    }

    .nav-item[b-xnixxewbru] {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 0;
        text-decoration: none;
        color: var(--text-muted);
        transition: color 0.3s ease;
    }

        .nav-item i[b-xnixxewbru] {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .nav-item span[b-xnixxewbru] {
            font-size: 12px;
        }

        .nav-item.active[b-xnixxewbru] {
            color: var(--primary-color);
        }
}
/* /Layout/TopBar.razor.rz.scp.css */
/* Navbar */
nav[b-734m8y5va0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu[b-734m8y5va0] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
@media(max-width:760px){
    .menu[b-734m8y5va0] {
        display: none;
    }
}

.menu a[b-734m8y5va0] {
    color: var(--color-000);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

    .menu a:hover[b-734m8y5va0] {
        color: var(--primary-color);
    }

.cta-buttons[b-734m8y5va0] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login[b-734m8y5va0] {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-signup[b-734m8y5va0] {
    background: #f7931a;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

    .btn-signup:hover[b-734m8y5va0] {
        background: #ffaa33;
    }
/* Dropdown styles */
.dropdown[b-734m8y5va0] {
    position: relative;
}

.dropdown-content[b-734m8y5va0] {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background-color: #000000;
    border: 1px solid #f7931a;
    border-radius: 6px;
    min-width: 140px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

    .dropdown-content a[b-734m8y5va0] {
        display: block;
        padding: 10px;
        color: white;
        text-decoration: none;
    }

        .dropdown-content a:hover[b-734m8y5va0] {
            background-color: #121212;
        }

/* Hover effect to show dropdown */
.dropdown:hover .dropdown-content[b-734m8y5va0] {
    display: block;
}
/* /Pages/About.razor.rz.scp.css */

/* HERO SECTION */
.hero-section[b-3fh1epgr21] {
    padding: 10px 2% 90px;
    text-align: left;
    background-image: url(/assets/img/hero-background.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-content h1[b-3fh1epgr21] {
    font-size: 5rem;
    text-align: left;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-000);
}

.underline[b-3fh1epgr21] {
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-content p[b-3fh1epgr21] {
    font-size: 1.1rem;
    color: #a3a3a3;
    line-height: 1.6;
}

/* HIGHLIGHTS */
.highlights[b-3fh1epgr21] {
    padding: 80px 10%;
}

    .highlights h2[b-3fh1epgr21] {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 40px;
        color: var(--color-000);
    }

.highlight-grid[b-3fh1epgr21] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.highlight-box h3[b-3fh1epgr21] {
    color: #f5f5f5;
    font-size: 1rem;
    border-bottom: 1px solid #f9b31a33;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.highlight-box ul[b-3fh1epgr21] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .highlight-box ul li[b-3fh1epgr21] {
        color: #a3a3a3;
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

/* VISION + MISSION + VALUE */
.vision-mission[b-3fh1epgr21] {
    padding: 80px 10%;
    background-color: #0b0c11;
}

.vm-grid[b-3fh1epgr21] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.vm-box[b-3fh1epgr21] {
    border-top: 1px solid #2a2b32;
    padding-top: 20px;
}

    .vm-box h3[b-3fh1epgr21] {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .vm-box p[b-3fh1epgr21] {
        color: #a3a3a3;
        font-size: 0.95rem;
        line-height: 1.6;
    }

/* FOUNDER SECTION */
.founder[b-3fh1epgr21] {
    text-align: center;
    padding: 100px 10%;
    background: linear-gradient(180deg, #0b0c11 0%, #0d0e14 100%);
}

    .founder h2[b-3fh1epgr21] {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 40px;
    }

blockquote[b-3fh1epgr21] {
    font-style: italic;
    color: #f9b31a;
    font-size: 1rem;
    margin-bottom: 40px;
}

.founder-text[b-3fh1epgr21] {
    color: #a3a3a3;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

    .founder-text a[b-3fh1epgr21] {
        color: #f9b31a;
        text-decoration: none;
    }

        .founder-text a:hover[b-3fh1epgr21] {
            text-decoration: underline;
        }

/* PARTNERS */
.partners[b-3fh1epgr21] {
    padding: 60px 10%;
    background-color: #0a0b0f;
}

    .partners h2[b-3fh1epgr21] {
        font-size: 1.3rem;
        font-weight: 600;
    }

/* ANIMATIONS */
.animate-fade[b-3fh1epgr21],
.animate-slide[b-3fh1epgr21] {
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

    .animate-fade.visible[b-3fh1epgr21],
    .animate-slide.visible[b-3fh1epgr21] {
        opacity: 1;
        transform: translateY(0);
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-content h1[b-3fh1epgr21] {
        font-size: 2.2rem;
    }

    .hero-content p[b-3fh1epgr21] {
        font-size: 1rem;
    }

    .highlight-grid[b-3fh1epgr21] {
        gap: 30px;
    }

    .vm-grid[b-3fh1epgr21] {
        gap: 30px;
    }
}
/* /Pages/Assets.razor.rz.scp.css */


.assetContainer[b-e2jj6iieym]  .table {
    border-collapse: separate;
    border-spacing: 0;
}

    .assetContainer[b-e2jj6iieym]  .table tr {
        transition: background-color 0.2s ease;
    }

    .assetContainer[b-e2jj6iieym]  .table tbody tr:hover {
        background-color: #f8f9fa;
    }

    .assetContainer[b-e2jj6iieym]  .table th, .assetContainer[b-e2jj6iieym]  .table td {
        border-bottom: 1px solid #e9ecef;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        z-index: unset;
    }

    .assetContainer[b-e2jj6iieym]  .table tbody tr:last-child td {
        border-bottom: none;
    }

    .assetContainer[b-e2jj6iieym]  .table th {
        font-weight: 500;
        color: #6c757d;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.assetContainer[b-e2jj6iieym]  .asset-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.assetContainer[b-e2jj6iieym]  .asset-logo {
    width: 36px;
    height: 36px;
}

.assetContainer[b-e2jj6iieym]  .asset-name {
    font-weight: 500;
}

.assetContainer[b-e2jj6iieym]  .asset-symbol {
    font-size: 0.9rem;
    color: #6c757d;
}

.assetContainer[b-e2jj6iieym]  .holdings-amount {
    font-weight: 500;
}

.assetContainer[b-e2jj6iieym]  .holdings-usd {
    font-size: 0.9rem;
    color: #6c757d;
}

.assetContainer[b-e2jj6iieym]  .actions-desktop .btn {
    margin-left: 0.5rem;
    min-width: 90px;
}




.assetContainer[b-e2jj6iieym]  .actions-mobile {
    display: none;
}

@media (max-width: 768px) {
    .assetContainer[b-e2jj6iieym]  .actions-desktop {
        display: none;
    }

    .assetContainer[b-e2jj6iieym]  .actions-mobile {
        display: table-cell;
    }
}

/* Modal Styles */
.assetContainer[b-e2jj6iieym]  .crypto-list-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

    .assetContainer[b-e2jj6iieym]  .crypto-list-item:hover {
        background-color: #f8f9fa;
    }

    .assetContainer[b-e2jj6iieym]  .crypto-list-item.selected {
        background-color: #eef2ff;
        border-color: #3672f8;
    }

    .assetContainer[b-e2jj6iieym]  .crypto-list-item .asset-logo {
        width: 32px;
        height: 32px;
    }

    .assetContainer[b-e2jj6iieym]  .crypto-list-item .form-check-input {
        transform: scale(1.25);
        cursor: pointer;
    }

    .assetContainer[b-e2jj6iieym]  .crypto-list-item input:checked {
        background-color: #3672f8;
        border-color: #3672f8;
    }

.assetContainer[b-e2jj6iieym]  #addAssetModal .modal-content {
    border-radius: 12px;
}

.assetContainer[b-e2jj6iieym]  #addAssetModal .form-control:focus {
    box-shadow: none;
    border-color: #3672f8;
}


/* /Pages/ConnectWallet.razor.rz.scp.css */
.search-icon[b-u0o1kqiqyx] {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #6c757d
}

.connectWallet[b-u0o1kqiqyx]  #wallet-search {
    padding-left: 3rem;
    border-radius: .5rem;
    border: 1px solid var(--border-color);
}

    .connectWallet[b-u0o1kqiqyx]  #wallet-search:focus {
        border-color: #3672f8;
        box-shadow: 0 0 0 .25rem rgba(54,114,248,.25)
    }

.connectWallet[b-u0o1kqiqyx]  .wallet-list-card {
    border: 1px solid var(--border-color);
    border-radius: 12px
}

.connectWallet[b-u0o1kqiqyx]  .list-group-item {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

    .connectWallet[b-u0o1kqiqyx]  .list-group-item:not(:last-child) {
        border-bottom: 1px solid var(--border-color);
    }

.connectWallet[b-u0o1kqiqyx]  .wallet-info {
    display: flex;
    align-items: center;
    gap: 1rem
}

.connectWallet[b-u0o1kqiqyx]  .wallet-logo {
    width: 40px;
    height: 40px
}

.connectWallet[b-u0o1kqiqyx]  .wallet-name {
    font-weight: 500
}

.connectWallet[b-u0o1kqiqyx]  .form-check-input {
    width: 3em;
    height: 1.5em;
    cursor: pointer
}

    .connectWallet[b-u0o1kqiqyx]  .form-check-input:checked {
        background-color: #3672f8;
        border-color: #3672f8
    }


.connectWallet[b-u0o1kqiqyx]  #connectWalletModal .modal-content {
    border-radius: 12px
}

.connectWallet[b-u0o1kqiqyx]  #connectWalletModal .form-control:focus {
    border-color: #3672f8;
    box-shadow: 0 0 0 .25rem rgba(54,114,248,.25)
}

.connectWallet[b-u0o1kqiqyx]  #connectWalletModal .form-control[readonly] {
    background: #f8f9fa
}
/* /Pages/CopyExperts.razor.rz.scp.css */
.expertContainer[b-2jcpr9ygw0]  .text-indigo {
    color: var(--primary-color);
}

.expertContainer[b-2jcpr9ygw0]  .section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 2rem;
}

    .expertContainer[b-2jcpr9ygw0]  .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

.expertContainer[b-2jcpr9ygw0]  .text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}


.expertContainer[b-2jcpr9ygw0]  .card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

    .expertContainer[b-2jcpr9ygw0]  .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

.expertContainer[b-2jcpr9ygw0]  .card-body {
    padding: 2rem;
}

.expertContainer[b-2jcpr9ygw0]  .card-title {
    color: var(--primary-color);
    font-weight: 600;
}


/* /Pages/Mining.razor.rz.scp.css */
.smsContainer[b-q640wbbdxp]  .text-indigo {
    color: var(--primary-color);
}

.smsContainer[b-q640wbbdxp]  .section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 2rem;
}

    .smsContainer[b-q640wbbdxp]  .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

.smsContainer[b-q640wbbdxp]  .text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}


.smsContainer[b-q640wbbdxp]  .card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

    .smsContainer[b-q640wbbdxp]  .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

.smsContainer[b-q640wbbdxp]  .card-body {
    padding: 2rem;
}

.smsContainer[b-q640wbbdxp]  .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.smsContainer[b-q640wbbdxp]  .roi-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(72, 76, 127, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5em 0.75em;
    border-radius: 0.5rem;
}

.smsContainer[b-q640wbbdxp]  .btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .smsContainer[b-q640wbbdxp]  .btn-primary-custom:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }

/* /Pages/Stake.razor.rz.scp.css */
.smsContainer[b-6m0xwt32k8]  .text-indigo {
    color: var(--primary-color);
}

.smsContainer[b-6m0xwt32k8]  .section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 2rem;
}

    .smsContainer[b-6m0xwt32k8]  .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

.smsContainer[b-6m0xwt32k8]  .text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}


.smsContainer[b-6m0xwt32k8]  .card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

    .smsContainer[b-6m0xwt32k8]  .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

.smsContainer[b-6m0xwt32k8]  .card-body {
    padding: 2rem;
}

.smsContainer[b-6m0xwt32k8]  .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.smsContainer[b-6m0xwt32k8]  .roi-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(72, 76, 127, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5em 0.75em;
    border-radius: 0.5rem;
}

.smsContainer[b-6m0xwt32k8]  .btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .smsContainer[b-6m0xwt32k8]  .btn-primary-custom:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
/* /Pages/Subscription.razor.rz.scp.css */
.smsContainer[b-0r8fjtqo8f]  .text-indigo {
    color: var(--primary-color);
}

.smsContainer[b-0r8fjtqo8f]  .section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 2rem;
}

    .smsContainer[b-0r8fjtqo8f]  .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

.smsContainer[b-0r8fjtqo8f]  .text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}


.smsContainer[b-0r8fjtqo8f]  .card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

    .smsContainer[b-0r8fjtqo8f]  .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

.smsContainer[b-0r8fjtqo8f]  .card-body {
    padding: 2rem;
}

.smsContainer[b-0r8fjtqo8f]  .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.smsContainer[b-0r8fjtqo8f]  .roi-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(72, 76, 127, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5em 0.75em;
    border-radius: 0.5rem;
}

.smsContainer[b-0r8fjtqo8f]  .btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

    .smsContainer[b-0r8fjtqo8f]  .btn-primary-custom:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }

/* /Pages/Swap.razor.rz.scp.css */
.swapContainer[b-ggj02zfv3l]  .asset-display {
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
}

.swapContainer[b-ggj02zfv3l]  .asset-logo {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.swapContainer[b-ggj02zfv3l]  .asset-name {
    font-weight: 500;
}

.swapContainer[b-ggj02zfv3l]  .asset-symbol {
    font-size: 0.9rem;
    color: #6c757d;
}

.swapContainer[b-ggj02zfv3l]  .balance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 576px) {
    .swapContainer[b-ggj02zfv3l]  .balance-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.swapContainer[b-ggj02zfv3l]  .balance-card {
    background-color: #ffffff;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.swapContainer[b-ggj02zfv3l]  .balance-label {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.swapContainer[b-ggj02zfv3l]  .balance-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.swapContainer[b-ggj02zfv3l]  .transfer-card {
    background-color: #ffffff;
    padding: 1.5rem 2rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
}

.swapContainer[b-ggj02zfv3l]  .transfer-path {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swapContainer[b-ggj02zfv3l]  .transfer-point {
    flex: 1;
}

.swapContainer[b-ggj02zfv3l]  .swap-icon-wrapper {
    padding: 0 1rem;
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.swapContainer[b-ggj02zfv3l]  .swap-icon-btn {
    border: 1px solid #e9ecef;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3672f8;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

    .swapContainer[b-ggj02zfv3l]  .swap-icon-btn:hover {
        background-color: #f8f9fa;
        transform: rotate(180deg);
    }

.swapContainer[b-ggj02zfv3l]  .form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
}

.swapContainer[b-ggj02zfv3l]  .form-select,
.swapContainer[b-ggj02zfv3l]  .form-control {
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

    .swapContainer[b-ggj02zfv3l]  .form-select:focus,
    .swapContainer[b-ggj02zfv3l]  .form-control:focus {
        background-color: #ffffff;
        border-color: #3672f8;
        box-shadow: 0 0 0 0.25rem rgba(54, 114, 248, 0.25);
    }

.swapContainer[b-ggj02zfv3l]  .percentage-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.swapContainer[b-ggj02zfv3l]  .percentage-btn {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #212529;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
}

    .swapContainer[b-ggj02zfv3l]  .percentage-btn:hover {
        background-color: #e2e6ea;
        border-color: #dae0e5;
    }
/* /Pages/Terms.razor.rz.scp.css */
/* HEADER / HERO */
.terms-header[b-g7j0vzifr7] {
    padding: 10px 2% 90px;
    text-align: left;
    background-image: url(/assets/img/hero-background.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

.terms-hero h1[b-g7j0vzifr7] {
    font-size: 5rem;
    text-align: left;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-000);
}

.underline[b-g7j0vzifr7] {
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 25px;
}

.terms-hero p[b-g7j0vzifr7] {
    font-size: 1.1rem;
    color: #a3a3a3;
    max-width: 700px;
}

/* CONTENT AREA */
.terms-content[b-g7j0vzifr7] {
    padding: 80px 10%;
    background-color: #0b0c11;
}

.terms-section[b-g7j0vzifr7] {
    margin-bottom: 50px;
    max-width: 900px;
}

    .terms-section h2[b-g7j0vzifr7] {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--color-000);
        padding-left: 10px;
        text-align: left;
    }

    .terms-section p[b-g7j0vzifr7] {
        color: #a3a3a3;
        font-size: 0.97rem;
        margin-bottom: 15px;
    }

    .terms-section ul[b-g7j0vzifr7] {
        list-style: none;
        padding-left: 0;
        margin: 10px 0 0;
    }

        .terms-section ul li[b-g7j0vzifr7] {
            position: relative;
            color: #a3a3a3;
            font-size: 0.95rem;
            padding-left: 20px;
            margin-bottom: 6px;
        }

            .terms-section ul li[b-g7j0vzifr7]::before {
                content: "•";
                color: #f9b31a;
                position: absolute;
                left: 0;
                top: 0;
            }

    .terms-section a[b-g7j0vzifr7] {
        color: #f9b31a;
        text-decoration: none;
    }

        .terms-section a:hover[b-g7j0vzifr7] {
            text-decoration: underline;
        }

/* ANIMATIONS */
.animate-fade[b-g7j0vzifr7],
.animate-slide[b-g7j0vzifr7] {
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

    .animate-fade.visible[b-g7j0vzifr7],
    .animate-slide.visible[b-g7j0vzifr7] {
        opacity: 1;
        transform: translateY(0);
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .terms-hero h1[b-g7j0vzifr7] {
        font-size: 2.2rem;
    }

    .terms-hero p[b-g7j0vzifr7] {
        font-size: 1rem;
    }

    .terms-section h2[b-g7j0vzifr7] {
        font-size: 1.1rem;
    }
}
