body {
    background: rgba(12, 17, 23, 1);
    background: var(--body-background);
    scroll-behavior: smooth;
    color: var(--text-color);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif
}

:root {
    --text: #e5e7eb;
    --primary-color: #36d300;
    --primary-light: #6fa840;
    --primary-dark: #2c4600;
    --primary-color-hover: #218838;
    --primary-light-hover: #6fa840;
    --primary-dark-hover: #2c4600;
    --secondary-color: #FD8309;
    --secondary-light: #ffcc80;
    --secondary-dark: #cc8400;
    --background-color: rgba(250, 250, 250, 0.1);
    --background-light: rgba(250, 250, 250, 0.1);
    --background-dark: rgba(0, 0, 0, 0.1);
    --body-background: rgba(12, 17, 23, 1.0);
    --landing-bg-image: url("/GameMax-Background-Nebula-X (2).webp");
    --header-background: rgba(0, 0, 0, 0.9);
    --header-background-light: rgba(250, 250, 250, 0.9);
    --header-background-dark: rgba(0, 0, 0, 0.9);
    --sidebar-background: rgba(0, 0, 0, 0.7);
    --sidebar-background-light: rgba(250, 250, 250, 0.7);
    --sidebar-background-dark: rgba(0, 0, 0, 0.7);
    --sidebar-icons: rgba(250, 250, 250, 0.8);
    --sidebar-icons-light: rgba(0, 0, 0, 0.8);
    --sidebar-icons-dark: rgba(250, 250, 250, 0.8);
    --icon-color: rgba(250, 250, 250, 1);
    --icon-color-light: rgba(0, 0, 0, 1);
    --icon-color-dark: rgba(250, 250, 250, 1);
    --toggle-color: rgba(250, 250, 250, 0.2);
    --toggle-color-light: rgba(0, 0, 0, 0.2);
    --toggle-color-dark: rgba(250, 250, 250, 0.2);
    --discover-background: rgba(0, 0, 0, 0.6);
    --discover-background-light: rgba(250, 250, 250, 0.6);
    --discover-background-dark: rgba(0, 0, 0, 0.6);
    --text-color: #fff;
    --text-light: #000000;
    --text-dark: #fff;
    --border-color: rgba(250, 250, 250, 0.3);
    --border-light: rgba(0, 0, 0, 0.3);
    --border-dark: rgba(250, 250, 250, 0.3);
    --strong-border-color: rgba(250, 250, 250, 1);
    --strong-border-light: rgba(0, 0, 0, 1);
    --strong-border-dark: rgba(250, 250, 250, 1);
    --border-dashed: 2px dashed var(--border-color);
    --border-dotted: 2px dotted var(--border-dark);
    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-lg: 25px;
    --border-radius-full: 50px;
    --button-color: #36d300;
    --button-hover-color: #2c4600;
    --button-text-color: #ffffff;
    --success-color: #36d300;
    --warning-color: #ffc107;
    --danger-color: #dc2626;
    --info-color: #17a2b8;
    --accent: #36d300;
    --bg: #0b0c0f;
    --card-bg: rgba(13, 15, 19, 0.6);
    --muted: #9ca3af;
    --error: #ff6b6b;
    --font-size-xl: 20px;
    --transition-default: all 0.2s ease;
    --transition-fast: all 0.1s ease;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 6px 10px rgba(0, 0, 0, 0.15);
    --spacing-xxs: 4px;
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 40px;
    --font-size-xxs: 10px;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-xxl: 32px;
    --modal-content-background: rgba(0, 0, 0, 0.8);
    --modal-content-background-light: rgba(250, 250, 250, 0.8);
    --modal-content-background-dark: rgba(0, 0, 0, 0.8);
    --modal-overlay-background: rgba(0, 0, 0, 0.75);
    --modal-overlay-backdrop-filter: blur(10px);
    --modal-overlay-z-index: 1000;
    --transition-default: all 0.3s ease;
    --transition-fast: all 0.2s ease-in;
    --transition-slow: all 0.5s ease-out;
    --transition-fade-in: opacity 0.3s ease-in;
    --transition-fade-out: opacity 0.3s ease-out;
    --animation-fade-in: fadeIn 0.3s ease-in forwards;
    --animation-fade-out: fadeOut 0.3s ease-out forwards;
    --animation-scale-up: scaleUp 0.4s ease-in-out forwards;
    --animation-scale-down: scaleDown 0.4s ease-in-out forwards;
    --site-logo-url: url(https://res.cloudinary.com/dzlopmfj8/image/upload/v1724797193/BuzzVibe-TM-Gradient-outline_jfxvg6.png);
    --image-invert-filter: invert(0);
    body.dark-mode {
        --background-color: var(--background-dark);
        --text-color: var(--text-dark);
        --body-background: rgba(12, 17, 23, 1.0);
        --header-background: var(--header-background-dark);
        --sidebar-background: var(--sidebar-background-dark);
        --border-color: var(--border-dark);
        --strong-border-color: var(--strong-border-dark);
        --sidebar-icons: var(--sidebar-icons-dark);
        --discover-background: var(--discover-background-dark);
        --modal-content-background: var(--modal-content-background-dark);
        --icon-color: var(--icon-color-dark);
        --toggle-color: var(--toggle-color-dark);
        --image-invert-filter: invert(0)
    }
    body.light-mode {
        --background-color: var(--background-light);
        --text-color: var(--text-light);
        --body-background: #f5f5f5;
        --header-background: var(--header-background-light);
        --sidebar-background: var(--sidebar-background-light);
        --border-color: var(--border-light);
        --strong-border-color: var(--strong-border-light);
        --sidebar-icons: var(--sidebar-icons-light);
        --discover-background: var(--discover-background-light);
        --modal-content-background: var(--modal-content-background-light);
        --icon-color: var(--icon-color-light);
        --toggle-color: var(--toggle-color-light);
        --image-invert-filter: invert(1)
    }
}

.crypto-wallet-sidebar-dialog {
    position: fixed;
    inset: 0;
    z-index: 30;
    overflow: hidden;
    pointer-events: none
}

.crypto-wallet-sidebar-overlay {
    display: none
}

.crypto-wallet-sidebar-container {
    position: fixed;
    right: 0;
    max-width: 100%;
    display: flex;
    height: 100vh;
    pointer-events: none
}

.crypto-wallet-sidebar-panel {
    position: relative;
    width: 25vw;
    max-width: 25vw;
    background-color: #303335;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    pointer-events: auto
}

.crypto-wallet-sidebar-inner {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    width: 100%
}

.crypto-wallet-cover-container {
    position: relative;
    text-align: center;
    margin-bottom: 10px
}

.crypto-wallet-cover-image {
    width: 100%;
    height: 12rem;
    object-fit: cover
}

.crypto-wallet-cover-container:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 1
}

