@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root {
  --primary-accent: #EB4A57;
  --primary-accent-dark: #DC143C;
  --secondary-accent: #4cff88;
  --secondary-accent-dark: #28a745;
  --text-light: #edf0f1;
  --text-medium: #bbb;
  --text-dark: #888;
  --bg-dark-1: #101010;
  --bg-dark-2: #191919;
  --bg-dark-3: #1d1d1d;
  --bg-dark-4: #111;
  --border-color: #333;
}

/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Changa", sans-serif;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
	font-size: 16px;
    max-width: 100vw;
	scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    background-color: #0d0e12;
    max-width: 100vw;
    overflow-y: auto; /* Ensure vertical scroll only */
}

header {
    background-color: #13161b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 100%;
    padding: 2px 24px;
}

.logo {
    color: #edf0f1;
    text-decoration: none;
    font-size: 36px;
    font-weight: 800;
	font-family: "Changa", sans-serif;
	background: none;
}

.logo-axie {
    color: #edf0f1; 
    background: none;
}

.logo-meta {
    background: linear-gradient(45deg, #FA8072, #DC143C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}






/* Header Atia Container */
.header-atia-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
	
}

.header-atia-container:hover {
    background: rgba(235, 74, 87, 0.1);
    border-color: rgba(235, 74, 87, 0.3);
    transform: translateY(-2px);
}

.header-atia-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.8));
}

.atia-timer {
    font-size: 14px;
    color: #FFD700;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    letter-spacing: 0.5px;
    font-family: 'Courier New', monospace;
}

/* Auto Atia Popup (smaller than confirmation modal) */
.auto-atia-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10002;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.auto-atia-popup-content {
    background: #13161B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
    max-width: 350px;
    text-align: center;
    animation: slideUp 0.3s ease;
}

.auto-atia-popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.auto-atia-popup-header img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.9));
}

.auto-atia-popup-header h3 {
    color: #edf0f1;
    font-size: 20px;
    font-weight: 700;
}

.auto-atia-toggle-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 16px;
}

.auto-atia-toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #edf0f1;
    font-size: 15px;
    font-weight: 500;
}

.auto-atia-toggle-label i {
    font-size: 18px;
    color: #EB4A57;
}

.auto-atia-popup-close {
    width: 100%;
    padding: 12px;
    background: rgba(235, 74, 87, 0.1);
    border: 1px solid rgba(235, 74, 87, 0.3);
    border-radius: 8px;
    color: #EB4A57;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auto-atia-popup-close:hover {
    background: rgba(235, 74, 87, 0.2);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .header-atia-container {
        margin-left: auto;
        margin-right: 0.5rem;
        padding: 6px 10px;
    }
    
    .header-atia-icon {
        width: 28px;
        height: 28px;
    }
    
    .atia-timer {
        font-size: 12px;
    }
}


.auth-section {
    display: flex;
    align-items: center;
    gap: 8px; /* small spacing between atia and login */
}





