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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1035 50%, #2d1b4e 100%);
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: float 25s infinite ease-in-out reverse;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(5deg); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Navbar Container */
.navbar-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Row 1: Main Row with Status, Connect, Balances */
.navbar-main-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

/* Wallet Section (Status + Connect) */
.wallet-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 6px 10px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 10px;
}

.wallet-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 12px;
    border-right: 1px solid rgba(139, 92, 246, 0.2);
}

.wallet-icon {
    font-size: 22px;
    color: #8b5cf6;
    width: 50px;
    height: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
    align-self: stretch;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wallet-status-text {
    font-size: 10px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.wallet-status-text.disconnected {
    color: #94a3b8;
}

.wallet-status-text.unverified {
    color: #f59e0b;
}

.wallet-status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

.wallet-status-text.disconnected .wallet-status-indicator {
    background: #94a3b8;
}

.wallet-status-text.unverified .wallet-status-indicator {
    background: #f59e0b;
}

.wallet-connect-options {
    display: flex;
    gap: 16px;
    align-items: center;
    flex: 1;
}

.blockchain-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blockchain-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.wallet-connect-btn {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    padding: 8px 12px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.wallet-connect-btn:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-1px);
}

.wallet-connect-btn i:first-child {
    color: #8b5cf6;
    font-size: 14px;
}

.wallet-connect-btn i:last-child {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.wallet-connect-btn img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.wallet-connect-btn.small {
    padding: 8px 12px;
    font-size: 12px;
}

.wallet-connect-group {
    display: flex;
    gap: 8px;
}

/* Balances Section */
.balances-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    min-width: 120px;
}

.balances-header {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.balance-items {
    display: flex;
    gap: 16px;
}

.balance-item {
    display: flex;
    align-items: center;
}

.balance-item:first-child {
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.balance-amount {
    font-size: 14px;
    font-weight: 700;
    color: #a78bfa;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
}

.balance-amount.usdc {
    color: #3b82f6;
}

/* Navigation Section */
.navigation-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 12px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
}

.nav-link {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.nav-link:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    color: #fff;
}

.nav-link i {
    font-size: 16px;
    color: #8b5cf6;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .navbar-main-row {
        flex-direction: column;
        gap: 16px;
    }

    .wallet-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .wallet-status-badge {
        border-right: none;
        padding-right: 0;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .wallet-connect-options {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .blockchain-group {
        width: 100%;
    }

    .wallet-connect-btn {
        width: 100%;
        justify-content: flex-start;
    }

    .wallet-connect-group {
        width: 100%;
    }

    .wallet-connect-btn.small {
        flex: 1;
        justify-content: center;
    }

    .balance-items {
        flex-direction: column;
        gap: 8px;
    }

    .balance-item:first-child {
        padding-right: 0;
        border-right: none;
    }

    .navigation-section {
        grid-template-columns: repeat(2, 1fr);
    }
}
.main-content {
    animation: fadeIn 0.8s ease;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

/* Progress Steps */
.progress-container {
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8b5cf6, #3b82f6);
    opacity: 0.5;
}

.step-card.completed {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.step-card.completed::before {
    background: #10b981;
    opacity: 1;
}

.step-card.active {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
}

.step-card.active::before {
    background: #3b82f6;
    opacity: 1;
}

.step-card.disconnected {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.step-card.disconnected::before {
    background: #ef4444;
    opacity: 1;
}

.step-card.pending {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.step-card.pending::before {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.step-card.pending .step-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.step-header {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 0;
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    flex-shrink: 0;
}

.step-card.completed .step-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.step-card.disconnected .step-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.step-card.active .step-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.step-info {
    flex-grow: 1;
}

.step-number {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.step-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.step-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.step-status.completed {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.step-status.disconnected {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.step-status.active {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #3b82f6;
}

.step-status.pending {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.step-content {
    padding: 32px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    margin-top: 24px;
}

.step-substeps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.substep-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.substep-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.substep-number {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 12px;
}

.substep-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.substep-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* KYC Form */
.kyc-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    display: block;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(139, 92, 246, 0.6);
    font-size: 16px;
}

.form-control-custom {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.help-text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.help-text i {
    color: #3b82f6;
    font-size: 14px;
}

/* Regulatory Notice */
.regulatory-notice {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: start;
    gap: 16px;
}

.regulatory-notice-icon {
    width: 32px;
    height: 32px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #3b82f6;
    flex-shrink: 0;
}

.regulatory-notice-content {
    flex-grow: 1;
}

.regulatory-notice-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.regulatory-notice-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Connect Wallet Notice - matches regulatory notice style */
.connect-wallet-notice {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: start;
    gap: 16px;
}

.connect-wallet-notice-icon {
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ef4444;
    flex-shrink: 0;
}

.connect-wallet-notice-content {
    flex-grow: 1;
}

.connect-wallet-notice-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.connect-wallet-notice-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.connect-wallet-notice-status {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
    flex-shrink: 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: heroFloat 15s infinite ease-in-out;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    margin: 0 auto 24px;
    position: relative;
    animation: heroPulse 2s infinite ease-in-out;
}

@keyframes heroPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(139, 92, 246, 0); }
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.hero-benefit i {
    color: #10b981;
    font-size: 16px;
}

/* Steps Section */
.steps-section {
    margin-bottom: 32px;
}

.steps-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3), rgba(16, 185, 129, 0.3));
    z-index: 0;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.step-item.inactive .step-number {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

.step-item.completed .step-number {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.step-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.step-item.active .step-label {
    color: #8b5cf6;
}

.step-item.inactive .step-label {
    color: rgba(255, 255, 255, 0.4);
}

/* Features Section */
.features-section {
    margin-bottom: 32px;
}

.features-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-icon.deposit {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.feature-icon.withdraw {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.feature-icon.history {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.feature-icon.balance {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.feature-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* Trust Section */
.trust-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-top: 48px;
    margin-bottom: 32px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.trust-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.trust-item i {
    font-size: 18px;
    color: #8b5cf6;
}

.trust-networks {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.network-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.network-badge img {
    width: 20px;
    height: 20px;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Connect Wallet CTA */
.connect-cta-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.connect-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    animation: ctaShimmer 3s infinite;
}

@keyframes ctaShimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.connect-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}

.connect-cta-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    position: relative;
}

.connect-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 28px 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-benefits {
        gap: 16px;
    }

    .steps-container {
        flex-direction: column;
        gap: 24px;
    }

    .steps-container::before {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .connect-cta-buttons {
        flex-direction: column;
    }

    .trust-items {
        gap: 20px;
    }

    .trust-section {
        padding: 20px;
        margin-top: 40px;
    }

    .trust-header {
        flex-direction: column;
        gap: 8px;
    }

    .trust-item {
        font-size: 12px;
    }

    .trust-item i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .trust-section {
        padding: 16px;
        margin-top: 32px;
        margin-bottom: 24px;
    }

    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .trust-item {
        font-size: 11px;
    }

    .powered-text {
        font-size: 13px;
    }

    .learn-more-link {
        font-size: 12px;
    }
}

/* KYC Status Check Box */
.kyc-status-box {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.kyc-status-box.disabled {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.kyc-status-box-icon {
    width: 32px;
    height: 32px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #8b5cf6;
    flex-shrink: 0;
}

.kyc-status-box.disabled .kyc-status-box-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

.kyc-status-box-content {
    flex: 1;
    min-width: 200px;
}

.kyc-status-box-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.kyc-status-box.disabled .kyc-status-box-title {
    color: rgba(255, 255, 255, 0.5);
}

.kyc-status-box-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.kyc-status-box.disabled .kyc-status-box-text {
    color: rgba(255, 255, 255, 0.4);
}

.kyc-status-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.kyc-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

.kyc-status-box.disabled .kyc-input-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
}

.kyc-input-wrapper:focus-within {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.1);
}

.kyc-status-box.disabled .kyc-input-wrapper:focus-within {
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.kyc-input-wrapper i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.kyc-status-box.disabled .kyc-input-wrapper i {
    color: rgba(255, 255, 255, 0.2);
}

.kyc-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    width: 250px;
}

.kyc-input:disabled {
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.3);
}

.kyc-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.kyc-input:disabled::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.kyc-check-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.kyc-check-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
    color: #fff;
}

.kyc-check-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.3);
}

.kyc-check-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .kyc-status-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .kyc-status-form {
        width: 100%;
    }

    .kyc-input-wrapper {
        flex: 1;
    }

    .kyc-input {
        width: 100%;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .navbar-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .connect-wallet-section,
    .wallet-balances-section {
        padding-right: 0;
        padding-bottom: 24px;
    }

    .navigation-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-substeps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 16px;
    }

    .wallet-icon-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-title {
        font-size: 32px;
    }

    .step-card {
        padding: 16px 20px;
        margin-bottom: 20px;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-status {
        margin-left: 0;
        margin-top: 16px;
    }
}


/* Form Card Styles */
.form-card, .info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    animation: fadeIn 0.8s ease 0.2s backwards;
    transition: all 0.3s ease;
}

.form-card:hover, .info-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.form-card.disabled {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.form-card.disabled:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.info-card.disabled {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.info-card.disabled:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.alert-box.disabled {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.title-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.title-icon i {
    color: #8b5cf6;
    font-size: 16px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(139, 92, 246, 0.6);
    font-size: 16px;
    pointer-events: none;
    z-index: 10;
}

.form-control, .form-select {
    padding: 18px 20px 18px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    color: #fff;
}

.form-control:hover, .form-select:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b5cf6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding: 18px 40px 18px 12px;
    height: auto;
    min-height: 58px;
}

/* Placeholder option styling (disabled selected option) */
.form-select option[disabled] {
    color: rgba(255, 255, 255, 0.5);
}

/* Select with placeholder selected (no value) */
.form-select:invalid,
.form-select option[value=""][disabled] {
    color: rgba(255, 255, 255, 0.5);
}

.form-select option {
    background: #1a1035;
    color: #fff;
}

/* Bootstrap Floating Labels - Dark Mode */
.form-floating > label {
    color: rgba(255, 255, 255, 0.5);
    background: transparent !important;
    background-color: transparent !important;
    --bs-body-bg: transparent;
}

.form-floating > .form-control {
    padding: 18px 20px;
    height: auto;
}

/* Override Bootstrap's default white background on floated label */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #8b5cf6;
    background: transparent !important;
    background-color: transparent !important;
    --bs-body-bg: transparent;
}

.balance-display {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 12px;
    font-size: 14px;
}

.balance-label {
    color: rgba(255, 255, 255, 0.6);
}

.balance-display .balance-amount {
    color: #3b82f6;
    font-weight: 600;
}

.quick-amount-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-amount-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* Compact Steps Progress */
.steps-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    margin-bottom: 24px;
}

.step-compact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-compact-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.step-compact.current .step-compact-number {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #8b5cf6;
    color: #8b5cf6;
    animation: stepPulse 2s infinite;
}

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(139, 92, 246, 0); }
}

.step-compact.inactive .step-compact-number {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

.step-compact.completed .step-compact-number {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.step-compact-label {
    font-size: 13px;
    font-weight: 500;
}

.step-compact.current .step-compact-label {
    color: #8b5cf6;
}

.step-compact.inactive .step-compact-label {
    color: rgba(255, 255, 255, 0.4);
}

.step-compact.completed .step-compact-label {
    color: rgba(16, 185, 129, 0.8);
}

.step-connector {
    width: 32px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 576px) {
    .steps-compact {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .step-compact {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 10px;
    }

    .step-connector {
        display: none;
    }

    .step-compact-label {
        font-size: 14px;
    }

    .step-compact-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) and (min-width: 577px) {
    .steps-compact {
        padding: 14px 16px;
        gap: 6px;
    }

    .step-compact-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .step-compact-label {
        font-size: 12px;
    }

    .step-connector {
        width: 20px;
    }
}

/* Alert Connect Styles */
.alert-connect {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: slideIn 0.6s ease;
}

.alert-connect .alert-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-connect .alert-icon {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.2);
}

.alert-icon {
    font-size: 20px;
    color: #3b82f6;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
}

.alert-title {
    font-weight: 600;
    font-size: 15px;
    color: #3b82f6;
}

.alert-text {
    color: rgba(59, 130, 246, 0.9);
    font-size: 13px;
    line-height: 1.6;
}

.info-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.info-value {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

/* Info Card Styles */
.info-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.info-card-title i {
    color: #3b82f6;
}

.info-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item:first-child {
    padding-top: 0;
}

/* Alert Box */
.alert-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 20px;
    animation: slideIn 0.5s ease 0.4s backwards;
}

/* Button Primary Styles */
.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border: none;
    border-radius: 14px;
    padding: 18px 28px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    color: #fff;
}

/* Large Steps Compact Variant */
.steps-compact.steps-compact-large {
    padding: 24px 32px;
    gap: 16px;
    margin-bottom: 32px;
}

.steps-compact-large .step-compact-number {
    width: 56px;
    height: 56px;
    font-size: 20px;
}

.steps-compact-large .step-compact-label {
    font-size: 16px;
    font-weight: 600;
}

.steps-compact-large .step-connector {
    width: 60px;
    height: 3px;
}

.steps-compact-large .step-compact.current .step-compact-number {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

@media (max-width: 768px) {
    .steps-compact.steps-compact-large {
        padding: 20px;
        gap: 12px;
    }

    .steps-compact-large .step-compact-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .steps-compact-large .step-compact-label {
        font-size: 14px;
    }

    .steps-compact-large .step-connector {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .steps-compact.steps-compact-large {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .steps-compact-large .step-compact {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 18px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
    }

    .steps-compact-large .step-connector {
        display: none;
    }

    .steps-compact-large .step-compact-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .steps-compact-large .step-compact-label {
        font-size: 14px;
    }
}

/* Form Buttons Row - Equal Width & Responsive */
.form-buttons-row {
    display: flex;
    gap: 16px;
}

.form-btn-equal {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-secondary-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .form-buttons-row {
        flex-direction: column;
    }

    .form-btn-equal {
        width: 100%;
    }
}

/* Transactions Page Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.stats-grid .stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-icon.deposits {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
}

.stat-icon.withdrawals {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
}

.stat-icon.total {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

/* Transaction Icons */
.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.transaction-icon.deposit {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
}

.transaction-icon.withdraw {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
}

/* Transaction Amount Colors */
.amount.positive {
    color: #94a3b8;
    font-weight: 700;
}

.amount.negative {
    color: #94a3b8;
    font-weight: 700;
}

/* Transaction Status Badges */
.transaction-status {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.transaction-status::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.transaction-status.completed {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}
.transaction-status.completed::before {
    background: #10b981;
}

.transaction-status.pending-user {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}
.transaction-status.pending-user::before {
    background: #f59e0b;
}

.transaction-status.pending-ramp {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}
.transaction-status.pending-ramp::before {
    background: #3b82f6;
}

.transaction-status.failed {
    background: rgba(251, 113, 133, 0.15);
    color: #fb7185;
}
.transaction-status.failed::before {
    background: #fb7185;
}

.stats-grid .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stats-grid .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.transactions-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
}

.transactions-card.disabled {
    opacity: 0.6;
}

.table-header {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-header i {
    color: #8b5cf6;
}

.empty-state {
    text-align: center;
    padding: 48px 24px;
}

.empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #8b5cf6;
    margin: 0 auto 24px;
}

.empty-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.empty-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.6;
}

.empty-actions {
    max-width: 500px;
    margin: 0 auto;
}

.subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid .stat-card {
        padding: 20px;
    }

    .stats-grid .stat-value {
        font-size: 20px;
    }
}

.stat-info {
    display: flex;
    flex-direction: column;
}

/* Title Icon Variants */
.title-icon.deposit {
    background: rgba(148, 163, 184, 0.2);
}

.title-icon.deposit i {
    color: #94a3b8;
}

.title-icon.withdraw {
    background: rgba(148, 163, 184, 0.2);
}

.title-icon.withdraw i {
    color: #94a3b8;
}

/* ============================================
   Connected Pages - Wallet Address Section
   ============================================ */

.wallet-address-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 50px;
    box-sizing: border-box;
}

.wallet-address-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wallet-address {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
}

.disconnect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
    height: 50px;
    box-sizing: border-box;
}

.disconnect-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #a78bfa;
    transform: translateY(-1px);
}

.disconnect-btn i {
    font-size: 12px;
}

/* ============================================
   Connected Pages - Verification Banner
   ============================================ */

.verification-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
    margin-bottom: 24px;
    animation: slideIn 0.6s ease;
}

.verification-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(251, 191, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.verification-banner-icon i {
    font-size: 20px;
    color: #fbbf24;
}

.verification-banner-content {
    flex: 1;
}

.verification-banner-title {
    font-size: 16px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 6px;
}

.verification-banner-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Verified Banner Variant */
.verification-banner.verified {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.verification-banner.verified .verification-banner-icon {
    background: rgba(16, 185, 129, 0.2);
}

.verification-banner.verified .verification-banner-icon i {
    color: #10b981;
}

.verification-banner.verified .verification-banner-title {
    color: #10b981;
}

/* ============================================
   Connected Pages - Responsive
   ============================================ */

@media (max-width: 768px) {
    .wallet-address-section {
        padding: 5px 10px;
    }

    .wallet-address {
        font-size: 11px;
    }

    .disconnect-btn {
        padding: 6px 10px;
        font-size: 11px;
    }

    .verification-banner {
        flex-direction: column;
        padding: 16px 20px;
    }

    .verification-banner-icon {
        width: 40px;
        height: 40px;
    }

    .verification-banner-icon i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .wallet-section {
        flex-wrap: wrap;
        gap: 12px;
    }

    .wallet-address-section {
        order: 3;
        width: 100%;
        height: auto;
    }

    .disconnect-btn {
        order: 4;
        width: 100%;
        height: auto;
        justify-content: center;
        margin-left: 0;
        padding: 10px 12px;
    }
}


/* Filter Section */
.filter-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.filter-btn.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #a78bfa;
}

.search-box {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 16px;
    color: #fff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.search-box::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-box:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.05);
}

/* Transaction Item */
.transaction-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.transaction-item:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
}

.transaction-item:last-child {
    margin-bottom: 0;
}

.transaction-item > div {
    width: 100%;
}

.transaction-details {
    flex: 1;
}

.transaction-type {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
}

.transaction-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.transaction-amount {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-left: auto;
}

.transaction-amount .amount {
    font-size: 15px;
    font-weight: 700;
}

/* Transaction Detail Pages */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 16px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #a78bfa;
}

.summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.transaction-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.transaction-title {
    flex: 1;
}

.transaction-title h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
}

.transaction-title .status {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.transaction-title .status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.transaction-title .status.completed {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}
.transaction-title .status.completed::before {
    background: #10b981;
}

.transaction-title .status.pending-user {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}
.transaction-title .status.pending-user::before {
    background: #f59e0b;
}

.transaction-title .status.pending-ramp {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}
.transaction-title .status.pending-ramp::before {
    background: #3b82f6;
}

.transaction-title .status.failed {
    background: rgba(251, 113, 133, 0.15);
    color: #fb7185;
}
.transaction-title .status.failed::before {
    background: #fb7185;
}

.transaction-amount-large {
    text-align: right;
}

.transaction-amount-large .amount {
    font-size: 24px;
    font-weight: 700;
}

.transaction-amount-large .amount.positive {
    color: #94a3b8;
}

.transaction-amount-large .amount.negative {
    color: #94a3b8;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.secondary {
    background: rgba(255, 255, 255, 0.08);
    margin: 0;
    padding: 12px 16px;
    border-radius: 10px;
    border-bottom: none;
    margin-top: 8px;
    margin-bottom: 8px;
}

.detail-row.secondary .detail-value {
    color: #ffffff;
    font-weight: 600;
}

.detail-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

/* Copy Button */
.copy-btn {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: rgba(139, 92, 246, 0.2);
}

/* Bank Details Section */
.bank-details {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
}

.bank-details-title {
    font-size: 14px;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bank-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.bank-detail-item:last-child {
    border-bottom: none;
}

.bank-detail-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.bank-detail-value {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Transaction Detail Status Badge */
.status {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status.completed {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}
.status.completed::before {
    background: #10b981;
}

.status.pending-user {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}
.status.pending-user::before {
    background: #f59e0b;
}

.status.pending-ramp {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}
.status.pending-ramp::before {
    background: #3b82f6;
}

.status.failed {
    background: rgba(251, 113, 133, 0.15);
    color: #fb7185;
}
.status.failed::before {
    background: #fb7185;
}

/* Detail Row Highlight (for bank transfer details) */
.detail-row.highlight {
    background: rgba(139, 92, 246, 0.08);
    margin: 0;
    padding: 12px 16px;
    border-radius: 10px;
    border-bottom: none;
    margin-bottom: 8px;
}

.detail-row.highlight .detail-value {
    color: #a78bfa;
    font-weight: 600;
}

/* Withdraw Sign Page Styles */
.back-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.overview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
}

.overview-amount {
    text-align: center;
    padding: 32px 0;
    margin-bottom: 24px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 16px;
}

.amount-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.amount-value {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-item:last-of-type {
    border-bottom: none;
}

.detail-item .detail-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.detail-item .detail-label i {
    color: #a78bfa;
    width: 16px;
}

.detail-item .detail-value {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.detail-item .detail-value.highlight {
    color: #a78bfa;
}

.divider {
    height: 1px;
    background: rgba(139, 92, 246, 0.2);
    margin: 16px 0;
}

/* Wallet Balance Info (old navbar style) */
.wallet-balance-info {
    margin-left: auto;
}

.wallet-balance-amount {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.wallet-balance-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.wallet-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

/* Alert spacing inside summary-card */
.summary-card .alert-connect {
    margin: 16px 0;
}

/* Transaction title spacing */
.transaction-title h2 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* Transaction amount large */
/* Header spacing for transaction detail pages */
.summary-card + .btn-back {
    margin-top: 0;
}

/* Secondary Button */
.btn.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    margin-top: 12px;
}

.btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Overview Card Button Spacing */
.overview-card .btn {
    margin-top: 24px;
}

.overview-card .btn + .btn {
    margin-top: 12px;
}

/* Warning Box */
.warning-box {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-top: 24px;
}

.warning-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.warning-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 8px;
    color: #f59e0b;
}

.warning-title {
    font-size: 14px;
    font-weight: 600;
    color: #f59e0b;
}

.warning-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Detail Value Hash (for wallet addresses) */
.detail-value.hash {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    font-size: 13px;
}

/* Alert Content */
.alert-content {
    flex: 1;
}

/* Alert layout fix for horizontal icon + title */
.alert-connect.horizontal {
    flex-direction: row;
    align-items: center;
}

/* Alert variant for pending/warning state */
.alert-connect.alert-warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.alert-connect.alert-warning .alert-icon {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.alert-connect.alert-warning .alert-title {
    color: #fbbf24;
}

.alert-connect.alert-warning .alert-text {
    color: rgba(251, 191, 36, 0.9);
}

/* Alert variant for success state */
.alert-connect.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-connect.alert-success .alert-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.alert-connect.alert-success .alert-title {
    color: #10b981;
}

.alert-connect.alert-success .alert-text {
    color: rgba(16, 185, 129, 0.9);
}

/* Alert variant for error state */
.alert-connect.alert-error {
    background: rgba(251, 113, 133, 0.1);
    border: 1px solid rgba(251, 113, 133, 0.3);
}

.alert-connect.alert-error .alert-icon {
    background: rgba(251, 113, 133, 0.2);
    color: #fb7185;
}

.alert-connect.alert-error .alert-title {
    color: #fb7185;
}

.alert-connect.alert-error .alert-text {
    color: rgba(251, 113, 133, 0.9);
}

/* Muted detail row */
.detail-row.muted .detail-label {
    color: rgba(255, 255, 255, 0.4);
}

.detail-row.muted .detail-value {
    color: rgba(255, 255, 255, 0.4);
}

/* Load More Button */
.load-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.load-more-btn:active {
    transform: scale(0.98);
}

/* View All Link */
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.view-all-link:hover {
    color: #c4b5fd;
    gap: 10px;
}

.view-all-link i {
    font-size: 12px;
}

/* Flash Messages */
.flash-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
    position: relative;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flash-message .flash-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flash-message .flash-content {
    flex: 1;
}

.flash-message .flash-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.flash-message .flash-text {
    font-size: 13px;
    line-height: 1.5;
}

.flash-message .flash-close {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.6;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.flash-message .flash-close:hover {
    opacity: 1;
}

/* Flash Message Variants */
.flash-message.flash-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.flash-message.flash-success .flash-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.flash-message.flash-success .flash-title,
.flash-message.flash-success .flash-text {
    color: rgba(16, 185, 129, 0.9);
}

.flash-message.flash-warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.flash-message.flash-warning .flash-icon {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.flash-message.flash-warning .flash-title,
.flash-message.flash-warning .flash-text {
    color: rgba(251, 191, 36, 0.9);
}

.flash-message.flash-error {
    background: rgba(251, 113, 133, 0.1);
    border: 1px solid rgba(251, 113, 133, 0.3);
}

.flash-message.flash-error .flash-icon {
    background: rgba(251, 113, 133, 0.2);
    color: #fb7185;
}

.flash-message.flash-error .flash-title,
.flash-message.flash-error .flash-text {
    color: rgba(251, 113, 133, 0.9);
}

.flash-message.flash-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.flash-message.flash-info .flash-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.flash-message.flash-info .flash-title,
.flash-message.flash-info .flash-text {
    color: rgba(59, 130, 246, 0.9);
}

/* Flash Message Fade Out */
.flash-message.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ==================== THEME TOGGLE FAB ==================== */
.theme-toggle {
    height: 48px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.25);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #a78bfa;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 16px;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.theme-toggle:hover {
    background: rgba(139, 92, 246, 0.35);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.4), 0 4px 12px rgba(0, 0, 0, 0.25);
    padding: 0 18px 0 16px;
    gap: 10px;
}

.theme-toggle:active {
    transform: scale(0.95);
}

/* Ripple effect */
.theme-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.theme-toggle:active::after {
    transform: scale(2.5);
    opacity: 1;
    transition: transform 0s, opacity 0s;
}

.theme-toggle .fa-sun,
.theme-toggle .fa-moon {
    flex-shrink: 0;
}

.theme-toggle .fa-sun {
    display: none;
}

.theme-toggle .fa-moon {
    display: block;
}

.theme-toggle .toggle-label {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width 0.3s ease, opacity 0.3s ease;
}

.theme-toggle:hover .toggle-label {
    max-width: 150px;
    opacity: 1;
}

/* Header with FAB */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

@media (max-width: 576px) {
    .theme-toggle {
        height: 40px;
        padding: 0 12px;
        font-size: 16px;
    }

    .theme-toggle .toggle-label {
        display: none;
    }
}

/* ==================== LIGHT MODE ==================== */
body.light-mode {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    color: #1e293b;
}

body.light-mode::before,
body.light-mode::after {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
}

/* Theme toggle in light mode */
body.light-mode .theme-toggle {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #7c3aed;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
}

body.light-mode .theme-toggle:hover {
    background: rgba(139, 92, 246, 0.25);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.light-mode .theme-toggle .fa-sun {
    display: block;
}

body.light-mode .theme-toggle .fa-moon {
    display: none;
}

body.light-mode .theme-toggle .toggle-label {
    color: #7c3aed;
}

/* Navbar */
body.light-mode .navbar-container {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.06);
}

/* Wallet Section */
body.light-mode .wallet-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #7c3aed;
}

body.light-mode .wallet-status-text {
    color: #10b981;
}

body.light-mode .wallet-status-text.disconnected {
    color: #64748b;
}

body.light-mode .wallet-status-text.unverified {
    color: #d97706;
}

body.light-mode .wallet-address-label,
body.light-mode .balances-header,
body.light-mode .blockchain-label {
    color: rgba(0, 0, 0, 0.5);
}

body.light-mode .wallet-address {
    color: #1e293b;
}

body.light-mode .wallet-address-section {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .disconnect-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #64748b;
}

body.light-mode .disconnect-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #7c3aed;
}

body.light-mode .wallet-connect-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: #475569;
}

body.light-mode .wallet-connect-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #7c3aed;
}

body.light-mode .wallet-connect-btn i:first-child {
    color: #7c3aed;
}

/* Balances */
body.light-mode .balance-amount {
    color: #7c3aed;
}

body.light-mode .balance-amount.usdc {
    color: #2563eb;
}

body.light-mode .balance-item:first-child {
    border-color: rgba(0, 0, 0, 0.1);
}

/* Navigation */
body.light-mode .nav-link {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: #475569;
}

body.light-mode .nav-link:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #7c3aed;
}

body.light-mode .nav-link.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #7c3aed;
}

body.light-mode .nav-link i {
    color: #7c3aed;
}

/* Headers */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3 {
    color: #1e293b;
}

body.light-mode .subtitle {
    color: #64748b;
}

/* Steps Section */
body.light-mode .steps-section {
    /* No background needed - container only */
}

body.light-mode .steps-title {
    color: #1e293b;
}

body.light-mode .step-compact-number {
    background: rgba(0, 0, 0, 0.05);
    color: #64748b;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .step-compact.current .step-compact-number {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    border-color: transparent;
}

body.light-mode .step-compact.completed .step-compact-number {
    background: #10b981;
    color: #fff;
    border-color: transparent;
}

body.light-mode .step-compact-label {
    color: #64748b;
}

body.light-mode .step-compact.current .step-compact-label {
    color: #7c3aed;
}

body.light-mode .step-connector {
    background: rgba(0, 0, 0, 0.1);
}

/* Hero Section */
body.light-mode .hero-section {
    background: rgba(139, 92, 246, 0.04);
    border-color: rgba(139, 92, 246, 0.15);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
}

body.light-mode .hero-icon {
    background: rgba(139, 92, 246, 0.12);
}

body.light-mode .hero-icon i {
    color: #7c3aed;
}

body.light-mode .hero-title {
    color: #1e293b;
}

body.light-mode .hero-subtitle {
    color: #64748b;
}

body.light-mode .hero-benefit {
    color: #475569;
}

body.light-mode .hero-benefit i {
    color: #10b981;
}

/* CTA Buttons */
body.light-mode .cta-btn.primary {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
}

body.light-mode .cta-btn.secondary {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
    color: #475569;
}

body.light-mode .cta-btn.secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #1e293b;
}

/* Trust Section */
body.light-mode .trust-section {
    background: rgba(139, 92, 246, 0.03) !important;
    border-color: rgba(139, 92, 246, 0.1) !important;
}

body.light-mode .trust-item {
    color: #64748b;
}

body.light-mode .trust-item i {
    color: #7c3aed;
}

/* Cards */
body.light-mode .transactions-card,
body.light-mode .summary-card,
body.light-mode .stat-card,
body.light-mode .overview-card,
body.light-mode .form-card,
body.light-mode .info-card {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(139, 92, 246, 0.12);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.06);
}