.crypto-wallet-avatar {
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translateX(-50%) translateY(-50%);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: .15rem solid #2fdbeb;
    z-index: 2
}

.crypto-wallet-avatar-info {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(30% + 3rem);
    width: 100%;
    text-align: center;
    z-index: 2
}

.crypto-wallet-title {
    color: var(--text-color);
    font-size: 2rem;
    margin: 0
}

.crypto-wallet-subtitle {
    color: #ccc;
    font-size: .5rem;
    margin: .25rem 0 0
}

.crypto-wallet-close-button-container {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    margin-bottom: 10px
}

.crypto-wallet-close-button {
    border-radius: 50%;
    padding: .25rem;
    cursor: pointer
}

.crypto-wallet-close-icon {
    width: 1.5rem;
    height: 1.5rem
}

.crypto-wallet-buttons-container {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
    gap: .5rem;
    padding-bottom: 5px;
    align-items: center;
    margin-bottom: 10px
}

.crypto-wallet-button-wrapper {
    flex: 1 1;
    text-align: center
}

.crypto-wallet-button {
    width: 60px;
    height: 60px;
    padding: .5rem;
    border-radius: .25rem;
    border: none;
    cursor: pointer;
    font-size: .875rem;
    margin-bottom: .25rem;
    display: flex;
    justify-content: center;
    align-items: center
}