/* Authentication Buttons */
.signup-btn {
    background-color: #101010;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    text-align: center;
    gap: 6px;
    background: linear-gradient(145deg, #d1d1d1, #bfbfbf);
    color: #888;
    opacity: 0.85;
}

.auth-buttons {
    background-color: #101010;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}



.auth-buttons a img.loginIcon {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0;
    background: none;
}

/* Centered navigation */
.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Navigation Links */
.nav_links {
    display: flex;
    background-color: none;
}

.nav_links li {
    list-style: none;
    background-color: none;
}

.nav_links li a {
    background-color: none;
    text-decoration: none;
    color: #edf0f1;
    font-weight: 600;
    font-size: 15px;
    padding: clamp(0.1vw, 0.2vw, 0.4vw) clamp(.75vw, 1vw, 1.25vw);
    transition: all 0.3s ease;
}

.nav_links li a:hover:not(.donate) {
    color: #EB4A57;
}

.nav_links a.active {
    color: #EB4A57;
}


.donate i {
    vertical-align: middle;
    margin-right: 0.1rem;
}

.donate {
    background: linear-gradient(135deg, #EB4A57, #DC143C);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
	font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.donate:hover {
    background: linear-gradient(135deg, #FA8072, #DC143C);
    box-shadow: 0 0 20px 6px rgba(250, 128, 114, 0.25), 0 0 30px 10px rgba(250, 128, 114, 0.2), 0 -6px 20px 6px rgba(220, 20, 60, 0.18), 0 6px 220px 15px rgba(220, 20, 60, 0.18);
}
/* Mobile Responsive Styles - Add to your existing CSS */


.nav_links, .auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Desktop nav links */
.nav_links li {
    list-style: none;
}
.nav_links li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav_links li a:hover:not(.donate) {
    color: var(--primary-accent);
    background-color: rgba(235, 74, 87, 0.1);
}
.nav_links a.active {
    color: var(--primary-accent);
}





















/* Auth Buttons */
.signup-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: var(--bg-dark-3);
    border: 1px solid var(--border-color);
    color: var(--text-medium);
    transition: all 0.3s ease;
}
.signup-btn:hover {
    border-color: var(--primary-accent);
    color: var(--text-light);
}
.auth-buttons img.loginIcon {
    width: 20px;
    height: 20px;
}






/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
}

.hamburger:hover {
    background: linear-gradient(145deg, #2a2a2a, #333333);
    box-shadow: 0 6px 18px rgba(235,74,87,0.3);
    transform: translateY(-1px);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #EB4A57, #FA8072);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(235,74,87,0.5);
}

/* Hamburger Animation States */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #0D0E12;
    z-index: 1004;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    
    /* ADD THESE LINES: */
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scroll */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.mobile-nav.active {
    transform: translateX(0); /* slide in */
}



/* Mobile Navigation Header */
.mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #13161B;
}

.mobile-nav-header .logo {
    font-size: 36px;
    font-weight: 800;
	background: none;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #EB4A57;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close:hover {
    background: rgba(235, 74, 87, 0.1);
    transform: rotate(90deg);
}

/* Mobile Navigation Links */
.mobile-nav-links {
    list-style: none;
    padding: 30px 0;
    margin: 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    color: #edf0f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(235,74,87,0.1), transparent);
    transition: left 0.4s ease;
}

.mobile-nav-links a:hover::before,
.mobile-nav-links a.active::before {
    left: 100%;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: #EB4A57;
    background: rgba(235, 74, 87, 0.05);
    border-left-color: #EB4A57;
    padding-left: 35px;
}






.loginIcon {
	
	width: 16px;
	
}





















/* Fix for the auth-buttons container */
.auth-buttons {
    background: transparent;
    border-radius: 8px;
    
}

.profile-dropdown {
    position: relative;
    display: inline-block;
    background: transparent; /* Change from 'none' to 'transparent' */
    border-radius: 8px;
}

.profile-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden; /* ← prevents square background from children */
}



.profile-dropdown-trigger:hover {
    background: #0d0e12;
    border-color: rgba(235, 74, 87, 0.3);
}

.profile-dropdown-trigger.active {
    border-color: rgba(235, 74, 87, 0.5);
    border-radius: 8px; /* ← Match the trigger's border-radius */
    
}

/* Profile Avatar */
.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(235, 74, 87, 0.3);
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Info */
.profile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.profile-name {
    color: #edf0f1;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.profile-address {
    color: #888;
    font-size: 12px;
    font-weight: 400;
}

/* Chevron Icon */
.profile-chevron {
    color: #888;
    font-size: 14px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.profile-dropdown-trigger.active .profile-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 280px;
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
	padding: 20px;
	padding-top: 10px;
	padding-bottom: 0px;
}

.profile-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Header */
.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
	padding-bottom: 10px;
    background: #0d0e12;
}

.dropdown-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(235, 74, 87, 0.4);
    flex-shrink: 0;
}

.dropdown-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.dropdown-name {
    color: #edf0f1;
    font-size: 16px;
    font-weight: 600;
}

.dropdown-address {
    color: #888;
    font-size: 13px;
    font-weight: 400;
}

/* Atia Container with Timer */
.dropdown-atia-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.dropdown-atia-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.9));
    flex-shrink: 0;
    transform: translateY(-3px);
}

