/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container Layout */
.container {
    display: flex;
    min-height: 100vh;
}

/* Left Column Styles */
.left-column {
    flex: 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    overflow: hidden;
}

.left-column::before {
    content: '';
    position: absolute;
    =top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.left-column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Login Left Column Specific Styles */
.login-left::before {
    background:
        radial-gradient(circle at 50% 10%, rgba(255, 255, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
}

/* Brand Section */
.brand-section {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.login-logo {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.logo-text h1 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.hero-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #00d4aa;
    display: block;
}

.login-highlight {
    color: #ffd700;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.5;
    max-width: 500px;
}

/* Features */
.features {
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 170, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4aa;
    font-size: 20px;
    flex-shrink: 0;
}

.login-feature-icon {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

.feature-content h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
}

/* Right Column Styles */
.right-column {
    flex: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.form-container {
    width: 100%;
    max-width: 450px;
}

/* Form Title */
.form-title {
    color: #00d4aa;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

/* Welcome Header for Login */
.welcome-header {
    margin-bottom: 40px;
}

.welcome-title {
    color: #8b5cf6;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.welcome-underline {
    width: 60px;
    height: 3px;
    background: #8b5cf6;
    margin-bottom: 10px;
}

.welcome-subtitle {
    color: #8b5cf6;
    font-size: 16px;
}

/* Community CTA */
.community-cta {
    text-align: center;
    margin-bottom: 30px;
}

.community-btn {
    background: #90EE90;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.community-btn:hover {
    background: #7dd87d;
    transform: translateY(-2px);
}

.community-text {
    color: #666;
    font-size: 14px;
}

/* Form Styles */
.signup-form,
.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #999;
    font-size: 16px;
    z-index: 2;
}

.input-wrapper input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #00d4aa;
}

/* Remember Me Checkbox */
.remember-me {
    margin-bottom: 25px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked+.checkmark {
    background: #00d4aa;
    border-color: #00d4aa;
}

.checkbox-wrapper input[type="checkbox"]:checked+.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

/* Login Button */
.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Sign In/Sign Up Links */
.signin-link,
.signup-link {
    text-align: center;
    margin-bottom: 30px;
}

.signin-link p,
.signup-link p {
    color: #666;
    font-size: 14px;
}

.signin-link a,
.signup-link a {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link a {
    color: #3b82f6;
}

.signin-link a:hover,
.signup-link a:hover {
    text-decoration: underline;
}

/* Privacy/Security Section */
.privacy-section,
.security-section {
    margin-top: 30px;
}

.privacy-content,
.security-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #00d4aa;
}

.security-content {
    border-left-color: #8b5cf6;
}

.privacy-content i,
.security-content i {
    color: #00d4aa;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.security-content i {
    color: #8b5cf6;
}

.privacy-content p,
.security-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .left-column {
        padding: 40px 30px;
        min-height: 50vh;
    }

    .right-column {
        padding: 30px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .left-column {
        padding: 30px 20px;
    }

    .right-column {
        padding: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .form-title,
    .welcome-title {
        font-size: 24px;
    }

    .logo-text h1 {
        font-size: 24px;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .left-column {
        padding: 20px 15px;
    }

    .right-column {
        padding: 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .form-title,
    .welcome-title {
        font-size: 20px;
    }

    .input-wrapper input {
        padding: 12px 12px 12px 40px;
        font-size: 14px;
    }

    .submit-btn,
    .login-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Animation and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container {
    animation: fadeInUp 0.6s ease-out;
}

.feature-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Focus States and Accessibility */
input:focus,
button:focus {
    outline: 2px solid #00d4aa;
    outline-offset: 2px;
}

button:focus {
    outline-color: #8b5cf6;
}

/* Loading States */
.submit-btn:disabled,
.login-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===========================================
   ASSETS PAGE STYLES
   =========================================== */

.assets-container {
    min-height: 100vh;
    background: #f8f9fa;
    padding-bottom: 80px;
}

/* Assets Header */
.assets-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.assets-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.balance-display {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.current-balance {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.balance-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.action-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    justify-content: center;
}

.recharge-btn {
    background: #28a745;
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.recharge-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.withdraw-btn {
    background: #8b5cf6;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.withdraw-btn:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Assets Content */
.assets-content.custom-balance-display {
    padding: 0px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.balance-card,
.transaction-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}


.custom-display-top-header {

    background: #000;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
}


.custom-balance-display .balance-info {
    display: flex;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    gap: 8px;
}

.custom-balance-display .balance-details {

    text-align: left;

}

.custom-balance-display .balance-details h3 {
    line-height: 0.6;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
}

.custom-balance-display .balance-details p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    display: inline-block;
    margin: 0 0 0 -8px;
}


.custom-balance-display .balance-details p.text-blue {
    color: #2563eb;
}

.custom-balance-display .balance-details p.text-orange {
    color: #ea580c;
}

.custom-balance-display .balance-details p.text-green {
    color: #059669;
}

.custom-balance-display .balance-item {
    margin: 0 0 10px;
}

.custom-balance-display .bg-green {
    background: linear-gradient(to right,
            rgba(16, 185, 129, 0.05),
            /* from-emerald-500/5 */
            rgba(34, 197, 94, 0.05),
            /* via-green-500/5 */
            rgba(20, 184, 166, 0.05)
            /* to-teal-500/5 */
        );
    border-radius: 1rem;
    /* rounded-xl */
    padding: 0.75rem;
    /* p-3 */
}

.custom-balance-display .bg-orange {
    background: linear-gradient(to right,
            rgba(249, 115, 22, 0.05),
            /* from-orange-500/5 */
            rgba(251, 191, 36, 0.05),
            /* via-amber-500/5 */
            rgba(254, 234, 0, 0.05)
            /* to-yellow-500/5 */
        );
    border-radius: 1rem;
    padding: 0.75rem;
}

.custom-balance-display .bg-blue {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 1rem;
    padding: 0.75rem;
}

.custom-balance-display .balance-dot {
    height: 8px;
    width: 8px;
}







/* Balance Items */
.balance-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #f8f9fa;
}

.balance-item:last-child {
    border-bottom: none;
}

.balance-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.balance-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.blue-dot {
    background: #007bff;
}

.orange-dot {
    background: #fd7e14;
}

.green-dot {
    background: #28a745;
}

.balance-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.balance-details p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.balance-amount {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    text-align: right;
}

.available-now {
    display: block;
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
    margin-top: 4px;
}

/* Search Section */
.search-section {
    margin-bottom: 25px;
}

.search-wrapper {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
}

.search-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

/* Transactions Header */
.transactions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.transactions-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.transaction-count {
    font-size: 14px;
    color: #6c757d;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
}

/* Transaction Items */
.transactions-list {
    space-y: 15px;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-icon {
    color: #8b5cf6;
    font-size: 8px;
    flex-shrink: 0;
}

.transaction-details {
    flex: 1;
    min-width: 0;
}

.transaction-id {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    font-family: 'Courier New', monospace;
}

.transaction-type {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 2px;
}

.transaction-time {
    font-size: 12px;
    color: #adb5bd;
}

.transaction-amount {
    font-size: 16px;
    font-weight: 700;
    margin-right: 15px;
    min-width: 80px;
    text-align: right;
}

.transaction-amount.positive {
    color: #28a745;
}

.transaction-amount.negative {
    color: #dc3545;
}

.transaction-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
    text-align: center;
}

.transaction-status.pending {
    background: #fff3cd;
    color: #856404;
}

.transaction-status.approved {
    background: #d4edda;
    color: #155724;
}

.transaction-status.rejected {
    background: #f8d7da;
    color: #721c24;
}

/* ===========================================
   ACCOUNT PAGE STYLES
   =========================================== */

.account-container {
    min-height: 100vh;
    background: #f8f9fa;
    padding-bottom: 80px;
}

/* Account Header */
.account-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    padding: 40px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.account-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.profile-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    margin: 0 auto;
    max-width: 300px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.member-type {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4edda;
    color: #155724;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
}

.custom-account-section .logout-icon {
    background: #fee2e2;
    color: #dc2626;
}

.custom-account-section .stat-icon {
    height: 40px;
    width: 40px;
}

.custom-account-section .balance-info {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.custom-account-section .balance-info .balance-amount {
    margin-bottom: 0.25rem;
}

.custom-account-section .stat-label {
    color: #9ca3af;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 4px;
}

.custom-account-section .stat-value {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.custom-account-section .stat-value.credit-score {
    color: #d97706;
}

.custom-account-section .stat-value.level-score {
    color: #2563eb;
}

.stats-card-wrapper.custom-account-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.custom-account-section .stats-card {
    background: white;
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    width: 50%;
}

/* Account Content */
.account-content {
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.balance-section {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.balance-info {
    flex: 1;
}

.balance-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.balance-amount {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
}

.balance-icon {
    width: 50px;
    height: 50px;
    background: rgba(40, 167, 69, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    font-size: 20px;
}

/* Details Card */
.details-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f8f9fa;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.email-icon {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.username-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.verification-icon {
    color: #28a745;
    font-size: 18px;
}

/* Stats Card */
.stats-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    display: flex;
    gap: 30px;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.credit-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.level-icon {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
}

.credit-score {
    color: #ffc107;
}

.level-score {
    color: #007bff;
}

/* Activity Card */
.activity-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.activity-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.view-all-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.view-all-link:hover {
    text-decoration: underline;
}

.activity-list {
    space-y: 20px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f8f9fa;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.credited-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.debited-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.alert-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.activity-description {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

.activity-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
}

.status-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-text.completed {
    color: #28a745;
}

.status-text.action-required {
    color: #dc3545;
}

.activity-time {
    font-size: 12px;
    color: #adb5bd;
    white-space: nowrap;
}

/* Actions Card */
.actions-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.actions-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.action-item:hover {
    background: #f8f9fa;
    padding-left: 15px;
    padding-right: 15px;
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.settings-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.action-content {
    flex: 1;
}

.action-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.action-description {
    font-size: 14px;
    color: #6c757d;
}

.action-arrow {
    color: #adb5bd;
    font-size: 14px;
}

/* ===========================================
   BOTTOM NAVIGATION
   =========================================== */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s ease;
    border-radius: 8px;
    min-width: 60px;
}

.nav-item i {
    font-size: 20px;
}

.nav-item span {
    font-size: 11px;
    font-weight: 500;
}

.nav-item.active {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.nav-item:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00d4aa;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00a8cc;
}

/* ===========================================
   MARKET PAGE STYLES
   =========================================== */

.market-container {
    min-height: 100vh;
    background: #f8f9fa;
    padding-bottom: 80px;
}

/* Market Header */
.market-header {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.market-overview-card {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.market-overview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.overview-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.overview-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.overview-title i {
    font-size: 32px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 12px;
}

.title-text h1 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.title-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.market-cap {
    text-align: right;
}

.cap-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.cap-value {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cap-change {
    font-size: 16px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

.cap-change.positive {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.gainers .stat-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.losers .stat-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.stat-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-content p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.stat-content .positive {
    color: #28a745;
}

.stat-content .negative {
    color: #dc3545;
}

/* Metrics Row */
.metrics-row {
    display: flex;
    gap: 15px;
}

.metric-card {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    text-align: center;
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 auto 15px;
}

.metric-content h4 {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-content p {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Crypto Section */
.crypto-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

.crypto-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.crypto-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.crypto-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.crypto-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.crypto-icon.btc {
    background: #f7931a;
}

.crypto-icon.eth {
    background: #627eea;
}

.crypto-icon.usdt {
    background: #26a17b;
}

.crypto-icon.bnb {
    background: #f3ba2f;
    color: #000;
}

.crypto-icon.xrp {
    background: #23292f;
}

.crypto-icon.sol {
    background: #9945ff;
}

.crypto-icon.usdc {
    background: #2775ca;
}

.crypto-icon.ada {
    background: #0033ad;
}

.crypto-icon.doge {
    background: #c2a633;
}

.crypto-icon.matic {
    background: #8247e5;
}

.crypto-details h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.crypto-details p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 4px;
}

.market-cap {
    font-size: 12px;
    color: #adb5bd;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
}

.crypto-price {
    text-align: right;
    min-width: 150px;
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.price-change {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.price-change.positive {
    color: #28a745;
}

.price-change.negative {
    color: #dc3545;
}

.change-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.volume {
    font-size: 12px;
    color: #6c757d;
}

/* Market Footer */
.market-footer {
    text-align: center;
    padding: 20px;
    color: #6c757d;
    font-size: 14px;
}

.market-footer p {
    margin: 4px 0;
}

/* ===========================================
   ORDERS PAGE STYLES
   =========================================== */

.orders-container {
    min-height: 100vh;
    background: #f8f9fa;
    padding-bottom: 80px;
}

/* Orders Header */
.orders-header {
    background: white;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.title-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.title-text p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

.total-pnl {
    text-align: right;
}

.pnl-label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 8px;
}

.pnl-value {
    font-size: 28px;
    font-weight: 700;
}

.pnl-value.positive {
    color: #28a745;
}

/* Orders Content */
.orders-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.orders-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.header-icon.running {
    background: #007bff;
}

.header-icon.history {
    background: #28a745;
}

.header-text h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.header-text p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.running-badge {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.history-badge {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-icon {
    font-size: 64px;
    color: #dee2e6;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Trades List */
.trades-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trade-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.trade-item:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.trade-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.trade-item.profit .trade-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.trade-item.loss .trade-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.trade-info {
    flex: 1;
    min-width: 0;
}

.trade-pair {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.trade-id {
    font-size: 12px;
    color: #6c757d;
    font-family: 'Courier New', monospace;
}

.trade-details {
    flex: 1;
    min-width: 0;
}

.trade-amount,
.trade-leverage {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 2px;
}

.trade-action {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 15px;
}

.trade-action.buy {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.trade-action.sell {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.trade-date {
    font-size: 12px;
    color: #6c757d;
    margin-right: 15px;
    white-space: nowrap;
}

.trade-result {
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.trade-result.positive {
    color: #28a745;
}

.trade-result.negative {
    color: #dc3545;
}

/* Responsive Design for Market and Orders */
@media (max-width: 768px) {
    .overview-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .stats-row {
        flex-direction: column;
    }

    .metrics-row {
        flex-direction: column;
    }

    .crypto-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .crypto-price {
        text-align: center;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .trade-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .trade-details {
        order: -1;
    }
}

/* ===========================================
   HOME PAGE STYLES
   =========================================== */

.home-container {
    min-height: 100vh;
    background: #f8f9fa;
    padding-bottom: 80px;
}

.home-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    color: white;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-section h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.welcome-section p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.quick-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn.primary {
    background: white;
    color: #667eea;
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.home-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.view-all {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.view-all:hover {
    text-decoration: underline;
}

.portfolio-section,
.market-section,
.activity-section,
.quick-actions-section {
    margin-bottom: 30px;
}

.portfolio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.portfolio-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 20px;
}

.portfolio-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.portfolio-card.total .card-icon {
    background: #007bff;
}

.portfolio-card.profit .card-icon {
    background: #28a745;
}

.portfolio-card.trades .card-icon {
    background: #ffc107;
}

.card-content h3 {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content .amount {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.card-content .change {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.card-content .change.positive {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.card-content .change.neutral {
    background: #f8f9fa;
    color: #6c757d;
}

.market-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.market-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.market-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.crypto-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crypto-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.crypto-icon.btc {
    background: #f7931a;
}

.crypto-icon.eth {
    background: #627eea;
}

.crypto-icon.sol {
    background: #9945ff;
}

.crypto-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.crypto-details p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.crypto-price {
    text-align: right;
}

.crypto-price .price {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.crypto-price .change {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.crypto-price .change.positive {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.crypto-price .change.negative {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.activity-list {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f8f9fa;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.activity-icon.profit {
    background: #28a745;
}

.activity-icon.loss {
    background: #dc3545;
}

.activity-icon.deposit {
    background: #007bff;
}

.activity-content {
    flex: 1;
}

.activity-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.activity-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.activity-time {
    font-size: 12px;
    color: #adb5bd;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.action-card .action-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin: 0 auto 15px;
}

.action-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.action-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* ===========================================
   TRADING PAGE STYLES
   =========================================== */

.trading-container {
    min-height: 100vh;
    background: #f8f9fa;
    padding-bottom: 80px;
}

.trading-header {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trading-title h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.trading-title p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

.balance-info {
    text-align: right;
}

.balance-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 4px;
}

.balance-amount {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
}

.trading-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pair-selection,
.order-form-section,
.order-book-section,
.recent-trades-section {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.pair-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.pair-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pair-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pair-option.active {
    background: rgba(0, 123, 255, 0.1);
    border-color: #007bff;
}

.pair-option:hover {
    background: #f8f9fa;
}

.pair-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.pair-icon.btc {
    background: #f7931a;
}

.pair-icon.eth {
    background: #627eea;
}

.pair-icon.sol {
    background: #9945ff;
}

.pair-details {
    flex: 1;
}

.pair-details h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.pair-details p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.pair-price {
    text-align: right;
}

.pair-price .price {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.pair-price .change {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.pair-price .change.positive {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.pair-price .change.negative {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.form-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tab-btn {
    padding: 10px 20px;
    border: none;
    background: #f8f9fa;
    color: #6c757d;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #007bff;
    color: white;
}

.order-type {
    display: flex;
    gap: 1rem;
    margin-bottom: 25px;
}

.type-option {
    flex: 1;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.type-option.buy.active {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

.type-option.sell.active {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.max-btn {

    position: absolute;
    right: 12px;
    background: linear-gradient(to right, #3b82f6, #2563eb);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    border: none;


}

.leverage-section {
    margin-bottom: 25px;
}

.leverage-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.leverage-options {
    display: flex;
    gap: 8px;
}

.leverage-btn {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leverage-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.order-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-item.total {
    font-weight: 700;
    font-size: 16px;
    padding-top: 10px;
    border-top: 1px solid #dee2e6;
    margin-top: 10px;
    margin-bottom: 0;
}

.place-order-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.place-order-btn.buy {
    background: #28a745;
    color: white;
}

.place-order-btn.sell {
    background: #dc3545;
    color: white;
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.book-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 10px;
}

.book-asks,
.book-bids {
    display: flex;
    flex-direction: column;
}

.book-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.book-row.ask .price {
    color: #dc3545;
}

.book-row.bid .price {
    color: #28a745;
}

.book-spread {
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    color: #6c757d;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    margin: 10px 0;
}

.book-controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    padding: 6px 12px;
    border: 1px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.trades-list {
    display: flex;
    flex-direction: column;
}

.trade-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    border-bottom: 1px solid #f8f9fa;
}

.trade-row.buy .price {
    color: #28a745;
}

.trade-row.sell .price {
    color: #dc3545;
}

.trade-row .time {
    color: #6c757d;
}

/* Responsive Design for Home and Trading */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .trading-content {
        grid-template-columns: 1fr;
    }

    .portfolio-cards {
        grid-template-columns: 1fr;
    }

    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   ADVANCED TRADING PAGE STYLES
   =========================================== */

.advanced-trading-container {
    min-height: 100vh;
    background: #f8f9fa;
    padding-bottom: 80px;
}

.trading-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.header-left .brand-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.brand-text h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.brand-text p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.header-right .balance-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    min-width: 200px;
}

.balance-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.balance-header i {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.balance-header i:hover {
    opacity: 0.7;
}

.balance-amount {
    font-size: 28px;
    font-weight: 700;
}

.trading-main {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.quick-trade-sidebar {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    height: fit-content;
}

.quick-trade-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.quick-trade-section .section-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.investment-section {
    margin-bottom: 25px;
}

.investment-section label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.amount-input-group {
    display: flex;
    margin-bottom: 8px;
}

.amount-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.amount-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.currency-btn {
    padding: 12px 20px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.currency-btn:hover {
    background: #0056b3;
}

.amount-limits {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6c757d;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.buy-btn,
.sell-btn {
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.buy-btn {
    background: #28a745;
    color: white;
}

.buy-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.sell-btn {
    background: #dc3545;
    color: white;
}

.sell-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.leverage-section {
    margin-bottom: 25px;
}

.leverage-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.leverage-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.leverage-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.leverage-card.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.leverage-card:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}

.leverage-percent {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.leverage-duration {
    font-size: 12px;
    opacity: 0.8;
}

.trading-pair-section {
    margin-bottom: 20px;
}

.pair-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pair-selector:hover {
    background: #e9ecef;
}

.pair-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pair-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.pair-icon.btc {
    background: #f7931a;
}

.pair-text {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.chart-section {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.chart-title .crypto-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chart-title .crypto-info i {
    font-size: 24px;
    color: #28a745;
}

.crypto-details h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
}

.crypto-details p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.timeframe-selector {
    display: flex;
    gap: 8px;
}

.timeframe-btn {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeframe-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.timeframe-btn:hover {
    border-color: #007bff;
    color: #007bff;
}

.chart-container {
    height: 400px;
    margin-bottom: 25px;
    position: relative;
}

.chart-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.metric-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.metric-card.high {
    border-left: 4px solid #28a745;
}

.metric-card.low {
    border-left: 4px solid #dc3545;
}

.metric-card.change {
    border-left: 4px solid #007bff;
}

.metric-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.metric-value.positive {
    color: #28a745;
}

/* Responsive Design for Advanced Trading */
@media (max-width: 1024px) {
    .trading-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quick-trade-sidebar {
        order: 2;
    }

    .chart-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .trading-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .chart-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .timeframe-selector {
        flex-wrap: wrap;
    }

    .chart-metrics {
        grid-template-columns: 1fr;
    }

    .leverage-options {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }
}

.type-option {
    line-height: 23px !important;
}

.trade-user-price {
    margin-bottom: 10px;
}

.leverage-section .countdown-display {
    font-size: 60px;
    line-height: 1.1;
    color: #f7931a;
    font-weight: 700;
}

.highlight .percetage {
    color: #000;
}

.payment-system-list .payment-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-system-list .payment-item__thumb {
    width: 150px;
    margin-left: auto;
}

.payment-system-list .payment-item__thumb-img {
    width: 100%;
}

.payment-system-list .deposit-info__input-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-system-list .deposit-info:first-child .deposit-info__title,
.payment-system-list .deposit-info:first-child .deposit-info__input {
    width: 100%;
}

.payment-system-list .deposit-info:first-child .deposit-info__title {
    margin-bottom: 15px;
}

.payment-system-list .deposit-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 0 !important;
}

.payment-system-list .deposit-info:first-child {
    margin-bottom: 0;
}

.payment-system-list .deposit-info p {
    margin: 0;
}

.payment-system-list .deposit-info__input {
    margin-left: auto;
}

.payment-system-list.p-3 {
    padding-top: 0 !important;
}

.actions-card .nav .nav-item {
    padding: 0 !important;
    background: transparent !important;
}

.actions-card .nav .nav-item .nav-link {
    background: #3b82f6 !important;
}

.actions-card .register .cmn--btn.btn-block {
    background: #3b82f6 !important;
    width: 100%;
    display: block;
    padding: 7px 15px;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    border: 0;
}

.card.notification-card .card-header h5 {
    color: #000;
}









/*new css 23 october*/

.is-mobile {
    display: none;
}



@media (max-width: 480px) {

    .is-mobile {
        display: block;
    }


    .brand-section.is-mobile .logo {

        justify-content: center;
    }


    .brand-section.is-mobile {

        margin-bottom: 32px;
    }


    .brand-section.is-mobile .login-logo {
        width: 4rem;
        /* w-16 */
        height: 4rem;
        /* h-16 */
        display: flex;
        /* flex */
        align-items: center;
        /* items-center */
        justify-content: center;
        /* justify-center */
        border-radius: 1rem;
        /* rounded-2xl */
        background-image: linear-gradient(to bottom right, #4f46e5, #9333ea);
        /* from-indigo-600 to-purple-600 bg-gradient-to-br */
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
            0 4px 6px -4px rgba(0, 0, 0, 0.1);
        /* shadow-lg */
    }


    .brand-section.is-mobile .logo-text h1 {
        color: rgb(15, 23, 42, 1) !important;
        margin: 0 !important;
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: 700;
    }


    .brand-section.is-mobile .logo-text p {
        color: rgb(15, 23, 42, 1) !important;
        margin: 0 !important;
        font-weight: 400;
        font-size: .875rem;
        line-height: 1.25rem;
        color: rgb(71, 85, 105, 1);
    }


    .left-column.login-left {
        display: none;
    }

    .right-column {
        display: block;
        padding: 2rem;
    }





    .right-column .welcome-title {
        position: relative;
        letter-spacing: -0.02em;
        /* tracking-tight */
        font-weight: 800;
        font-size: 2.25rem;
        text-align: center;
        line-height: 2.5rem;
        position: relative;
        background: linear-gradient(to right, #0f172a, #3730a3, #7e22ce);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .right-column .welcome-title::before {
        content: "";
        position: absolute;
        top: 0;
        right: 76px;
        bottom: 0;
        left: 79px;
        background: linear-gradient(to right, #4f46e5, #8b5cf6, #3b82f6);
        /* indigo-600 → purple-600 → blue-600 */
        filter: blur(4px);
        /* blur-sm */
        opacity: 0.4;

    }






    .welcome-underline {
        width: 6rem;
        height: 0.25rem;
        background: linear-gradient(to right, transparent, #a78bfa, transparent);
        border-radius: 9999px;

        margin: 0 auto 20px;
    }



    .login-btn {

        width: 100%;
        /* w-full */
        background: linear-gradient(to right, #4f46e5, #2563eb, #8b5cf6);
        /* from-indigo-600 via-blue-600 to-purple-600 */
        color: #ffffff;
        /* text-white */
        font-weight: 700;
        /* font-bold */
        font-size: 1.125rem;
        /* text-lg */
        padding: 1.5rem 2rem;
        /* py-6 px-8 */
        border-radius: 1rem;
        /* rounded-2xl */
        transition: all 0.3s ease;
        /* transition-all duration-300 */
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        /* shadow-xl */
        position: relative;
        /* relative */
        overflow: hidden;
        /* overflow-hidden */
        margin-top: 2rem;
        /* mt-8 */
        cursor: pointer;

    }



    .form-group label {
        font-size: .875rem;
        line-height: 1.25rem;
        font-weight: 600;
        letter-spacing: .025em;
        color: rgba(51, 65, 85, 1);
    }

    .welcome-subtitle {
        position: relative;
        /* relative */
        font-size: 1.125rem;
        /* text-lg */
        font-weight: 600;
        /* font-semibold */
        background-image: linear-gradient(to right, #334155, #4338ca, #7e22ce);
        /* from-slate-700 via-indigo-700 to-purple-700 bg-gradient-to-r */
        -webkit-background-clip: text;
        /* bg-clip-text */
        background-clip: text;
        text-align: center;
        color: transparent;
        /* text-transparent */
    }

    .signin-link p,
    .signup-link p {

        color: #475569;
        /* Tailwind slate-600 */
        font-size: 1.125rem;
        /* text-lg */

    }


    .signup-link a {
        font-weight: 700;
        /* font-bold */
        color: #4f46e5;
        /* text-indigo-600 */
        transition: color 0.2s ease;
        /* transition-colors duration-200 */
        text-decoration: none;
        /* optional, if you don’t want underline */
    }

    .signup-link a:hover {
        color: #4338ca;
        /* hover:text-indigo-700 */
    }




    .input-wrapper input {
        font-weight: 500;
        min-height: 72px;
    }




    .security-section .security-content {

        margin-top: 2.5rem;
        padding: 1.5rem;
        border-radius: 1rem;
        border: 1px solid #e5e7eb;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        background-image: linear-gradient(to right, #f8fafc, rgba(254, 243, 199, 0.2));
        /* from-slate-50 to-amber-50/50 */
    }


    .security-section .security-content .security-content-holder {
        display: flex;
        flex-direction: column;
    }

    .security-section .security-content p.heading {
        font-size: 1rem;
        line-height: 24px;
        font-weight: 600;
        color: #1e293b;
        margin: 0;
    }

    .security-section .security-content p {
        font-size: 0.875rem;
        /* text-sm → 14px */
        line-height: 1.25rem;
        /* 20px */
        color: #475569;
        /* text-slate-600 */
        font-weight: 300;
        /* font-light */
        margin-top: 0.25rem;
        /* mt-1 → 4px */
    }

    .login-form .remember-me {
        margin-bottom: 0px;
    }

    .login-form .checkbox-wrapper {
        font-size: 1rem;
        line-height: 24px;
        font-weight: 500;
        color: #334155;
    }

    /*order*/

    .orders-header {

        background-color: rgba(255, 255, 255, 0.95);
        /* bg-white/95 */
        backdrop-filter: blur(12px);
        /* backdrop-blur-md */
        border-bottom: 1px solid rgba(229, 231, 235, 0.6);
        /* border-b border-gray-200/60 */
        padding-left: 1.5rem;
        /* px-6 → 24px */
        padding-right: 1.5rem;
        /* px-6 → 24px */
        padding-top: 1rem;
        /* py-4 → 16px */
        padding-bottom: 1rem;
        /* py-4 → 16px */
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        /* shadow-sm */
    }


    .orders-header .title-icon {

        width: 32px;
        height: 32px;
        background: linear-gradient(to bottom right, #4f46e5, #8b5cf6);
        /* from-indigo-600 to-purple-600 */
        border-radius: 0.5rem;
        /* rounded-lg → 8px */
        display: flex;
        /* flex */
        align-items: center;
        /* items-center */
        justify-content: center;
        /* justify-center */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* shadow-md */

    }

    .orders-header .header-content {
        flex-direction: row;
        gap: 0px;
        text-align: left;
    }


    .orders-header .header-content .title-text h1 {
        margin-bottom: 0px;
        font-size: 1.25rem;
        line-height: 1.75rem;
        font-weight: 700;
        color: #111827;
        letter-spacing: -0.025em;
    }


    .orders-header .header-content .title-text p {
        margin: 0;
        font-size: 0.75rem;
        line-height: 1rem;
        font-weight: 500;
        color: #4b5563;
    }


    .orders-header .header-content .header-title {
        gap: 10px;
    }

    .orders-header .trade-item {
        flex-direction: column;
        gap: 10px;
        text-align: left;
    }


    .orders-card .trade-item {
        /* flex-wrap: wrap;
    flex-direction: row;
    text-align: left; */

    }

    .orders-card .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 2px solid #f8f9fa;
        background: #eef3ff;
        margin: -25px -25px 25px;
        padding: 25px 25px 20px;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .orders-card .trade-item .trade-info {
        flex: unset;
        min-width: 0;
    }

    .card-header.history-header {
        background: #f0fdf4;
    }


    .orders-card .trade-details {
        order: 0;
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .orders-card .trade-item .trade-leverage,
    .orders-card .trade-item .trade-amount {
        font-size: 0.875rem;
        line-height: 1.25rem;
        color: #6b7280;
        margin-bottom: 0.5rem;
        font-weight: 600;
        width: 43%;
        text-align: left;

    }

    .orders-card .trade-item .trade-leverage span,
    .orders-card .trade-item .trade-amount span {
        font-weight: 700;
        color: #111827;
        font-size: 1.25rem;
        line-height: 1.75rem;
    }


    .orders-card .trade-action-info {
        display: flex;
        flex-direction: row;
        width: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .orders-card .trade-action-info .trade-action-holder {
        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    /*.orders-card .trade-icon-info {
	 display: flex;
	justify-content: space-between;
	align-items: center;
    text-align: left;
} */


    .orders-card .trade-icon-info {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        gap: 15px;
        text-align: left;
    }

    .orders-card .trade-icon-info .trade-pair {

        margin-bottom: 4px;
        font-weight: 700;
        color: #111827;
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .orders-card .trade-icon-info .trade-id {

        font-size: 14px;
        line-height: 20px;
        color: #6b7280;
        font-weight: 600;
    }

    .orders-card .trade-icon-info .trade-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
        border-width: 2px;
        border-color: #d1fae5;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    /* withdraw2/ Assets */
    .withdraw-header-update.custom-balance-display {
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
        padding-bottom: 0px;
    }

    .withdraw-header-update .balance-display {

        background: linear-gradient(to right, #3b82f6, #8b5cf6);
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        padding: 2px;

    }

    .withdraw-header-update .balance-display .text-holder {
        background: #ffffff;
        border-radius: 14px;
        padding: 15px;
    }

    .withdraw-header-update .balance-display .text-holder .current-balance {
        font-size: 1.875rem;
        font-weight: 900;
        background: linear-gradient(to right, #111827, #1f2937, #111827);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.5rem;
        letter-spacing: 0.05em;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .withdraw-header-update .balance-display .text-holder .balance-label {
        font-size: 0.75rem;
        font-weight: 700;
        color: #4B5563;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }


    .action-buttons {
        grid-template-columns: 1fr 1fr !important;
    }

    .action-buttons .action-btn {
        padding: 18px 24px;
        border-radius: 16px;
    }

    .action-buttons .action-btn.recharge-btn.btn-recharge {
        background: linear-gradient(to right, #34d399, #14b8a6);

    }

    .action-buttons .action-btn.withdraw-btn {
        background: linear-gradient(to right, #818cf8, #a78bfa);
    }

    .balance-amount {
        font-size: 1.25rem;
        line-height: 1.75rem;
        font-weight: 700;
        color: #1f2937;
    }

    .balance-details p {
        text-align: left;
    }

    /* marketing  */

    .trading-header {
        position: relative;
        background: linear-gradient(to right, #4f46e5, #7c3aed, #db2777);
        padding: 1.5rem 1rem;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .header-content {
        width: 100%;
    }

    .balance-info {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border-radius: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .trading-header .balance-amount {
        font-size: 1.5rem;
        /* text-2xl */
        line-height: 2rem;
        /* text-2xl */
        font-weight: 700;
        /* font-bold */
        color: #ffffff;
        /* text-white */
    }

    .trading-header .balance-label {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.875rem;
        line-height: 1.25rem;
        font-weight: 500;
    }


    /* Account */
    .account-header {
        position: relative;
        background: linear-gradient(to bottom right, #3b82f6, #9333ea);
        padding-top: 3rem;
        padding-bottom: 1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        color: #ffffff;
    }

    .account-header .profile-card {
        background: transparent;
        box-shadow: none;
        padding: 0;
        border-radius: 0px;
    }

    .account-header .profile-card .profile-avatar {
        width: 4rem;
        /* w-16 */
        height: 4rem;
        /* h-16 */
        background-color: rgba(255, 255, 255, 0.2);
        /* bg-white/20 */
        border: 2px solid rgba(255, 255, 255, 0.3);
        /* border-2 border-white/30 */
        border-radius: 9999px;
        /* rounded-full */
        display: flex;
        /* flex */
        align-items: center;
        /* items-center */
        justify-content: center;
        /* justify-center */
        margin-bottom: 0.75rem;
        /* mb-3 */
    }

    .account-header .profile-card .profile-name {
        font-size: 1.25rem;
        line-height: 1.75rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: #ffffff;
    }

    .account-header .profile-card .member-type {
        font-size: 0.875rem;
        line-height: 1.25rem;
        opacity: 0.9;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }

    .account-header .profile-card .status-badge {

        background-color: rgba(255, 255, 255, 0.2);
        /* bg-white/20 */
        backdrop-filter: blur(4px);
        /* backdrop-blur-sm */
        border-radius: 9999px;
        /* rounded-full */
        padding: 0.25rem 0.75rem;
        /* py-1 px-3 */
    }

    .account-header .profile-card .status-badge span {
        color: #ffffff;
        /* text-white */
        font-size: 0.75rem;
        /* text-xs */
        line-height: 1rem;
        /* text-xs */
        font-weight: 500;
        /* font-medium */
    }

    .account-container .account-content .balance-section {
        padding: 0;
        box-shadow: none;
    }

    .account-content .balance-info {
        box-shadow: none;
    }

    .account-content .balance-label {
        color: #6b7280;
        font-size: 0.75rem;
        line-height: 1rem;
        margin-bottom: 0.25rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .account-content .balance-amount {
        font-size: 1.5rem;
        line-height: 2rem;
        font-weight: 700;
        color: #16a34a;
    }

    .account-container .details-card .detail-label {

        color: #9ca3af;
        font-size: 0.75rem;
        line-height: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 500;
        margin-bottom: 0.125rem;

    }

    .account-container .details-card .detail-value {

        color: #1f2937;
        font-weight: 500;
        font-size: 0.875rem;
        line-height: 1.25rem;

    }

    /* home page */
    .home-container {
        background: linear-gradient(to bottom right, #f8fafc, #eff6ff, #eef2ff);
        padding: 1rem;
    }

    .home-container .home-header {
        background: linear-gradient(to right, #2563eb, #9333ea, #ec4899);
        border-radius: 1.5rem;
        padding: 2rem;
        color: white;
        position: relative;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    .home-container .welcome-section p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 16px;
        margin-top: 8px;
        font-weight: 500;
    }

    .home-container .home-content {
        padding: 20px 0;
    }

    .home-container .section-header h2 {
        margin: 0;
        font-size: 18px;
        color: #1e293b;
    }

    /* market new changes */
    .custom-market-form .tab-btn {
        padding: 16px;
        border-radius: 12px;
        text-align: center;
        transition: all 0.2s ease-in-out;
        transform: scale(1);
        /* background-color: #f3f4f6;
        color: #374151; */
        font-size: 24px;
        font-weight: 700;
        cursor: pointer;
    }

    .custom-market-form .tab-btn.active {
        background-color: #007bff;
        color: white;
    }

    .custom-market-form .tab-btn span {
        font-size: 12px;
        opacity: 0.7;
        margin-top: 4px;
        display: inline-block;
    }

    .custom-market-form .tab-btn:focus {
        outline-color: unset;
    }

    .custom-market-form .tab-btn:focus,
    .custom-market-form .tab-btn:active,
    .custom-market-form .tab-btn:hover {
        transform: scale(1.05);
        background-color: #2563eb;
        color: #ffffff;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
            0 4px 6px -4px rgba(0, 0, 0, 0.1);
    }

    .custom-market-form .form-tabs-heading {
        font-size: 18px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 16px;
    }

    .custom-market-form label {
        display: block;
        text-transform: capitalize;
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 12px;
    }


    .custom-market-form .profit-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding-top: 16px;
        padding-bottom: 16px;
        border-radius: 16px;
        font-weight: 700;
        color: #ffffff !important;
        background: linear-gradient(to right, #22c55e, #16a34a) !important;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
            0 4px 6px -4px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        transform: scale(1);
        cursor: pointer;
    }

    .custom-market-form .profit-button:hover {
        background: linear-gradient(to right, #16a34a, #15803d) !important;
        transform: scale(1.1);
    }

    .custom-market-form .loss-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding-top: 16px;
        padding-bottom: 16px;
        border-radius: 16px;
        font-weight: 700;
        color: #ffffff !important;
        background: linear-gradient(to right, #ef4444, #dc2626) !important;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
            0 4px 6px -4px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        transform: scale(1);
        cursor: pointer;
    }


    .custom-market-form .loss-button:hover {
        background: linear-gradient(to right, #dc2626, #b91c1c) !important;
        transform: scale(1.1);
        cursor: pointer;
    }

    .custom-market-form .pair-icon.btc {
        background: #627eea;
    }


    /* signup page  */
    .left-column.custom-signup-column {
        display: none;
    }


    .market-heading-icon-holder {
        width: 2.5rem;
        height: 2.5rem;
        background-color: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(4px);
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .market-heading-text-wrapper {
        text-align: left;
    }

    .market-heading-text-wrapper h1 {
        font-size: 1.25rem;
        line-height: 1.75rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0px;
    }

    .market-heading-text-wrapper p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.875rem;
        line-height: 1.25rem;
    }




    /*end*/


}


.trading-title {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 1rem;
}

.custom-market-graph {
    max-width: 767px;
    width: 100%;
    overflow-x: auto;
}

.custom-signup-form .input-wrapper input {
    padding-left: 40px;
}

.pair-selection.custom-tradetwo-pair-selection {
    background: transparent;
    border-radius: 0px;
    padding: 0;
    box-shadow: unset;
    border: 0px;
}


.custom-disabled-btn{
    background-color: #9ca3af !important;
    pointer-events: none !important;
    box-shadow: unset;
}

.type-option.highlowButton.custom-disabled-btn,
.action-btn.withdraw-btn.custom-disabled-btn {
	background: #9ca3af !important;
    border-color: #9ca3af;
}


/*for orders*/

/*end*/


/*end*/


/* Simulate 480px width on the site */
body.force-small-screen {
    max-width: 470px;
    margin: 0 auto;
    overflow-x: hidden;
}