.crypto-wallet-button-icon {
    width: 2.5rem;
    height: 2.5rem
}

.crypto-wallet-button.wallet {
    border-radius: 50%;
    background-color: #00d332
}

.crypto-wallet-button.buy {
    border-radius: 50%;
    background-color: #00d1d1
}

.crypto-wallet-button.sell {
    border-radius: 50%;
    background-color: #00a3fe
}

.crypto-wallet-button.pay {
    border-radius: 50%;
    background-color: #0070e0
}

.crypto-wallet-button.trade {
    border-radius: 50%;
    background-color: #05e5ab
}

.crypto-wallet-button-title {
    color: var(--text-color);
    font-size: .75rem
}

.crypto-wallet-section-title {
    display: flex;
    align-items: center;
    margin: .5rem .5rem 10px
}

.crypto-wallet-section-icon {
    background-color: #00d332
}

.crypto-wallet-section-icon,
.crypto-wallet-section-icon-buy {
    border-radius: 50%;
    padding: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .5rem
}

.crypto-wallet-section-icon-buy {
    background-color: #00d1d1
}

.crypto-wallet-section-icon-sell {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

.crypto-wallet-section-icon-pay,
.crypto-wallet-section-icon-sell {
    background-color: #00a3fe;
    padding: .5rem;
    margin-right: .5rem
}

.crypto-wallet-section-icon-img {
    width: 1rem;
    height: 1rem;
    color: var(--text-color)
}

.crypto-wallet-section-text {
    color: var(--text-color)
}

.crypto-wallet-form-container {
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border-radius: 12px;
    margin: .5rem;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: formSlideIn .4s ease-out;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden
}

@keyframes formSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.crypto-wallet-form {
    gap: 1rem
}

.crypto-wallet-form,
.crypto-wallet-input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box
}

.crypto-wallet-input-group {
    position: relative;
    margin-bottom: .25rem
}

.crypto-wallet-input-group:focus-within .crypto-wallet-label {
    color: var(--primary-color, #2fdbeb);
    font-weight: 700
}

.crypto-wallet-label {
    color: var(--text-color);
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .5rem;
    letter-spacing: .025em
}

.crypto-wallet-input-wrapper {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    width: 100%
}

.crypto-wallet-input {
    height: 48px;
    padding: 0 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .1);
    outline: none;
    font-size: .95rem;
    font-weight: 500;
    transition: all .3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    width: 100%
}

.crypto-wallet-input::placeholder {
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
    font-style: italic
}

.crypto-wallet-input:hover {
    border-color: rgba(255, 255, 255, .2);
    background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .06))
}

.crypto-wallet-input:focus {
    border-color: var(--primary-color, #2fdbeb);
    background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .08));
    box-shadow: 0 0 0 3px rgba(47, 219, 235, .1)
}

.crypto-wallet-input-note {
    height: 80px;
    resize: vertical;
    min-height: 80px;
    max-height: 120px
}