.atia-timer {
    font-size: 11px;
    color: #FFD700;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    letter-spacing: 0.5px;
}

/* Auto Atia Toggle */
.auto-atia-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px;
	padding-top: 0px;
}

.auto-atia-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #edf0f1;
    font-size: 14px;
    font-weight: 500;
}

.auto-atia-icon {
    font-size: 16px;
    color: #EB4A57;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 48px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.toggle-switch.active {
    background: linear-gradient(135deg, #EB4A57, #DC143C);
    border-color: #EB4A57;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(24px);
}

/* Confirmation Modal */
.atia-confirmation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10002;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.atia-confirmation-content {
	background: #13161B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px 24px;
    max-width: 400px;
    text-align: center;
    animation: slideUp 0.3s ease;
}



.atia-confirmation-title {
    color: #edf0f1;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.atia-confirmation-message {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.atia-confirmation-content .note {
  margin-top: 14px;
  display: block;
  margin-top: 12px;       /* space above the note */
  font-size: 14px;        /* slightly smaller than main text */
  color: #aaa;            /* subtle, secondary color */
  font-style: italic;     /* makes it feel like fine print */
  line-height: 1.4;
  text-align: center;     /* centered under the buttons */
}



.atia-confirmation-buttons {
    display: flex;
    gap: 12px;
}

.atia-btn {
    flex: 1;
    padding: 14px 0px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.atia-btn-cancel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #edf0f1;
}

.atia-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
}

.atia-btn-confirm {
    background: linear-gradient(135deg, #EB4A57, #DC143C);
    color: white;
}

.atia-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 74, 87, 0.4);
}




/* Dropdown Divider */
.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0px;
    color: #bbb;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}




.dropdown-item:hover {
    color: #EB4A57;
    padding-left: 5px;
}

.dropdown-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: #888;
    transition: color 0.2s ease;
}

.dropdown-item:hover i {
    color: #EB4A57;
}

/* Tools Dropdown Styles */
.dropdown-item-expandable {
    position: relative;
    display: flex;
    flex-direction: column;
	
}

.dropdown-item-trigger {
    display: flex;
    gap: 14px;
    color: #bbb;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.dropdown-item-trigger:hover {
    color: #EB4A57;
    padding-left: 5px;
}

.dropdown-item-trigger i:first-child {
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: #888;
    transition: color 0.2s ease;
}

.dropdown-item-trigger:hover i:first-child {
    color: #EB4A57;
}

.dropdown-item-chevron {
    margin-left: auto !important;
    font-size: 12px !important;
    transition: transform 0.3s ease;
    width: auto !important;
}

.dropdown-item-trigger.active .dropdown-item-chevron {
    transform: rotate(180deg);
}

.dropdown-item-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 30px;

}

.dropdown-item-submenu.active {
    max-height: 200px;
}

.dropdown-item-sub {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0px;
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;


}


.dropdown-item-sub:hover {
    color: #EB4A57;
    padding-left: 5px;
}

.dropdown-item-sub i {
    font-size: 16px;
    width: 18px;
    text-align: center;
    color: #777;
    transition: color 0.2s ease;
}

.dropdown-item-sub:hover i {
    color: #EB4A57;
}


/* Logout Item Special Styling */
.logout-item {
    color: #ff6b6b;
}

.logout-item:hover {
    color: #ff6b6b;
}

.logout-item i {
    color: #ff6b6b;
}

.logout-item:hover i {
    color: #ff6b6b;
}











/* Balance Card Styling */
.balance-card {
    margin: 0;
    padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
	background: #13161B;

}

.balance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.balance-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-label span {
    color: #edf0f1;
    font-weight: 600;
}

.balance-token-icon {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 6px rgba(39, 117, 202, 0.5));
}

.balance-refresh {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px 9px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #888;
}

.balance-refresh:hover {
    background: rgba(235, 74, 87, 0.1);
    border-color: rgba(235, 74, 87, 0.3);
    color: #EB4A57;
}