body.light-mode .table-header {
    color: #1e293b;
}

body.light-mode .table-header i {
    color: #7c3aed;
}

/* Transaction Items */
body.light-mode .transaction-item {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .transaction-item:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

body.light-mode .transaction-type {
    color: #1e293b;
}

body.light-mode .transaction-date {
    color: #64748b;
}

body.light-mode .transaction-icon.deposit,
body.light-mode .transaction-icon.withdraw {
    background: rgba(148, 163, 184, 0.15);
    color: #64748b;
}

body.light-mode .amount.positive,
body.light-mode .amount.negative {
    color: #475569;
}

/* Status Badges */
body.light-mode .transaction-status.completed,
body.light-mode .status.completed {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

body.light-mode .transaction-status.pending-user,
body.light-mode .status.pending-user {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

body.light-mode .transaction-status.pending-ramp,
body.light-mode .status.pending-ramp {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}

body.light-mode .transaction-status.failed,
body.light-mode .status.failed {
    background: rgba(251, 113, 133, 0.12);
    color: #e11d48;
}

/* Flash Messages */
body.light-mode .flash-message.flash-success {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
}

body.light-mode .flash-message.flash-success .flash-icon {
    background: rgba(16, 185, 129, 0.15);
}

body.light-mode .flash-message.flash-success .flash-title,
body.light-mode .flash-message.flash-success .flash-text {
    color: #059669;
}

body.light-mode .flash-message.flash-warning {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
}

body.light-mode .flash-message.flash-warning .flash-title,
body.light-mode .flash-message.flash-warning .flash-text {
    color: #d97706;
}

body.light-mode .flash-message.flash-error {
    background: rgba(251, 113, 133, 0.08);
    border-color: rgba(251, 113, 133, 0.25);
}

body.light-mode .flash-message.flash-error .flash-title,
body.light-mode .flash-message.flash-error .flash-text {
    color: #e11d48;
}

body.light-mode .flash-message.flash-info {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.25);
}

body.light-mode .flash-message.flash-info .flash-title,
body.light-mode .flash-message.flash-info .flash-text {
    color: #2563eb;
}

body.light-mode .flash-close {
    color: #64748b;
}

/* Stats */
body.light-mode .stat-icon {
    background: rgba(148, 163, 184, 0.15);
    color: #64748b;
}

body.light-mode .stat-icon.total {
    background: rgba(139, 92, 246, 0.15);
    color: #7c3aed;
}

body.light-mode .stat-label {
    color: #64748b;
}

body.light-mode .stat-value {
    color: #1e293b;
}

/* View All Link */
body.light-mode .view-all-link {
    color: #7c3aed;
}

body.light-mode .view-all-link:hover {
    color: #6d28d9;
}

/* Filter Section */
body.light-mode .filter-section {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 92, 246, 0.1);
}

body.light-mode .filter-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #475569;
}