.crypto-wallet-currency,
.crypto-wallet-placeholder-balance {
    position: absolute;
    right: 1rem;
    font-size: .875rem;
    color: var(--text-color);
    background: linear-gradient(135deg, rgba(47, 219, 235, .2), rgba(47, 219, 235, .1));
    padding: .375rem .75rem;
    border-radius: 20px;
    margin-left: .5rem;
    font-weight: 600;
    border: 1px solid rgba(47, 219, 235, .3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

.crypto-wallet-placeholder-balance {
    background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
    border: 1px solid rgba(255, 255, 255, .2)
}

.crypto-wallet-chevron-wrapper {
    position: absolute;
    right: 1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: .25rem;
    border-radius: 50%;
    transition: background-color .2s ease
}

.crypto-wallet-chevron-wrapper:hover {
    background-color: rgba(255, 255, 255, .1)
}

.crypto-wallet-vertical-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(135deg, rgba(47, 219, 235, .6), rgba(47, 219, 235, .3));
    border-radius: 1px;
    margin-right: .75rem
}

.crypto-wallet-input-group-pay-with .crypto-wallet-vertical-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.crypto-wallet-chevron-icon {
    width: 1rem;
    height: 1rem
}

.crypto-wallet-summary {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-left: 1rem;
    padding-right: 1rem
}

.crypto-wallet-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.crypto-wallet-summary-item,
.crypto-wallet-summary-value {
    color: var(--text-color);
    font-size: 1rem
}

.crypto-wallet-divider {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    margin: .5rem 0
}

.crypto-wallet-dashboard-value-bold-part {
    font-weight: 700
}

.crypto-wallet-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.crypto-wallet-bottom-bar {
    margin-top: auto;
    background-color: #333;
    padding: .5rem;
    border-radius: .5rem;
    display: flex;
    align-items: center
}

.crypto-wallet-bottom-icon {
    background-color: #00d332
}

.crypto-wallet-section-text {
    font-size: 1rem;
    font-weight: 700
}

.crypto-wallet-balance-container {
    border-top: 1px solid rgba(0, 0, 0, .8);
    border-bottom: 1px solid rgba(0, 0, 0, .8)
}

.crypto-wallet-balance-inner-container {
    background-color: #393d3f;
    padding: 1rem;
    border-radius: .5rem;
    margin: 1rem 1.5rem
}

.crypto-wallet-balance-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    padding: .5rem 0;
    font-size: .875rem;
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.crypto-wallet-balance-value {
    font-weight: 400
}

.crypto-wallet-pay-portal-container {
    display: flex;
    align-items: center;
    gap: .5rem
}

.crypto-wallet-pay-portal {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    flex: 1 1
}

.crypto-wallet-pay-portal-button {
    flex: 1 1;
    padding: .75rem;
    color: var(--text-color);
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    border: none
}

.crypto-wallet-pay-portal-button.ap {
    background-color: #00a3fe
}

.crypto-wallet-pay-portal-button.ch {
    background-color: #0865fe
}

.crypto-wallet-pay-portal-button.ca {
    background-color: #00d030
}

.crypto-wallet-pay-portal-button.pp {
    background-color: #008cff
}

.crypto-wallet-pay-portal-button.x {
    background-color: #00defc
}

.crypto-wallet-pay-portal-button.boa {
    background-color: #ff001f
}

.crypto-wallet-chevron-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--text-color);
    cursor: pointer
}

.crypto-wallet-dashboard-item {
    padding: 1rem
}

.crypto-wallet-dashboard-title {
    margin-top: .5rem;
    font-size: .875rem
}

.crypto-wallet-offer-button {
    padding: 1rem;
    background-color: #00d332
}

.crypto-wallet-dashboard-container {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    overflow-x: auto;
    padding: .5rem
}

.crypto-wallet-dashboard-item {
    flex: 1 1;
    background-color: #393d3f;
    padding: .5rem 5px 5px;
    border-radius: 5px;
    color: var(--text-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative
}

.crypto-wallet-dashboard-sub-title {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: .875rem
}

.crypto-wallet-dashboard-image {
    margin-top: 2rem;
    margin-bottom: .5rem
}

.crypto-wallet-dashboard-value {
    font-size: .75rem;
    margin-top: .25rem
}

.rewards-image {
    height: 40px
}

.convert-image {
    height: 34px
}

.trading-image {
    height: 40px
}

.crypto-wallet-offers-container {
    display: flex;
    gap: 1rem;
    padding: .5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, .3) transparent;
    -webkit-scrollbar-width: thin;
    -webkit-scrollbar-track: transparent;
    -webkit-scrollbar-thumb: rgba(148, 163, 184, .3)
}

.crypto-wallet-offers-container::-webkit-scrollbar {
    height: 6px
}

.crypto-wallet-offers-container::-webkit-scrollbar-track {
    background: transparent
}

.crypto-wallet-offers-container::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, .3);
    border-radius: 3px
}

.crypto-wallet-offers-container::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, .5)
}

.crypto-wallet-offer-item {
    aspect-ratio: 1;
    width: 200px;
    min-width: 200px;
    height: 200px;
    background-color: #393d3f;
    border-radius: 16px;
    color: var(--text-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
    transition: transform .2s ease, box-shadow .2s ease;
    flex-shrink: 0
}

.crypto-wallet-offer-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4)
}