.balance-refresh i {
    font-size: 13px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Multi-balance display */
.balance-amount {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.balance-row {
	
    display: flex;
	width: 50%;
    justify-content: space-between;
    align-items: center;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.balance-row:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(235, 74, 87, 0.2);
}

.balance-token-info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.balance-token-info img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.balance-token-name {
    color: #888;
    font-size: 11px;
    font-weight: 500;
}

.balance-value {
    color: #edf0f1;
    font-size: 12px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(235, 74, 87, 0.3);
}

.balance-value.usdc {
    color: #2775CA;
    text-shadow: 0 0 15px rgba(39, 117, 202, 0.4);
}

.balance-value.slp {
    color: #FF6B9D;
    text-shadow: 0 0 15px rgba(255, 107, 157, 0.4);
}

.balance-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.balance-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 4px 12px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.balance-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.balance-action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.balance-action-btn i {
    font-size: 14px;
    z-index: 1;
}

.balance-action-btn span {
    z-index: 1;
}

.deposit-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.deposit-btn:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);
}

.convert-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.convert-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.withdraw-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    color: #edf0f1;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.withdraw-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}





/* Convert Modal Styles */
.convert-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.convert-modal-content {
    background: #13161B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 32px;
    animation: slideUp 0.3s ease;
}

.convert-header {
    text-align: center;
    margin-bottom: 24px;
}

.convert-header i {
    font-size: 48px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.convert-title {
    color: #edf0f1;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.convert-subtitle {
    color: #888;
    font-size: 14px;
}

.convert-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.convert-section {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 16px;
    transition: all 0.3s ease;
}

.convert-section:hover {
    border-color: var(--primary-accent);}

.convert-section.active {
    border-color: var(--primary-accent);
}

.convert-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.convert-label span {
    color: #888;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.convert-balance {
    color: #666;
    font-size: 12px;
}

.convert-balance span {
    color: #edf0f1;
    font-weight: 600;
}

.convert-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.convert-token-select {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #0D0E12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.convert-token-select:hover {
    border-color: var(--primary-accent);
}

.convert-token-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.convert-token-info {
    flex: 1;
}

.convert-token-symbol {
    color: #edf0f1;
    font-size: 16px;
    font-weight: 600;
    display: block;
}

.convert-token-name {
    color: #666;
    font-size: 12px;
}

.convert-amount-input {
	width: 120px;
    flex: 1;
    padding: 12px 16px;
    background: #0D0E12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #edf0f1;
    font-size: 18px;
    font-weight: 600;
    text-align: right;
    transition: all 0.3s ease;
}

.convert-amount-input:focus {
    outline: none;
    border-color: var(--primary-accent);
}

.convert-amount-input::placeholder {
    color: #555;
}

.convert-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    position: relative;
}

.convert-arrow::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.convert-arrow-icon {
    background: linear-gradient(135deg, #EB4A57, #DC143C);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    z-index: 1;
    transition: all 0.3s ease;
}

.convert-arrow-icon:hover {
    transform: rotate(180deg) scale(1.1);
}

.convert-preview {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    margin: 8px 0;
}

.convert-preview-label {
    color: #888;
    font-size: 12px;
    margin-bottom: 8px;
}

.convert-preview-value {
    color: #3b82f6;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.convert-rate-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin-top: 8px;
}

.convert-rate-label {
    color: #888;
    font-size: 13px;
}

.convert-rate-value {
    color: #edf0f1;
    font-size: 14px;
    font-weight: 600;
}

.convert-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #EB4A57, #DC143C);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.convert-submit-btn:hover {
    box-shadow: 0 4px 12px rgba(235, 74, 87, 0.4);
}

.convert-submit-btn:active {
    transform: translateY(0);
}

.convert-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.convert-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    margin-top: 16px;
}