body.light-mode .filter-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #7c3aed;
}

body.light-mode .filter-btn.active {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
    color: #7c3aed;
}

body.light-mode .search-box {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

body.light-mode .search-box::placeholder {
    color: #94a3b8;
}

body.light-mode .search-box:focus {
    background: #fff;
    border-color: rgba(139, 92, 246, 0.5);
}

/* Buttons */
body.light-mode .btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
}

body.light-mode .load-more-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #475569;
}

body.light-mode .load-more-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
    color: #1e293b;
}

/* Detail Rows */
body.light-mode .detail-row {
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .detail-label {
    color: #64748b;
}

body.light-mode .detail-value {
    color: #1e293b;
}

body.light-mode .detail-row.highlight {
    background: rgba(139, 92, 246, 0.08);
}

body.light-mode .detail-row.highlight .detail-value {
    color: #7c3aed;
}

body.light-mode .detail-row.secondary {
    background: rgba(0, 0, 0, 0.03);
}

body.light-mode .detail-row.secondary .detail-value {
    color: #1e293b;
}

body.light-mode .detail-row.muted .detail-label,
body.light-mode .detail-row.muted .detail-value {
    color: #94a3b8;
}

/* Alerts */
body.light-mode .alert-connect {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

body.light-mode .alert-connect .alert-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

body.light-mode .alert-title {
    color: #2563eb;
}

body.light-mode .alert-text {
    color: #3b82f6;
}

body.light-mode .alert-connect.alert-warning {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
}

body.light-mode .alert-connect.alert-warning .alert-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

body.light-mode .alert-connect.alert-warning .alert-title {
    color: #d97706;
}

body.light-mode .alert-connect.alert-warning .alert-text {
    color: #b45309;
}

body.light-mode .alert-connect.alert-success {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

body.light-mode .alert-connect.alert-success .alert-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

body.light-mode .alert-connect.alert-success .alert-title {
    color: #059669;
}

body.light-mode .alert-connect.alert-success .alert-text {
    color: #047857;
}

body.light-mode .alert-connect.alert-error {
    background: rgba(251, 113, 133, 0.08);
    border-color: rgba(251, 113, 133, 0.2);
}

body.light-mode .alert-connect.alert-error .alert-icon {
    background: rgba(251, 113, 133, 0.15);
    color: #e11d48;
}

body.light-mode .alert-connect.alert-error .alert-title {
    color: #e11d48;
}

body.light-mode .alert-connect.alert-error .alert-text {
    color: #be123c;
}

/* Form Elements */
body.light-mode .form-control-custom,
body.light-mode .form-control {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

body.light-mode .form-control-custom::placeholder,
body.light-mode .form-control::placeholder {
    color: #94a3b8;
}

body.light-mode .form-control-custom:focus,
body.light-mode .form-control:focus {
    background: #fff;
    border-color: rgba(139, 92, 246, 0.5);
    color: #1e293b;
}

body.light-mode .form-label {
    color: #475569;
}

body.light-mode .form-floating > label {
    color: #64748b;
    background: transparent !important;
    background-color: transparent !important;
    --bs-body-bg: transparent;
}

body.light-mode .form-floating > .form-control:focus ~ label,
body.light-mode .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #7c3aed;
    background: transparent !important;
    background-color: transparent !important;
    --bs-body-bg: transparent;
}

body.light-mode .input-icon {
    color: #7c3aed;
}

/* Quick Amount Buttons */
body.light-mode .quick-amount-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #475569;
}

body.light-mode .quick-amount-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #7c3aed;
}

/* Summary Row */
body.light-mode .summary-row {
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .summary-label {
    color: #64748b;
}

body.light-mode .summary-value {
    color: #1e293b;
}

/* Copy Button */
body.light-mode .copy-btn {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
    color: #7c3aed;
}

body.light-mode .copy-btn:hover {
    background: rgba(139, 92, 246, 0.2);
}

/* Back Link */
body.light-mode .back-link {
    color: #64748b;
}

body.light-mode .back-link:hover {
    color: #7c3aed;
}

body.light-mode .btn-back {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #475569;
}

body.light-mode .btn-back:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #1e293b;
}

/* Transaction Header */
body.light-mode .transaction-header {
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .transaction-title h2 {
    color: #1e293b;
}

/* Modal Light Mode */
body.light-mode .stellar-modal-overlay,
body.light-mode .solana-modal-overlay {
    background: rgba(0, 0, 0, 0.4);
}

body.light-mode .stellar-modal-content,
body.light-mode .solana-modal-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

body.light-mode .stellar-modal-header,
body.light-mode .solana-modal-header {
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .stellar-btn-back svg path,
body.light-mode .stellar-btn-close svg path,
body.light-mode .solana-btn-back svg path,
body.light-mode .solana-btn-close svg path {
    fill: #64748b;
    stroke: #64748b;
}

body.light-mode .stellar-btn-back:hover svg path,
body.light-mode .stellar-btn-close:hover svg path,
body.light-mode .solana-btn-back:hover svg path,
body.light-mode .solana-btn-close:hover svg path {
    fill: #1e293b;
    stroke: #1e293b;
}

body.light-mode .stellar-modal-title,
body.light-mode .solana-modal-title {
    color: #1e293b;
}

body.light-mode .stellar-wallet-item,
body.light-mode .solana-wallet-item {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

body.light-mode .stellar-wallet-item:hover,
body.light-mode .solana-wallet-item:hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

body.light-mode .stellar-wallet-name,
body.light-mode .solana-wallet-name {
    color: #1e293b;
}

body.light-mode .stellar-wallet-action,
body.light-mode .solana-wallet-action {
    color: #7c3aed;
}

body.light-mode .stellar-badge-new {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

body.light-mode .stellar-arrow path,
body.light-mode .solana-arrow path {
    fill: #7c3aed;
}

/* Title Icon */
body.light-mode .title-icon {
    background: rgba(148, 163, 184, 0.15);
    color: #64748b;
}

/* Warning Box */
body.light-mode .warning-box {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
}

body.light-mode .warning-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

body.light-mode .warning-title {
    color: #d97706;
}

body.light-mode .warning-text {
    color: #b45309;
}

/* Error Page */
body.light-mode .error-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
}

body.light-mode .error-title {
    color: #1e293b;
}

body.light-mode .error-subtitle {
    color: #475569;
}

body.light-mode .error-text {
    color: #64748b;
}

body.light-mode .error-btn-secondary {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #475569;
}

body.light-mode .error-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #1e293b;
}

body.light-mode .error-footer {
    color: #94a3b8;
}

/* KYC Status Box - Light Mode */
body.light-mode .kyc-status-box {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.08);
}

body.light-mode .kyc-status-box-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #7c3aed;
}

body.light-mode .kyc-status-box-title {
    color: #1e293b;
}

body.light-mode .kyc-status-box-text {
    color: #64748b;
}

body.light-mode .kyc-input-wrapper {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .kyc-input-wrapper:focus-within {
    background: #fff;
    border-color: rgba(139, 92, 246, 0.5);
}

body.light-mode .kyc-input-wrapper i {
    color: #7c3aed;
}

body.light-mode .kyc-input {
    color: #1e293b;
}

body.light-mode .kyc-input::placeholder {
    color: #94a3b8;
}

body.light-mode .kyc-check-btn {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
}

/* KYC Modal - Light Mode */
body.light-mode .kyc-modal-overlay {
    background: rgba(0, 0, 0, 0.5);
}

body.light-mode .kyc-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f7ff 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

body.light-mode .kyc-modal-header {
    border-bottom-color: rgba(139, 92, 246, 0.1);
}

body.light-mode .kyc-modal-title {
    color: #1e1b4b;
}

body.light-mode .kyc-modal-title i {
    color: #8b5cf6;
}

body.light-mode .kyc-modal-close {
    background: rgba(139, 92, 246, 0.1);
    color: #6b7280;
}

body.light-mode .kyc-modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

body.light-mode .kyc-modal-description {
    color: #4b5563;
}

body.light-mode .kyc-modal-label {
    color: #374151;
}

body.light-mode .kyc-modal-input-wrapper {
    background: transparent;
}

body.light-mode .kyc-modal-input-wrapper:focus-within {
    background: transparent;
}

body.light-mode .kyc-modal-input-wrapper i {
    color: #8b5cf6;
}

body.light-mode .kyc-modal-input {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
    color: #1e1b4b;
}

body.light-mode .kyc-modal-input:focus {
    background: #fff;
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

body.light-mode .kyc-modal-input::placeholder {
    color: #9ca3af;
}

body.light-mode .kyc-modal-submit {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
}

body.light-mode .kyc-modal-submit:hover {
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

body.light-mode .kyc-modal-hint {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
    color: #4b5563;
}

body.light-mode .kyc-modal-hint i {
    color: #3b82f6;
}

/* KYC Status Trigger - Light Mode */
body.light-mode .kyc-status-trigger {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.15);
}

body.light-mode .kyc-status-trigger:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

body.light-mode .kyc-status-trigger-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

body.light-mode .kyc-status-trigger-title {
    color: #1e1b4b;
}

body.light-mode .kyc-status-trigger-subtitle {
    color: #6b7280;
}

body.light-mode .kyc-status-trigger-arrow {
    color: #8b5cf6;
}

/* Verification Banner - Light Mode */
body.light-mode .verification-banner {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.25);
}

body.light-mode .verification-banner-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

body.light-mode .verification-banner-title {
    color: #d97706;
}

body.light-mode .verification-banner-text {
    color: #b45309;
}

body.light-mode .verification-banner.verified {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.25);
}

body.light-mode .verification-banner.verified .verification-banner-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

body.light-mode .verification-banner.verified .verification-banner-title {
    color: #059669;
}

body.light-mode .verification-banner.verified .verification-banner-text {
    color: #047857;
}

/* Wallet Hint - Light Mode */
body.light-mode .wallet-hint {
    color: #94a3b8 !important;
}

/* Powered by section - Light Mode */
body.light-mode .powered-text {
    color: #64748b !important;
}

body.light-mode .learn-more-link {
    color: #64748b !important;
}

body.light-mode .learn-more-link:hover {
    color: #7c3aed !important;
}

body.light-mode .learn-more-container {
    border-color: rgba(0, 0, 0, 0.06) !important;
}

/* Empty State - Light Mode */
body.light-mode .empty-state {
    color: #64748b;
}

body.light-mode .empty-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

body.light-mode .empty-title {
    color: #1e293b;
}

body.light-mode .empty-text {
    color: #64748b;
}

/* Register Page Form - Light Mode */
body.light-mode .register-form-title {
    color: #1e293b;
}

body.light-mode .register-form-subtitle {
    color: #64748b;
}

/* Info Card - Light Mode */
body.light-mode .info-card-title {
    color: #1e293b;
}

body.light-mode .info-card-text {
    color: #64748b;
}

body.light-mode .info-item {
    color: #475569;
}

body.light-mode .info-item i {
    color: #7c3aed;
}

/* Fee Display - Light Mode */
body.light-mode .fee-label {
    color: #64748b;
}

body.light-mode .fee-value {
    color: #7c3aed;
}

/* Amount Display - Light Mode */
body.light-mode .amount-label {
    color: #64748b;
}

body.light-mode .amount-value {
    color: #1e293b;
}

/* Generic Text Elements - Light Mode */
body.light-mode .text-muted,
body.light-mode .text-secondary {
    color: #64748b !important;
}

body.light-mode .text-white {
    color: #1e293b !important;
}

body.light-mode p {
    color: #475569;
}

body.light-mode small {
    color: #64748b;
}

/* Links - Light Mode */
body.light-mode a:not(.btn):not(.nav-link):not(.cta-btn):not(.error-btn):not(.kyc-modal-submit) {
    color: #7c3aed;
}

body.light-mode a:not(.btn):not(.nav-link):not(.cta-btn):not(.error-btn):not(.kyc-modal-submit):hover {
    color: #6d28d9;
}

/* Divider - Light Mode */
body.light-mode .divider {
    background: rgba(139, 92, 246, 0.15);
}

/* Transaction Amount Large - Light Mode */
body.light-mode .transaction-amount-large .amount {
    color: #475569;
}

/* Overview Card Amount - Light Mode */
body.light-mode .overview-amount .amount-value {
    color: #1e293b;
}

body.light-mode .overview-amount .amount-label {
    color: #64748b;
}

/* Wallet Hint */
.wallet-hint {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

/* Powered by MYKOBO text */
.powered-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

/* Learn More Link */
.learn-more-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* Learn More Container */
.learn-more-container {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Amount Display */
.amount-display {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.amount-received,
.amount-sent {
    color: #ffffff;
}

/* Fee Display */
.fee-display {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
}

/* Amount Display - Light Mode */
body.light-mode .amount-display {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .amount-received,
body.light-mode .amount-sent {
    color: #1e293b;
}

/* Fee Display - Light Mode */
body.light-mode .fee-display {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

body.light-mode .fee-display .balance-label {
    color: #7c3aed;
}

body.light-mode .fee-display .balance-amount {
    color: #7c3aed;
}

/* Steps Section - Light Mode (Additional) */
body.light-mode .step-compact.inactive .step-compact-number {
    background: rgba(0, 0, 0, 0.05);
    color: #94a3b8;
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .step-compact.inactive .step-compact-label {
    color: #94a3b8;
}

body.light-mode .step-compact.completed .step-compact-label {
    color: #059669;
}

/* Wallet Connect Button Chevron - Light Mode */
body.light-mode .wallet-connect-btn i:last-child {
    color: rgba(0, 0, 0, 0.3);
}

body.light-mode .wallet-connect-btn:hover i:last-child {
    color: #7c3aed;
}

/* Info Label and Value - Light Mode */
body.light-mode .info-label {
    color: #64748b;
}

body.light-mode .info-value {
    color: #1e293b;
}

/* Form Select - Light Mode */
body.light-mode .form-select {
    background-color: rgba(0, 0, 0, 0.03);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237c3aed' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    border-color: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

body.light-mode .form-select:focus {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237c3aed' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    border-color: rgba(139, 92, 246, 0.5);
    color: #1e293b;
}

/* Card Title - Light Mode */
body.light-mode .card-title {
    color: #1e293b;
}

body.light-mode .card-title i {
    color: #7c3aed;
}

/* Steps Compact Progress Box - Light Mode */
body.light-mode .steps-compact {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.18);
}

body.light-mode .steps-compact.steps-compact-large {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.18);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.08);
}

/* Info Label/Value inside Alert - Light Mode */
body.light-mode .alert-text .info-label {
    color: #3b82f6;
}

body.light-mode .alert-text .info-value {
    color: #2563eb;
}

/* Balance Display in Form - Light Mode */
body.light-mode .balance-display {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .balance-display .balance-label {
    color: #64748b;
}

body.light-mode .balance-display .balance-amount {
    color: #1e293b;
}

/* Form Card Title - Light Mode */
body.light-mode .form-card .card-title {
    color: #1e293b;
}

body.light-mode .form-card .card-title .title-icon {
    background: rgba(148, 163, 184, 0.15);
    color: #64748b;
}

/* Quick Amount Buttons in Light Mode */
body.light-mode .quick-amount-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #475569;
}

body.light-mode .quick-amount-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #7c3aed;
}

/* Input Group Text - Light Mode */
body.light-mode .input-group-text {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #64748b;
}

/* Balance Label - Light Mode (standalone) */
body.light-mode .balance-label {
    color: #64748b;
}

/* Select Dropdown Options - Light Mode */
body.light-mode .form-select option {
    background: #fff;
    color: #1e293b;
}

/* Light mode select placeholder styling */
body.light-mode .form-select option[disabled] {
    color: #64748b;
}

body.light-mode .form-select:invalid,
body.light-mode .form-select option[value=""][disabled] {
    color: #64748b;
}

/* ===================================
   Error Page Styles
   =================================== */

.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 120px 20px 40px 20px;
}

.error-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    animation: pulse 2s infinite;
}

.error-icon i {
    font-size: 48px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.error-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.error-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.error-btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #fff;
    border: none;
}

.error-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    color: #fff;
}

.error-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.error-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.error-footer {
    position: absolute;
    bottom: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* Error Page - Responsive */
@media (max-width: 576px) {
    .error-title {
        font-size: 28px;
    }

    .error-subtitle {
        font-size: 16px;
    }

    .error-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .error-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Error Page - Light Mode */
body.light-mode .error-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
}

body.light-mode .error-title {
    color: #1e293b;
}

body.light-mode .error-subtitle {
    color: #475569;
}

body.light-mode .error-text {
    color: #64748b;
}

body.light-mode .error-btn-secondary {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #475569;
}

body.light-mode .error-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
    color: #1e293b;
}

body.light-mode .error-footer {
    color: #94a3b8;
}

/* ===================================
   Utility Classes for Inline Styles
   =================================== */

/* Theme toggle fixed position (for error page) */
.theme-toggle-fixed {
    position: fixed;
    top: 24px;
    right: 24px;
}

/* Trust section with top margin */
.trust-section-spaced {
    margin-top: 48px;
}

/* Trust header (logo + text row) */
.trust-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* Trust logo image */
.trust-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    opacity: 0.7;
}