.crypto-wallet-offer-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, .8));
    z-index: 1
}

.crypto-wallet-offer-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%
}

.crypto-wallet-offer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .8);
    margin-bottom: .5rem;
    letter-spacing: .5px;
    text-transform: capitalize
}

.crypto-wallet-offer-description {
    font-size: .875rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .8)
}

.crypto-wallet-offer-accept-button {
    padding: 8px 24px;
    background: linear-gradient(135deg, #00d332, #00b32a);
    border-radius: 20px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    border: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 4px 16px rgba(0, 209, 50, .3);
    transition: all .2s ease
}

.crypto-wallet-offer-accept-button:hover {
    background: linear-gradient(135deg, #00e639, #00d332);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 209, 50, .4)
}

.crypto-wallet-transfer-buttons {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    box-sizing: border-box;
    width: 100%;
    gap: .5rem
}

.crypto-wallet-transfer-button {
    flex: 1 1;
    background-color: var(--primary-color);
    color: var(--text-color);
    border-radius: 15px;
    padding: .5rem 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    font-weight: 700;
    font-size: 12px;
    box-sizing: border-box;
    min-width: 0
}

.crypto-wallet-input-group-date-time .crypto-wallet-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.crypto-wallet-input-group-date-time .crypto-wallet-chevron-icon {
    margin-left: .5rem
}

.crypto-wallet-input-group-upload {
    position: relative
}

.crypto-wallet-input-upload {
    padding-right: 2.5rem
}

.crypto-wallet-upload-note {
    display: block;
    font-size: .75rem;
    color: #888;
    margin-top: .5rem
}

.crypto-wallet-section-icon-pay {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00aaff;
    border-radius: 50%;
    width: 40px;
    height: 40px
}

.crypto-wallet-input-group-date-time-wrapper {
    display: flex;
    gap: 1rem
}

.crypto-wallet-input-group-date-time {
    flex: 1 1
}

.crypto-wallet-payment-options {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: 1rem;
    padding-left: 10px;
    padding-right: 10px
}

.crypto-wallet-option-button {
    flex: 1 1;
    background-color: #2d2f31;
    color: var(--text-color);
    border: none;
    border-radius: 15px;
    padding: 2px 14px;
    text-align: center;
    cursor: pointer;
    font-size: 12px
}

.crypto-wallet-option-button:hover {
    background-color: #3c3f42
}

.crypto-wallet-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(30, 30, 30, .95), rgba(20, 20, 20, .95));
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
    z-index: 10;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: dropdownSlideIn .2s ease-out
}

@keyframes dropdownSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-8px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.crypto-wallet-dropdown-item {
    display: flex;
    align-items: center;
    padding: .75rem 1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all .2s ease;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.crypto-wallet-dropdown-item:last-child {
    border-bottom: none
}

.crypto-wallet-dropdown-item:hover {
    background: linear-gradient(135deg, rgba(47, 219, 235, .1), rgba(47, 219, 235, .05));
    color: var(--primary-color, #2fdbeb);
    transform: translateX(4px)
}

.crypto-wallet-dropdown-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: .75rem;
    transition: transform .2s ease;
    flex-shrink: 0
}

.crypto-wallet-dropdown-item:hover .crypto-wallet-dropdown-icon {
    transform: scale(1.1)
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: rgba(245, 245, 245, 1);
    padding: 2rem
}

.login-title {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: rgba(50, 50, 50, 1);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600
}

.login-error {
    color: rgba(200, 0, 0, .8);
    font-size: .9rem;
    margin-bottom: 1rem
}

.login-form {
    width: 100%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, .95);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif
}

.login-input {
    width: 100%;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(200, 200, 200, .7);
    border-radius: 4px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, .98);
    color: rgba(50, 50, 50, 1);
    transition: border-color .2s ease
}

.login-input:focus {
    border-color: rgba(100, 100, 100, .8);
    outline: none
}

.login-button {
    width: 100%;
    padding: .75rem;
    background-color: rgba(50, 50, 50, 1);
    color: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color .2s ease
}