.convert-warning i {
    color: #FFC107;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.convert-warning p {
    color: #edf0f1;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Max button for amount input */
.convert-max-btn {
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px 12px;
    background: linear-gradient(135deg, #EB4A57, #DC143C);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}




/* Deposit Modal */
.deposit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.deposit-modal-content {
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    height: 600px;
    overflow-y: auto;
    position: relative;
    padding: 32px;
    animation: slideUp 0.3s ease;
}

.deposit-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposit-close:hover {
    color: #EB4A57;
}

.deposit-title {
    color: #edf0f1;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

/* Deposit Tabs */
.deposit-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 8px;
}

.deposit-tab {
    flex: 1;
    padding: 6px 8px;
    background: #0d0e12;
    border: none;
    color: #888;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.deposit-tab:hover {
    background: rgba(235, 74, 87, 0.1);
    color: #edf0f1;
}

.deposit-tab.active {
    background: linear-gradient(135deg, #EB4A57, #DC143C);
    color: white;
}

.deposit-tab i {
    font-size: 18px;
}

/* Tab Content */
.deposit-tab-content {
    display: none;
}

.deposit-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Wallet Transfer Form */
.deposit-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: #edf0f1;
    font-size: 16px;
    font-weight: 600;
}

.token-select,
.amount-input {
    padding: 10px 12px;
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #edf0f1;
    font-size: 18px;
    transition: all 0.3s ease;
}

.token-select:focus,
.amount-input:focus {
    outline: none;
    border-color: #EB4A57;
}

.token-select {
    cursor: pointer;
}

.amount-input::placeholder {
    color: #555;
}

.deposit-submit-btn {
    padding: 14px;
    background: linear-gradient(135deg, #EB4A57, #DC143C);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 9px;
}

.deposit-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(235, 74, 87, 0.4);
}

.deposit-submit-btn:active {
    transform: translateY(0);
}

/* Direct Transfer */
.direct-transfer-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qr-section {
    display: flex;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.wallet-qr {
    width: 200px;
    height: 200px;
    border-radius: 8px;
}

.wallet-address-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wallet-address-section label {
    color: #edf0f1;
    font-size: 16px;
    font-weight: 600;
}

.address-copy-container {
    display: flex;
    gap: 9px;
}

.wallet-address-input {
    flex: 1;
    padding: 16px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #edf0f1;
    font-size: 16px;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    padding: 16px;
    background: rgba(235, 74, 87, 0.1);
    border: 1px solid rgba(235, 74, 87, 0.3);
    border-radius: 10px;
    color: #EB4A57;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(235, 74, 87, 0.2);
    transform: scale(1.05);
}

.copy-btn i {
    font-size: 18px;
}

.supported-tokens {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.supported-tokens h4 {
    color: #edf0f1;
    font-size: 16px;
    margin-bottom: 12px;
}

.token-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.token-chip {
    padding: 8px 16px;
    background: rgba(235, 74, 87, 0.1);
    border: 1px solid rgba(235, 74, 87, 0.3);
    border-radius: 20px;
    color: #EB4A57;
    font-size: 14px;
    font-weight: 600;
}

/* Warning Box */
.deposit-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
}

.deposit-warning.critical {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.deposit-warning i {
    color: #FFC107;
    font-size: 19px;
    flex-shrink: 0;
    margin-top: 3px;
}

.deposit-warning.critical i {
    color: #EF4444;
}

.deposit-warning p {
    color: #edf0f1;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.deposit-warning strong {
    color: #EF4444;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Custom Token Select */
.custom-select-wrapper {
    position: relative;
}

.custom-select-trigger {
    width: 100%;
    padding: 12px 16px;
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #edf0f1;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.custom-select-trigger:hover {
    border-color: #EB4A57;
    background: rgba(235, 74, 87, 0.05);
}

.custom-select-trigger.active {
    border-color: #EB4A57;
}

.selected-token {
    display: flex;
    align-items: center;
    gap: 12px;
}

.token-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.custom-select-trigger i {
    color: #888;
    transition: transform 0.3s ease;
}

.custom-select-trigger.active i {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.custom-select-dropdown.active {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
}

.custom-select-option {
    padding: 2px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.custom-select-option:hover {
    background: rgba(235, 74, 87, 0.1);
}

.token-info {
    display: flex;
    flex-direction: column;
}

.token-name {
    color: #edf0f1;
    font-size: 16px;
    font-weight: 500;
}

.token-symbol {
    color: #888;
    font-size: 14px;
}

/* USD Value Display */
.usd-value {

    border-radius: 8px;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    transition: color 0.3s ease;
}

/* Simple Copy Button */
.address-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.simple-copy-btn {
    padding: 0.875rem 1.5rem;
    background: rgba(235, 74, 87, 0.1);
    border: 1px solid rgba(235, 74, 87, 0.3);
    border-radius: 10px;
    color: #EB4A57;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.simple-copy-btn:hover {
    background: rgba(235, 74, 87, 0.2);
    transform: translateY(-1px);
}

/* Token List */
.token-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.token-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.token-item:hover {
    background: rgba(235, 74, 87, 0.05);
    border-color: rgba(235, 74, 87, 0.2);
}

.token-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.token-item span {
    color: #edf0f1;
    font-size: 14px;
    font-weight: 600;
}

/* Transaction Confirmation Screen */
.transaction-confirmation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0e12;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.confirmation-content {
    text-align: center;
    padding: 2rem;
    max-width: 400px;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(235, 74, 87, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.confirmation-icon i {
    font-size: 2.5rem;
    color: #EB4A57;
}

.confirmation-content h3 {
    color: #edf0f1;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.confirmation-subtitle {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.transaction-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.detail-row.highlight {
    background: rgba(16, 185, 129, 0.1);
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.detail-label {
    color: #888;
    font-size: 0.9rem;
}

.detail-value {
    color: #edf0f1;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-value.small {
    font-size: 0.85rem;
    font-family: 'Courier New', monospace;
}

.detail-token-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.detail-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

.confirmation-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(235, 74, 87, 0.1);
    border-top-color: #EB4A57;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.confirmation-loader p {
    color: #888;
    font-size: 0.9rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



/* Generic Popup */
.popup-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup-box {
    background: #13161B;
    border-radius: 15px;
    padding: 2.5rem;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    text-align: center;
    position: relative;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.popup-message {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-light);
}
.popup-close-icon {
    position: absolute;
    top: 0px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-medium);
    cursor: pointer;
    transition: color 0.3s ease;
}
.popup-close-icon:hover {
    color: var(--primary-accent);
}

/* Login Methods */
.login-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-method-btn {
    width: 100%;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.login-method-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(235, 74, 87, 0.3);
    transform: translateY(-2px);
}

.wallet-btn:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.deposit-btn:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.login-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    flex-shrink: 0;
}

.login-method-icon img {
    width: 32px;
    height: 32px;
}

.login-method-icon i {
    font-size: 24px;
    color: #10B981;
}

.login-method-content {
    flex: 1;
}

.login-method-content h4 {
    color: #edf0f1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.login-method-content p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.login-method-btn > i {
    color: #666;
    font-size: 18px;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.login-divider span {
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Deposit Login Modal */
.deposit-login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.deposit-login-modal {
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    animation: slideUp 0.3s ease;
}

.deposit-login-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #888;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposit-login-close:hover {
    color: #EB4A57;
}

.deposit-login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.deposit-login-header i {
    font-size: 48px;
    color: #10B981;
    margin-bottom: 1rem;
}

.deposit-login-header h2 {
    color: #edf0f1;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.deposit-login-header p {
    color: #888;
    font-size: 14px;
}



.deposit-login-qr {
    text-align: center;
    margin-bottom: 1rem;
}

.deposit-login-qr img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
}

.qr-label {
    color: #888;
    font-size: 14px;
}









.deposit-login-address {
    margin-bottom: 1rem;
}

.address-label {
    color: #888;
    font-size: 14px;
    margin-bottom: 0.5rem;
}

.address-value {
    display: flex;
    gap: 0.5rem;
}

.address-value input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #edf0f1;
    font-size: 14px;
}

.address-value button {
    padding: 0.75rem 1rem;
    background: rgba(235, 74, 87, 0.1);
    border: 1px solid rgba(235, 74, 87, 0.3);
    border-radius: 8px;
    color: #EB4A57;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-value button:hover {
background: rgba(235, 74, 87, 0.2);
    transform: scale(1.05);
}




.low-label {
	
	color: #edf0f1;
    font-size: 16px;
    font-weight: 600;
	margin-bottom: 0.5rem;
	
}


.deposit-login-amount {
    margin-bottom: 2rem;
}

.amount-label {
    color: #EF4444;
    font-size: 14px;
    margin-top: 0.5rem;
}

.amount-value {
    display: flex;
    gap: 0.5rem;
}

.amount-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.amount-value .amount-icon {
    position: absolute;
    left: 0.75rem;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 1;
}

.amount-value input {
    flex: 1;
    padding: 0.75rem;
	padding-left: 2.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #edf0f1;
    font-size: 14px;
}

.amount-value button {
    padding: 0.75rem 1rem;
    background: rgba(235, 74, 87, 0.1);
    border: 1px solid rgba(235, 74, 87, 0.3);
    border-radius: 8px;
    color: #EB4A57;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.amount-value button:hover {
    background: rgba(235, 74, 87, 0.2);
    transform: scale(1.05);
}











.deposit-login-status {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.deposit-login-status .status-icon {
    margin-bottom: 1rem;
}

.deposit-login-status .status-icon i {
    font-size: 48px;
    color: #FFC107;
    animation: pulse 2s infinite;
}

.status-text {
    color: #edf0f1;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.status-timer {
    color: #10B981;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.deposit-login-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

.deposit-login-warning i {
    color: #FFC107;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.deposit-login-warning strong {
    color: #edf0f1;
    display: block;
    margin-bottom: 0.5rem;
}

.deposit-login-warning ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #bbb;
}

.deposit-login-warning li {
    margin-bottom: 0.25rem;
    font-size: 14px;
}


footer {
  background: #13161B;
  padding: 40px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #EB4A57, #FA8072);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.footer-brand p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: #edf0f1;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Changa', sans-serif;
}

.footer-column a {
  display: block;
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #EB4A57;
}

.creator-text {
  color: #999;
  font-size: 0.9rem;
  margin: 0;
}

.creator {
  color: #4cff88;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #7DA6FF;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background: rgba(125, 166, 255, 0.1);
  color: #a8c5ff;
  transform: translateY(-3px);
}

/* Mobile responsive */
@media (max-width: 768px) {
	
	

  
  footer {
    padding: 2rem 1.5rem 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-column {
    text-align: center;
  }
}
















@media screen and (max-width: 1024px) {
	
    .nav_links {
        display: none;
		
    }


}

/* Media Queries for Mobile */
@media screen and (max-width: 768px) {

    .welcome-title {
		
		font-size: 24px;
		
	}

    .bonus-amount { 
		
		font-size: 20px;
		
	}

    /*Profile Dropdown stuff*/
	
	.deposit-title {
		
		font-size: 16px;
		
	}

    .form-group label{
		
		
		font-size: 14px;
		
	}
	
    .custom-select-trigger {

        font-size: 14px;

    }
	
	.token-select, .amount-input{

        font-size: 14px;

    }
    .deposit-submit-btn {
		
        font-size: 16px;
		
	}




    .convert-title {
		
		font-size: 16px;
		
	}
	
	.convert-amount-input{
		
		width: 100px;
		
	}

    .convert-token-symbol {
		
        font-size: 14px;
		
	}

    .convert-amount-input{
		
        font-size: 14px;
		
	}




    .nav_links {
        display: none;
		
    }
    /* Hide desktop navigation */


    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }

    /* Hide desktop auth buttons */
    .auth-buttons {
        display: none;
    }

    



}


@media screen and (max-width: 600px) {

    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }

    /* Hide desktop auth buttons */
    .auth-buttons {
        display: none;
    }


    /* Popup adjustments */
    .popup-box {
        max-width: 90%;
        padding: 1.5rem;
    }

    .rune-charm-popup {
        width: 280px;
    }


}


@media screen and (max-width: 480px) {


    /* Hide desktop navigation */
    .nav_links {
        display: none;
    }

    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }


	.convert-amount-input{
		
		width: 70px;
		
	}


  

    .rune-charm-popup {
        width: 280px;
    }


}





@media screen and (max-width: 400px) {


    /* Hide desktop navigation */
    .nav_links {
        display: none;
    }



    /* Hide desktop auth buttons */
    .auth-buttons {
        display: none;
    }




}