/* Muted trust items */
.trust-items-muted {
    opacity: 0.6;
}

/* Small icon */
.icon-sm {
    font-size: 11px;
}

/* ============================================
   KYC Status Trigger Button
   ============================================ */

.kyc-status-trigger {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 32px;
    text-align: left;
}

.kyc-status-trigger:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.kyc-trigger-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kyc-trigger-icon i {
    font-size: 20px;
    color: #8b5cf6;
}

.kyc-trigger-content {
    flex: 1;
}

.kyc-trigger-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.kyc-trigger-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.kyc-trigger-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.kyc-status-trigger:hover .kyc-trigger-arrow {
    color: #8b5cf6;
    transform: translateX(4px);
}

/* ============================================
   KYC Modal
   ============================================ */

.kyc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.kyc-modal-overlay.active {
    display: flex;
}

.kyc-modal-content {
    background: linear-gradient(135deg, rgba(26, 16, 53, 0.98) 0%, rgba(15, 10, 35, 0.98) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 120px rgba(139, 92, 246, 0.15);
    animation: kycModalSlideIn 0.3s ease;
}

@keyframes kycModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.kyc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kyc-modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.kyc-modal-title i {
    color: #8b5cf6;
    font-size: 22px;
}

.kyc-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kyc-modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.kyc-modal-body {
    padding: 28px;
}

.kyc-modal-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.6;
}

