    :root {
    /* Modern Color System */
    --primary: #FF6B47;
    --primary-hover: #FF5733;
    --primary-light: rgba(255, 107, 71, 0.1);
    --primary-glow: rgba(255, 107, 71, 0.2);
    
    /* Semantic Colors */
    --success: #00D395;
    --success-light: rgba(0, 211, 149, 0.1);
    --warning: #FFB800;
    --error: #FF6B6B;
    
    /* Token Colors */
    --usdt: #26A17B;
    --trx: #FF0013;
    
    /* Dark Theme by Default */
    --white: #FFFFFF;
    --gray-50: #1F2937;
    --gray-100: #374151;
    --gray-200: #4B5563;
    --gray-300: #6B7280;
    --gray-400: #9CA3AF;
    --gray-500: #D1D5DB;
    --gray-600: #E5E7EB;
    --gray-700: #F3F4F6;
    --gray-800: #F9FAFB;
    --gray-900: #FFFFFF;
    
    /* Background System */
    --bg-primary: #0F1419;
    --bg-secondary: #1A1F2E;
    --bg-card: #1F2937;
    --bg-input: #111827;
    --bg-hover: #374151;
    
    /* Border System */
    --border: #374151;
    --border-light: #1F2937;
    --border-focus: var(--primary);
    
    /* Shadow System */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px -1px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
    
    /* Typography Scale */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    
    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;
    }

    /* Light mode only for desktop */
    @media (prefers-color-scheme: light) and (min-width: 768px) {
    :root {
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-card: #FFFFFF;
    --bg-input: #F9FAFB;
    --bg-hover: #F3F4F6;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    }
    }

    /* Light mode for mobile */
    @media (max-width: 767px) {
    :root {
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-card: #FFFFFF;
    --bg-input: #F9FAFB;
    --bg-hover: #F3F4F6;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    }
    }

    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }

    body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-secondary);
    color: var(--gray-900);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

    .app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    }

    .container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-4);
    }

    .header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6) 0;
    margin-bottom: var(--space-8);
    }

    .logo {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
    }

    .logo:hover {
    transform: scale(1.05);
    }

    .nav {
    display: flex;
    gap: var(--space-6);
    }

    .nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color 0.2s ease;
    }

    .nav-link:hover {
    color: var(--gray-900);
    }

    .exchange-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-6);
    }

    .exchange-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    }

    .exchange-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
    }

    .settings-btn {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    }

    .settings-btn:hover {
    background: var(--bg-hover);
    color: var(--gray-700);
    }

    .token-input {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    margin-bottom: var(--space-3);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    }

    .token-input:hover {
    border-color: var(--gray-400);
    box-shadow: var(--shadow-md);
    }

    .token-input:focus-within {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--primary-light), var(--shadow-md);
    }

    .token-input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
    }

    .token-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--gray-600);
    }

    .token-balance {
    font-size: var(--text-sm);
    color: var(--gray-500);
    cursor: pointer;
    transition: color 0.2s ease;
    }

    .token-balance:hover {
    color: var(--gray-700);
    }

    .token-balance.connected {
    color: var(--success);
    }

    .token-input-main {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    width: 100%;
    }

    .token-selector {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-3);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    min-width: 120px;
    }

    .token-selector:hover {
    background: var(--bg-hover);
    }

    .token-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 600;
    color: white;
    }

    .token-icon.usdt {
    background: var(--usdt);
    }

    .token-icon.trx {
    background: var(--trx);
    }

    .token-name {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--gray-900);
    }

    .token-chevron {
    width: 16px;
    height: 16px;
    color: var(--gray-400);
    }

    .amount-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-900);
    text-align: right;
    font-family: inherit;
    min-width: 0;
    cursor: text;
    }

    .amount-input::placeholder {
    color: var(--gray-500);
    font-weight: 400;
    }

    .amount-input[readonly] {
    color: var(--gray-600);
    cursor: default;
    }

    .max-btn {
    background: var(--primary-light);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-sm);
    padding: var(--space-1) var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    }

    .max-btn:hover {
    background: var(--primary);
    color: white;
    }

    .swap-container {
    display: flex;
    justify-content: center;
    margin: var(--space-2) 0;
    position: relative;
    }

    .swap-btn {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--gray-500);
    z-index: 1;
    }

    .swap-btn:hover {
    border-color: var(--border-focus);
    color: var(--primary);
    /* transform: rotate(180deg); */
    }

    .exchange-rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4);
    background: var(--bg-input);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    }

    .rate-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    }

    .rate-value {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--gray-900);
    }

    .info-icon {
    width: 16px;
    height: 16px;
    color: var(--gray-400);
    cursor: help;
    }

    .exchange-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: var(--space-6);
    }

    .exchange-btn:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    }

    .exchange-btn:disabled {
    background: var(--gray-300);
    color: var(--gray-500);
    cursor: not-allowed;
    transform: none;
    }

    .price-details {
    background: var(--bg-input);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    margin-bottom: var(--space-6);
    }

    .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
    }

    .price-row:last-child {
    margin-bottom: 0;
    padding-top: var(--space-3);
    border-top: 1px solid var(--border);
    font-weight: 600;
    }

    .price-label {
    font-size: var(--text-sm);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    }

    .price-value {
    font-size: var(--text-sm);
    color: var(--gray-900);
    font-weight: 500;
    }

    .price-value.highlight {
    color: var(--success);
    font-weight: 600;
    }

    .info-card {
    background: var(--success-light);
    border: 1px solid rgba(0, 211, 149, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    margin-bottom: var(--space-6);
    }

    .info-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--success);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    }

    .info-text {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.5;
    }

    .trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    }

    .trust-item {
    text-align: center;
    padding: var(--space-3);
    }

    .trust-number {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-1);
    }

    .trust-label {
    font-size: var(--text-xs);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    }

    .how-it-works {
    margin-top: var(--space-8);
    }

    .section-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    text-align: center;
    }

    .steps {
    display: grid;
    gap: var(--space-3);
    }

    .step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    }

    .step:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
    }

    .step-number {
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-xs);
    font-weight: 600;
    flex-shrink: 0;
    }

    .step-text {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.5;
    }

    .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    /* z-index: 999; */
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    }

    .modal.active {
    display: flex;
    }

    .modal-content {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    max-width: 400px;
    width: 100%;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    position: relative;
    }

    .modal-close {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: transparent;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: var(--space-1);
    border-radius: var(--radius-md);
    transition: color 0.2s ease, background 0.2s ease;
    }

    .modal-close:hover {
    color: var(--gray-600);
    background: var(--bg-hover);
    }

    .modal-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    text-align: center;
    }

    .modal-buttons {
    display: flex;
    gap: var(--space-3);
    flex-direction: column;
    margin-top: var(--space-6);
    }

    .modal-btn {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: var(--text-sm);
    }

    .btn-secondary {
    background: var(--bg-input);
    color: var(--gray-700);
    border: 1px solid var(--border);
    }

    .btn-secondary:disabled {
    background: var(--gray-300);
    color: var(--gray-500);
    cursor: not-allowed;
    transform: none;
    }

    /* .btn-secondary:hover {
    background: var(--bg-hover);
    } */

    .btn-primary {
    background: var(--primary);
    color: white;
    }

    .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    }

    .loading {
    position: relative;
    overflow: hidden;
    }

    .loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s ease-in-out infinite;
    }

    .exchange-btn.loading {
    position: relative;
    overflow: hidden;
    }

    .exchange-btn.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    }

    @keyframes spin {
    to {
    transform: rotate(360deg);
    }
    }

    @keyframes shimmer {
    to {
    left: 100%;
    }
    }

    /* Responsive Design */
    @media (max-width: 767px) {
    .container {
    padding: var(--space-3);
    max-width: 100%;
    margin: 0;
    }
    
    .header {
    flex-direction: row;
    gap: var(--space-2);
    text-align: left;
    padding: var(--space-3) 0;
    margin-bottom: var(--space-6);
    }
    
    .header .logo {
    font-size: var(--text-lg);
    }
    
    .header .logo img {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    }
    
    .nav {
    justify-content: center;
    }
    
    .exchange-card {
    padding: var(--space-4);
    margin-bottom: var(--space-4);
    border-radius: var(--radius-xl);
    }
    
    .exchange-header {
    margin-bottom: var(--space-4);
    }
    
    .exchange-title {
    font-size: var(--text-lg);
    }
    
    .token-input {
    padding: var(--space-3);
    margin-bottom: var(--space-2);
    border-width: 2px;
    background: var(--bg-card);
    }
    
    .token-input-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-2);
    width: 100%;
    }
    
    .token-selector {
    flex-shrink: 0;
    min-width: 90px;
    padding: var(--space-2);
    gap: var(--space-2);
    }
    
    .token-name {
    font-size: var(--text-sm);
    }
    
    .amount-input {
    font-size: var(--text-base);
    text-align: right;
    flex: 1;
    min-width: 60px;
    padding: var(--space-1);
    }
    
    .max-btn {
    flex-shrink: 0;
    padding: var(--space-1) var(--space-2);
    font-size: 10px;
    }
    
    .exchange-rate {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3);
    gap: var(--space-2);
    }
    
    .rate-label {
    flex: 1;
    font-size: var(--text-xs);
    display: flex;
    align-items: center;
    gap: var(--space-1);
    }
    
    .rate-value {
    flex-shrink: 0;
    font-size: var(--text-xs);
    font-weight: 600;
    }
    
    .info-icon {
    width: 12px;
    height: 12px;
    }
    
    .trust-indicators {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    }
    
    .trust-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: var(--space-3) var(--space-4);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    }
    
    .trust-number {
    font-size: var(--text-xl);
    }
    
    .modal-content {
    margin: var(--space-3);
    max-width: calc(100vw - 24px);
    padding: var(--space-5);
    }
    
    .modal-buttons {
    flex-direction: column;
    gap: var(--space-3);
    }
    
    .price-details {
    margin-bottom: var(--space-4);
    }
    
    .how-it-works {
    margin-top: var(--space-6);
    }
    
    .steps {
    gap: var(--space-2);
    }
    
    .step {
    padding: var(--space-3);
    }
    
    .logo {
    font-size: var(--text-xl);
    }
    
    .logo img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    }
    
    .section-title {
    font-size: var(--text-lg);
    }
    
    /* Telegram block mobile styles */
    .telegram-block {
    margin-top: var(--space-6) !important;
    padding: var(--space-4) !important;
    }
    
    .telegram-block h3 {
    font-size: var(--text-base) !important;
    }
    
    .telegram-block p {
    font-size: var(--text-xs) !important;
    }
    
    .telegram-block a {
    padding: var(--space-2) var(--space-4) !important;
    font-size: var(--text-xs) !important;
    }
    
    /* Footer mobile styles */
    footer {
    margin-top: var(--space-6) !important;
    padding: var(--space-4) 0 !important;
    }
    
    footer div:first-child {
    gap: var(--space-4) !important;
    flex-direction: column !important;
    }
    
    footer a {
    font-size: var(--text-xs) !important;
    padding: var(--space-1) !important;
    }
    
    * {
    box-sizing: border-box;
    max-width: 100%;
    word-wrap: break-word;
    }
    
    input, button, select {
    max-width: 100%;
    overflow: hidden;
    }
    
    body {
    overflow-x: hidden;
    }
    }

    .main-connect-button {
    background: var(--primary);
    color: white;
    flex: 1;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: var(--text-sm);
    }

    .additional-connect-button {
    width: 100%;
    background: #FF4444;
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: var(--space-6);
    }

    .main-connect-button:hover, .additional-connect-button:hover {
    background: #CC3333;
    transform: translateY(-1px);
    }

    @media (min-width: 768px) and (max-width: 1024px) {
    .container {
    max-width: 700px;
    padding: var(--space-6);
    }
    
    .trust-indicators {
    grid-template-columns: repeat(3, 1fr);
    }
    }

    @media (min-width: 1025px) {
    .container {
    max-width: 800px;
    padding: var(--space-8);
    }
    
    .exchange-card {
    padding: var(--space-8);
    }
    }

    /* Accessibility */
    .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    }

    *:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    }

    button:focus,
    input:focus {
    outline: none;
    }

    @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    }
    }

    /* Custom styles for dynamically added elements */
    .cw-modal-title {
    font-weight: 900 !important;
    }
    
    .cw-wallet__name {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 500 !important;
    }
    </style>