.login-button:hover {
    background-color: rgba(30, 30, 30, 1)
}

.login-signup-text {
    margin-top: 1rem;
    font-size: .9rem;
    color: rgba(80, 80, 80, 1)
}

.login-signup-link {
    color: rgba(30, 30, 30, 1);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease
}

.login-signup-link:hover {
    color: rgba(0, 0, 0, 1);
    text-decoration: underline
}

.signup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: rgba(245, 245, 245, 1);
    padding: 2rem
}

.signup-title {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: rgba(50, 50, 50, 1);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600
}

.signup-error {
    color: rgba(200, 0, 0, .8);
    font-size: .9rem;
    margin-bottom: 1rem
}

.signup-form {
    width: 100%;
    max-width: 400px;
    background-color: rgba(255, 255, 255, .95);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif
}

.signup-input {
    width: 100%;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(200, 200, 200, .7);
    border-radius: 4px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, .98);
    color: rgba(50, 50, 50, 1);
    transition: border-color .2s ease
}

.signup-input:focus {
    border-color: rgba(100, 100, 100, .8);
    outline: none
}

.signup-button {
    width: 100%;
    padding: .75rem;
    background-color: rgba(50, 50, 50, 1);
    color: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color .2s ease
}

.signup-button:hover {
    background-color: rgba(30, 30, 30, 1)
}

.signup-login-text {
    margin-top: 1rem;
    font-size: .9rem;
    color: rgba(80, 80, 80, 1)
}

.signup-login-link {
    color: rgba(30, 30, 30, 1);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease
}

.signup-login-link:hover {
    color: rgba(0, 0, 0, 1);
    text-decoration: underline
}

.crypto-wallet-balance-container {
    background-color: #393d3f;
    border-radius: var(--border-radius-md, 20px);
    padding: 1rem
}

.crypto-wallet-balance-inner-container {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.crypto-wallet-balance-item:last-child {
    border-bottom: none
}

.crypto-wallet-balance-title {
    font-weight: 700
}

.crypto-wallet-balance-title,
.crypto-wallet-balance-value {
    color: var(--text-color, #fff);
    font-size: var(--font-size-sm, 14px)
}

.crypto-wallet-ledger-container {
    background-color: #393d3f;
    border-radius: var(--border-radius-md, 20px);
    padding: 1rem;
    color: var(--text-color, #fff)
}

.crypto-wallet-ledger-container p {
    margin: .5rem 0;
    font-size: var(--font-size-sm, 14px)
}

.dropdown-container {
    position: relative;
    box-sizing: border-box;
    width: 100%
}

.dropdown-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + .25rem);
    left: 0;
    width: 100%;
    background-color: #333;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: .5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto
}

.dropdown-item {
    padding: .5rem 1rem;
    color: var(--text-color, #fff);
    cursor: pointer
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, .1)
}

.admin-token-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--background-color, #303335);
    border-radius: var(--border-radius-md, 20px);
    color: var(--text-color, #fff);
    box-shadow: var(--box-shadow, 0 4px 6px rgba(0, 0, 0, .1))
}

.admin-token-container h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: var(--font-size-xl, 24px)
}

.send-xrp-modal-overlay {
    background: transparent;
    pointer-events: none
}

.send-xrp-modal {
    pointer-events: auto;
    background-color: rgba(0, 0, 0, .8);
    padding: 2rem;
    border: 1px solid rgba(250, 250, 250, .6);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative
}

.send-xrp-modal-close-button {
    position: absolute;
    top: .5rem;
    right: .5rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #aaa;
    cursor: pointer;
    transition: color .2s ease
}

.send-xrp-modal-close-button:hover {
    color: #333
}

.send-xrp-modal-title {
    margin-bottom: 1rem;
    text-align: center
}

.send-xrp-modal-form-group {
    margin-bottom: 1rem
}

.send-xrp-modal-label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 700
}

.send-xrp-modal-input {
    width: 100%;
    padding: .5rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #fff
}

.send-xrp-modal-dropdown-container {
    position: relative;
    display: flex;
    align-items: center
}

.send-xrp-modal-dropdown-icon {
    cursor: pointer;
    margin-left: -2rem
}