.kyc-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kyc-modal-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kyc-modal-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.kyc-modal-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.kyc-modal-input-wrapper i {
    position: absolute;
    left: 16px;
    color: #8b5cf6;
    font-size: 16px;
}

.kyc-modal-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.kyc-modal-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.kyc-modal-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.kyc-modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.kyc-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    color: #fff;
}

.kyc-modal-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
}

.kyc-modal-hint i {
    color: #3b82f6;
    font-size: 14px;
    flex-shrink: 0;
}

.kyc-modal-hint span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Light mode KYC styles */
body.light-mode .kyc-status-trigger {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 92, 246, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body.light-mode .kyc-status-trigger:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
}

body.light-mode .kyc-trigger-icon {
    background: rgba(139, 92, 246, 0.1);
}

body.light-mode .kyc-trigger-icon i {
    color: #8b5cf6;
}

body.light-mode .kyc-trigger-title {
    color: #1e293b;
}

body.light-mode .kyc-trigger-text {
    color: #64748b;
}

body.light-mode .kyc-trigger-arrow {
    color: #94a3b8;
}

body.light-mode .kyc-modal-overlay {
    background: rgba(0, 0, 0, 0.5);
}

body.light-mode .kyc-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

body.light-mode .kyc-modal-header {
    border-bottom-color: rgba(139, 92, 246, 0.1);
}

body.light-mode .kyc-modal-title {
    color: #1e293b;
}

body.light-mode .kyc-modal-close {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: #64748b;
}

body.light-mode .kyc-modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

body.light-mode .kyc-modal-description {
    color: #475569;
}

body.light-mode .kyc-modal-label {
    color: #475569;
}

body.light-mode .kyc-modal-input {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(139, 92, 246, 0.15);
    color: #1e293b;
}

body.light-mode .kyc-modal-input:focus {
    background: #fff;
    border-color: rgba(139, 92, 246, 0.5);
}

body.light-mode .kyc-modal-input::placeholder {
    color: #94a3b8;
}

body.light-mode .kyc-modal-hint {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.15);
}

body.light-mode .kyc-modal-hint span {
    color: #475569;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .kyc-status-trigger {
        padding: 16px 20px;
        gap: 12px;
    }

    .kyc-trigger-icon {
        width: 40px;
        height: 40px;
    }

    .kyc-trigger-icon i {
        font-size: 18px;
    }

    .kyc-trigger-title {
        font-size: 15px;
    }

    .kyc-trigger-text {
        font-size: 13px;
    }

    .kyc-modal-content {
        margin: 10px;
        border-radius: 20px;
    }

    .kyc-modal-header {
        padding: 20px;
    }

    .kyc-modal-title {
        font-size: 18px;
    }

    .kyc-modal-body {
        padding: 20px;
    }
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pagination-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    transition: width 0.3s ease;
    z-index: 0;
}

.pagination-btn:hover::before {
    width: 100%;
}

.pagination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(139, 92, 246, 0.1);
}

.pagination-btn:active {
    transform: translateY(0);
}

.pagination-btn span,
.pagination-btn i {
    position: relative;
    z-index: 1;
}

.pagination-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.pagination-btn:hover i.fa-chevron-left,
.pagination-btn:hover i.fa-angles-left {
    transform: translateX(-3px);
}

.pagination-btn:hover i.fa-chevron-right,
.pagination-btn:hover i.fa-angles-right {
    transform: translateX(3px);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

/* Page Indicator */
.page-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    min-width: 80px;
    justify-content: center;
}

.page-current {
    color: #8b5cf6;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.page-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.page-total {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pagination-container {
        gap: 8px;
        padding: 16px;
    }

    .pagination-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .pagination-btn span {
        display: none;
    }

    .pagination-btn i {
        font-size: 14px;
    }

    .page-indicator {
        padding: 10px 16px;
        min-width: 60px;
        font-size: 13px;
    }

    .page-current {
        font-size: 14px;
    }
}