.send-xrp-modal-icon {
    width: 20px;
    height: 20px
}

.send-xrp-modal-dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 150px;
    overflow-y: auto;
    z-index: 10
}

.send-xrp-modal-dropdown-item {
    padding: .5rem;
    cursor: pointer
}

.send-xrp-modal-dropdown-item:hover {
    background-color: #f0f0f0
}

.send-xrp-modal-send-status {
    margin-top: .5rem;
    color: #333;
    text-align: center
}

.send-xrp-modal-send-button {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: .75rem 1.5rem;
    background-color: #0070f3;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer
}

.send-xrp-modal-send-button:hover {
    background-color: #0353af
}

.home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    background-image: var(--landing-bg-image);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    background-attachment: fixed
}

.transaction-link {
    display: inline-block;
    margin-top: 1rem;
    padding: .75rem 1.5rem;
    background-color: #0070f3;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color .2s ease-in-out
}

.transaction-link:hover {
    background-color: #005bb5
}

.admin-link {
    display: inline-block;
    margin-top: 1rem;
    padding: .75rem 1.5rem;
    background-color: #7e00f3;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color .2s ease-in-out
}

.admin-link:hover {
    background-color: #5f03b5
}

.token-creation-form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center
}

.token-creation-form-title {
    font-size: 2rem;
    margin-bottom: 1rem
}

.token-creation-form-form {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.token-creation-form-group {
    text-align: left
}

.token-creation-form-label {
    display: block;
    font-weight: 700;
    margin-bottom: .5rem
}

.token-creation-form-input {
    width: 100%;
    padding: .5rem;
    box-sizing: border-box
}

.token-creation-form-button {
    padding: .75rem;
    background-color: #0070f3;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color .2s ease-in-out
}

.token-creation-form-button:disabled {
    opacity: .6;
    cursor: not-allowed
}

.token-creation-form-button:hover:not(:disabled) {
    background-color: #005bb5
}

.token-creation-form-preview {
    margin-top: 1rem
}

.token-creation-form-preview-title {
    font-size: 1.5rem;
    margin-bottom: .5rem
}

.token-creation-form-logo {
    max-width: 150px
}

.token-creation-form-response {
    margin-top: 1rem;
    background: #f0f0f0;
    padding: 1rem;
    border-radius: 4px;
    text-align: left;
    white-space: pre-wrap
}

.token-creation-form-response-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700
}

.token-creation-form-response-text {
    margin: .5rem 0 0
}

.admin-dashboard-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    font-family: Arial, sans-serif
}

.admin-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem
}

.admin-dashboard-header h1 {
    font-size: 2.5rem;
    margin: 0
}

.admin-dashboard-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center
}

.admin-dashboard-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem
}

.admin-dashboard-stat-card {
    flex: 1 1;
    background-color: rgba(250, 250, 250, .3);
    border: 1px solid rgba(250, 250, 250, .6);
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1)
}

.admin-dashboard-stat-card h2 {
    font-size: 1.2rem;
    margin-bottom: .5rem
}

.admin-dashboard-transactions {
    margin-bottom: 2rem
}

.admin-dashboard-transactions h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem
}

.admin-dashboard-transactions-table {
    width: 100%;
    border-collapse: collapse
}

.admin-dashboard-transactions-table td,
.admin-dashboard-transactions-table th {
    border: 1px solid #ddd;
    padding: .75rem;
    text-align: left
}

.admin-dashboard-transactions-table th {
    background-color: #0070f3;
    color: #fff
}

.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    box-sizing: border-box
}

.admin-modal-content {
    background: linear-gradient(180deg, rgba(15, 23, 42, .95), rgba(2, 6, 23, .95));
    border: 1px solid rgba(54, 211, 0, .3);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .05);
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box
}

.admin-modal-content--small {
    max-width: 400px
}

.admin-modal-content--medium {
    max-width: 600px
}

.admin-modal-content--large {
    max-width: 800px
}

.admin-modal-content--xlarge {
    max-width: 1200px
}

.admin-modal-content.admin-modal-content--fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0
}

.admin-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(54, 211, 0, .2);
    box-sizing: border-box
}

.admin-modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(148, 163, 184, 1);
    flex: 1 1
}

.admin-modal-close-button {
    background: rgba(54, 211, 0, .1);
    border: 1px solid rgba(54, 211, 0, .3);
    border-radius: 8px;
    color: rgba(148, 163, 184, 1);
    cursor: pointer;
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    box-sizing: border-box
}

.admin-modal-close-button:hover {
    background: rgba(54, 211, 0, .2);
    border-color: rgba(54, 211, 0, .5);
    color: rgba(255, 255, 255, 1)
}

.admin-modal-close-button--absolute {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10
}

.admin-modal-body {
    flex: 1 1;
    overflow-y: auto;
    padding: 0 1.5rem 1.5rem;
    box-sizing: border-box
}

@media (max-width:768px) {
    .admin-modal-overlay {
        padding: .5rem
    }
    .admin-modal-content {
        max-width: 100vw;
        max-height: 100vh;
        border-radius: 12px
    }
    .admin-modal-content--large,
    .admin-modal-content--medium,
    .admin-modal-content--small,
    .admin-modal-content--xlarge {
        max-width: 100vw
    }
    .admin-modal-header {
        padding: 1rem 1rem 0
    }
    .admin-modal-body {
        padding: 0 1rem 1rem
    }
    .admin-modal-close-button--absolute {
        top: .5rem;
        right: .5rem
    }
}

.transactions-page-container {
    padding: 2rem;
    background-color: #f7f9fc;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    color: #333
}

.transactions-page-title {
    text-align: center;
    margin-bottom: 1.5rem
}

.transactions-page-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0
}

.transactions-page-buttons-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem
}

.transactions-page-button {
    background-color: #3182ce;
    border: none;
    border-radius: 4px;
    color: #fff;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color .3s ease;
    margin: 0 .5rem
}

.transactions-page-button:hover {
    background-color: #2b6cb0
}

.transactions-page-table-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    margin-bottom: 1.5rem
}

.transactions-page-transactions-table {
    width: 100%;
    border-collapse: collapse
}

.transactions-page-transactions-table td,
.transactions-page-transactions-table th {
    padding: .75rem 1rem;
    border: 1px solid #e2e8f0;
    text-align: left;
    font-size: .9rem
}

.transactions-page-transactions-table th {
    background-color: #edf2f7;
    font-weight: 600
}

.transactions-page-transactions-table tr:nth-child(2n) {
    background-color: #f7fafc
}

.transactions-page-transactions-table a {
    color: #3182ce;
    text-decoration: none
}

.transactions-page-transactions-table a:hover {
    text-decoration: underline
}

.transactions-page-load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem
}

.transactions-page-loading {
    text-align: center;
    font-size: 1rem;
    color: #555
}

.admin-users-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.admin-users-table {
    width: 100%;
    border-collapse: collapse
}

.admin-users-table td,
.admin-users-table th {
    padding: .75rem 1rem;
    border: 1px solid #e2e8f0;
    text-align: left;
    font-size: .9rem
}

.admin-users-table th {
    background-color: #edf2f7;
    font-weight: 600
}

.admin-users-table tr:nth-child(2n) {
    background-color: #f7fafc
}

.admin-users-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
}

.crypto-asset-selector {
    margin: 16px 0 8px
}

.crypto-asset-selector-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin
}

.crypto-asset-selector-list::-webkit-scrollbar {
    height: 6px
}

.crypto-asset-selector-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2);
    border-radius: 999px
}

.crypto-asset-chip {
    flex: 0 0 auto;
    border: 1px solid #d1d5db;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-weight: 600;
    font-size: .9rem;
    transition: background .2s ease, color .2s ease, border-color .2s ease
}

.crypto-asset-chip:hover {
    background: #f3f4f6
}

.crypto-asset-chip.active {
    background: #36d300;
    border-color: #36d300;
    color: #0b0c0f
}

.crypto-wallet-section,
.crypto-wallet-trading-form-container,
.crypto-wallet-trading-table-container {
    margin-bottom: 10px
}