/**
 * 🎨 TMT Frontend Styles
 * Modern, clean design για Cardano token minting
 */

/* ============================================================================
   CSS VARIABLES & RESET
   ============================================================================ */

:root {
    /* Colors */
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --secondary: #7c3aed;
    --accent: #4ade80;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Backgrounds */
    --bg-main: #0f0f23;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.1);
    --bg-modal: rgba(0, 0, 0, 0.8);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #ccd6f6;
    --text-muted: #8892b0;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Borders */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hidden {
    display: none !important;
}

/* ============================================================================
   HEADER STYLES
   ============================================================================ */

.header {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-xl) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* CRITICAL MOBILE FIXES - PRIORITY OVERRIDES */
@media screen and (max-width: 767px) {
    .header {
        position: relative !important; /* Remove sticky on mobile to save space */
        padding: 12px 0 !important; /* Force smaller padding */
        min-height: auto !important;
    }
    
    .header .container {
        padding: 0 16px !important;
    }
    
    .logo h1 {
        font-size: 1.5rem !important; /* Force smaller title */
        margin: 0 !important;
    }
    
    .logo span {
        font-size: 0.85rem !important; /* Force smaller subtitle */
        margin: 0 !important;
    }
}

/* Mobile-first approach for header */
@media (max-width: 767px) {
    .header {
        position: relative; /* Remove sticky on mobile to save space */
        padding: var(--spacing-md) 0;
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    text-align: left;
    flex-shrink: 0;
}

.logo h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 400;
}

.nav-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
}



.twitter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    opacity: 0.7;
}

.twitter-logo img {
    height: 32px;
    width: 32px;
    object-fit: contain;
    transition: all 0.2s ease;
    filter: brightness(0.9);
}

.twitter-logo:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.twitter-logo:hover img {
    filter: brightness(1.1);
}

/* Discord Logo */
.discord-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    opacity: 0.7;
}

.discord-logo i {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
}

.discord-logo:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.discord-logo:hover i {
    transform: scale(1.1);
    color: #4752c4;
}

/* Home Button */
.home-button {
    position: fixed;
    left: 20px;
    top: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    letter-spacing: 0.025em;
    backdrop-filter: blur(10px);
}

.home-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    color: rgba(0, 212, 255, 0.9);
    transform: translateY(-50%) translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
}

.home-button i {
    font-size: 16px;
    opacity: 0.8;
}

.home-button:hover i {
    opacity: 1;
    transform: scale(1.05);
}

/* Buy Now Button - Minimal Style */
.btn-buy-now {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    letter-spacing: 0.025em;
}

.btn-buy-now:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-buy-now:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.btn-buy-now i {
    font-size: 16px;
    opacity: 0.9;
}



/* OG Rewards Button */
.btn-og-rewards {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    letter-spacing: 0.025em;
}

.btn-og-rewards:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-og-rewards:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.btn-og-rewards i {
    font-size: 16px;
    opacity: 0.9;
}

/* Staking Button - Minimal Style */
.btn-staking {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    letter-spacing: 0.025em;
}

.btn-staking:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-staking:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2);
}

.btn-staking i {
    font-size: 16px;
    opacity: 0.9;
}

/* Partnership Button - Professional Style */
.btn-partnership {
    background: linear-gradient(135deg, #ff6b35 0%, #f7941e 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    letter-spacing: 0.025em;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.btn-partnership:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff7b45 0%, #f8a41e 100%);
}

.btn-partnership:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.btn-partnership i {
    font-size: 16px;
    opacity: 0.9;
}

/* Back to Home Button - Navigation Style */
.btn-back-home {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    letter-spacing: 0.025em;
}

.btn-back-home:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-1px);
}

.btn-back-home:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.btn-back-home i {
    font-size: 16px;
    opacity: 0.9;
}

.social-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: center;
}

.wallet-section {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    min-width: 200px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.btn-wallet {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 165, 0, 0.5);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    letter-spacing: 0.025em;
}

.btn-wallet:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: rgba(255, 165, 0, 0.8);
    color: white;
}

.btn-wallet:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

.btn-wallet i {
    font-size: 18px;
    opacity: 0.9;
}

.wallet-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-size: 13px;
    white-space: nowrap;
    max-width: 200px;
}

.wallet-status span {
    color: rgba(34, 197, 94, 0.9);
    font-weight: 500;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-disconnect {
    background: rgba(71, 85, 105, 0.8);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(71, 85, 105, 0.3);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 11px;
    transition: all 0.2s ease;
    cursor: pointer;
    letter-spacing: 0.025em;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.btn-disconnect:hover {
    background: rgba(71, 85, 105, 1);
    border-color: rgba(71, 85, 105, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 85, 105, 0.15);
}

/* ============================================================================
   FINAL MOBILE OVERRIDE - HIGHEST PRIORITY
   ============================================================================ */

@media screen and (max-width: 480px) {
    /* ULTRA AGGRESSIVE MOBILE HEADER FIXES */
    body {
        overflow-x: hidden !important;
    }
    
    .header {
        position: static !important;
        padding: 6px 0 !important;
        min-height: auto !important;
        height: auto !important;
        max-height: none !important;
    }
    
    .header .container {
        padding: 0 8px !important;
        gap: 4px !important;
        min-height: auto !important;
    }
    
    .logo {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .logo h1 {
        font-size: 1.3rem !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.1 !important;
    }
    
    .logo span {
        font-size: 0.75rem !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-section {
        margin: 2px 0 !important;
        gap: 4px !important;
        max-width: 280px !important;
    }
    
    .nav-section > * {
        flex: 0 0 calc(50% - 2px) !important;
        max-width: 120px !important;
    }
    
    .btn-buy-now,
    .btn-og-rewards,
    .btn-staking,
    .btn-partnership,
    .btn-dashboard {
        padding: 4px 6px !important;
        font-size: 10px !important;
        min-height: 28px !important;
        max-height: 28px !important;
        gap: 2px !important;
    }
    
    .btn-buy-now i,
    .btn-og-rewards i,
    .btn-staking i,
    .btn-partnership i,
    .btn-dashboard i {
        font-size: 10px !important;
    }
    
    .btn-wallet {
        padding: 4px 8px !important;
        font-size: 11px !important;
        min-height: 28px !important;
        max-height: 28px !important;
    }
    
    .main {
        padding-top: 12px !important;
    }
}

/* Multi-Wallet Selector */
.wallet-selector {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    margin-top: 8px;
}

/* Mobile wallet selector optimization */
@media (max-width: 768px) {
    .wallet-selector {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 300px;
        margin-top: 0;
        border-radius: 12px;
        padding: 16px;
    }
    
    .wallet-option {
        min-width: auto;
        padding: 12px 14px;
        border-radius: 8px;
    }
    
    .wallet-icon {
        width: 28px;
        height: 28px;
    }
    
    .wallet-name {
        font-size: 14px;
    }
}

.wallet-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wallet-option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 16px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    gap: 12px;
}

.wallet-option:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.wallet-option:hover .wallet-icon {
    transform: scale(1.05);
}

.wallet-option:hover .wallet-name {
    color: var(--text-primary);
    font-weight: 600;
}

.wallet-option.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(30, 41, 59, 0.3);
}

.wallet-option.unavailable:hover {
    transform: none;
    background: rgba(30, 41, 59, 0.3);
    border-color: rgba(71, 85, 105, 0.3);
    box-shadow: none;
}

.wallet-option.unavailable .wallet-icon {
    filter: grayscale(100%);
}

.wallet-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: smooth;
}

.wallet-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.25s ease;
}



/* Wallet-specific styling */
.wallet-option[data-wallet="lace"] {
    border-color: rgba(139, 69, 219, 0.3);
}

.wallet-option[data-wallet="lace"]:hover {
    background: rgba(139, 69, 219, 0.08);
    border-color: rgba(139, 69, 219, 0.4);
    box-shadow: 0 8px 25px rgba(139, 69, 219, 0.15);
}

.wallet-option[data-wallet="eternl"] {
    border-color: rgba(59, 130, 246, 0.3);
}

.wallet-option[data-wallet="eternl"]:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.wallet-option[data-wallet="vespr"] {
    border-color: rgba(16, 185, 129, 0.3);
}

.wallet-option[data-wallet="vespr"]:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

/* Animation for wallet selector */
.wallet-selector {
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.wallet-section {
    position: relative;
}

/* ============================================================================
   MAIN CONTENT STYLES
   ============================================================================ */

.main {
    padding: var(--spacing-2xl) 0;
}

/* Reduce main content padding on mobile */
@media (max-width: 768px) {
    .main {
        padding: var(--spacing-lg) 0;
    }
}

.status-section {
    margin-bottom: var(--spacing-2xl);
    display: none; /* Hide Backend API status section */
}

.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    transition: var(--transition);
    position: relative;
}

.status-card:hover {
    background: var(--bg-glass);
    transform: translateY(-2px);
}

.status-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.status-info h3 {
    margin: 0 0 var(--spacing-xs) 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.status-info p {
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--text-secondary);
}

.status-info small {
    color: var(--text-muted);
    font-family: monospace;
}

.retry-btn {
    position: absolute;
    right: 20px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.retry-btn:hover:not(:disabled) {
    background: var(--secondary);
    transform: translateY(-1px);
}

.retry-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.test-btn {
    position: absolute;
    right: 80px;
    background: var(--secondary);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

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

/* ============================================================================
   FORM STYLES
   ============================================================================ */

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
}

/* ============================================================================
   SWAP WIDGET STYLES
   ============================================================================ */

.swap-section {
    margin-top: var(--spacing-2xl);
}

.swap-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.swap-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.swap-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.swap-header h2 {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.swap-header p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.swap-widget {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.swap-widget iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: none;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, #1a1a3e 0%, #2a2a5e 100%);
}

.swap-info {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.info-item i {
    color: var(--primary);
    font-size: 1rem;
}

.form-card h2 {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-card > p {
    margin: 0 0 var(--spacing-2xl) 0;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: var(--spacing-xl);
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: var(--spacing-xl);
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Textarea styling */
textarea {
    width: 100%;
    min-height: 80px;
    resize: vertical;
    font-family: inherit;
    padding: var(--spacing-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Character counter */
.char-counter {
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: var(--spacing-xs);
}

.char-counter.warning {
    color: #f59e0b;
}

.char-counter.error {
    color: #ef4444;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group small {
    display: block;
    margin-top: var(--spacing-xs);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: rgba(0, 212, 255, 0.9);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 12px;
    transition: all 0.2s ease;
    letter-spacing: 0.025em;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.6);
    color: rgba(0, 212, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.15);
}

/* ============================================================================
   LOGO UPLOAD STYLES
   ============================================================================ */

.logo-upload {
    position: relative;
}

.logo-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-2xl);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
}

.upload-content i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
}

.upload-content p {
    margin: 0 0 var(--spacing-xs) 0;
    font-weight: 500;
}

.upload-content small {
    color: var(--text-muted);
}

.upload-preview {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: left;
    padding: var(--spacing-lg);
    background: var(--bg-glass);
    border-radius: var(--border-radius-sm);
}

.upload-preview img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.preview-info p {
    margin: 0 0 var(--spacing-xs) 0;
    font-weight: 500;
}

.preview-info small {
    color: var(--text-muted);
}

.ipfs-status {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary);
}

/* Wallet Info Display */
.wallet-info {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
}

.wallet-display {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-md);
}

.wallet-display span {
    display: block;
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--text-secondary);
    word-break: break-all;
    margin-bottom: var(--spacing-xs);
}

.wallet-display.connected span {
    color: var(--accent);
    font-weight: 500;
}

.wallet-display small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ============================================================================
   BUTTON STYLES
   ============================================================================ */

.btn-mint {
    width: 100%;
    background: rgba(0, 212, 255, 0.9);
    color: white;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.15);
    border-radius: 8px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.025em;
    backdrop-filter: blur(10px);
}

.btn-mint:hover:not(:disabled) {
    background: rgba(0, 212, 255, 1);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.25);
}

.btn-mint:disabled {
    background: rgba(71, 85, 105, 0.5);
    border-color: rgba(71, 85, 105, 0.2);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-mint small {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

/* ============================================================================
   MODAL STYLES
   ============================================================================ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: var(--spacing-2xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.loading-content {
    text-align: center;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-lg) auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-content,
.error-content {
    text-align: center;
}

.success-icon,
.error-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

.success-icon {
    color: var(--accent);
}

.error-icon {
    color: var(--danger);
}

.result-details {
    margin: var(--spacing-2xl) 0;
    text-align: left;
}

.detail-item {
    margin-bottom: var(--spacing-lg);
}

.detail-item label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-secondary);
}

.hash-value {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--bg-card);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-family: monospace;
    font-size: 0.875rem;
    word-break: break-all;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: var(--spacing-xs);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

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

.modal-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.btn-primary {
    background: rgba(0, 212, 255, 0.9);
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.15);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    letter-spacing: 0.025em;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(0, 212, 255, 1);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.25);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

/* Backend Status Indicator */
.backend-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.backend-status.connected {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.backend-status.disconnected {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
    border: 1px solid rgba(251, 146, 60, 0.2);
}

.backend-status i {
    font-size: 1em;
}

@media screen and (max-width: 768px) {
    /* AGGRESSIVE HEADER MOBILE OPTIMIZATIONS */
    .header {
        padding: 8px 0 !important; /* Force minimal padding */
        position: static !important; /* Force non-sticky */
        min-height: auto !important;
    }
    
    .header .container {
        flex-direction: column !important;
        gap: 8px !important; /* Minimal gap */
        align-items: center !important;
        padding: 0 12px !important;
    }
    
    .logo {
        margin-bottom: 0 !important;
        text-align: center !important;
    }
    
    .logo h1 {
        font-size: 1.4rem !important; /* Even smaller */
        margin: 0 !important;
        line-height: 1.2 !important;
    }
    
    .logo span {
        font-size: 0.8rem !important; /* Even smaller */
        margin: 0 !important;
        display: block !important;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .logo h1 {
        font-size: 1.75rem; /* Reduced from 2.25rem */
        margin-bottom: 0;
    }
    
    .logo span {
        font-size: 0.95rem; /* Reduced from 1.125rem */
    }
    
    .social-section {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        gap: 6px !important;
        width: auto !important;
        max-width: none !important;
        order: 2 !important;
        margin: 4px 0 !important;
        align-items: center !important;
    }
    
    .social-section > * {
        flex: 0 0 auto !important;
        min-width: 0 !important;
        max-width: none !important;
        white-space: nowrap !important;
    }
    
    .wallet-section {
        width: 100% !important;
        order: 3 !important;
        justify-content: center !important;
        margin-top: 6px !important;
        display: flex !important;
    }
    
    /* Compact social buttons */
    .twitter-logo, .discord-logo {
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .twitter-logo img {
        height: 24px;
        width: 24px;
    }
    
    .discord-logo i {
        font-size: 24px;
    }
    
    /* AGGRESSIVE COMPACT BUTTONS */
    .btn-buy-now,
    .btn-ai-generator,
    .btn-og-rewards,
    .btn-staking,
    .btn-partnership,
    .btn-dashboard {
        padding: 6px 8px !important;
        font-size: 11px !important;
        gap: 3px !important;
        min-height: 32px !important;
        max-height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
        border-radius: 6px !important;
    }
    
    .btn-buy-now i,
    .btn-ai-generator i,
    .btn-og-rewards i,
    .btn-staking i,
    .btn-partnership i,
    .btn-dashboard i {
        font-size: 12px !important;
    }
    
    /* AGGRESSIVE COMPACT WALLET BUTTON */
    .btn-wallet {
        padding: 6px 12px !important;
        font-size: 12px !important;
        min-height: 32px !important;
        max-height: 32px !important;
    }
    
    .btn-wallet i {
        font-size: 14px !important;
    }
    
    /* Other mobile optimizations */
    .status-card {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .upload-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .hash-value {
        flex-direction: column;
        align-items: stretch;
    }
    
    .copy-btn {
        align-self: flex-end;
    }
    
    .swap-widget {
        max-width: 100%;
    }
    
    .swap-widget iframe {
        height: 550px;
    }
    
    .swap-info {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    /* Form improvements for mobile */
    .form-row {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 480px) {
    /* Ultra-compact header for small screens */
    .header {
        padding: 8px 0; /* Even more compact */
    }
    
    .logo h1 {
        font-size: 1.5rem; /* Further reduced */
    }
    
    .logo span {
        font-size: 0.85rem; /* Further reduced */
    }
    
    .container {
        padding: 0 var(--spacing-sm); /* Reduced side padding */
    }
    
    .social-section {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 4px;
        max-width: none;
        align-items: center;
    }
    
    .social-section > * {
        flex: 0 0 auto;
        min-width: 0;
        white-space: nowrap;
    }
    
    .wallet-section {
        margin-top: 8px;
        width: 100%;
    }
    
    /* Extra compact buttons */
    .btn-buy-now,
    .btn-ai-generator,
    .btn-og-rewards,
    .btn-staking {
        padding: 6px 10px;
        font-size: 11px;
        min-height: 36px;
        gap: 3px;
    }
    
    .btn-buy-now i,
    .btn-ai-generator i,
    .btn-og-rewards i,
    .btn-staking i {
        font-size: 12px;
    }
    
    .btn-wallet {
        padding: 6px 12px;
        font-size: 12px;
        min-height: 36px;
    }
    
    .twitter-logo, .discord-logo {
        padding: 6px;
    }
    
    .twitter-logo img {
        height: 20px;
        width: 20px;
    }
    
    .discord-logo i {
        font-size: 20px;
    }
    
    /* Main content spacing */
    .main {
        padding: var(--spacing-lg) 0; /* Reduced from var(--spacing-2xl) */
    }
    
    .swap-card {
        padding: var(--spacing-lg);
    }
    
    .swap-widget iframe {
        height: 500px;
    }
    
    .swap-header h2 {
        font-size: 1.25rem;
    }
    
    .form-card {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
    
    .modal-content {
        padding: var(--spacing-lg);
        width: 95%;
    }
    
    /* Optimize form layout */
    .form-group {
        margin-bottom: var(--spacing-lg);
    }
    
    .btn-mint {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

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

.form-card,
.status-card {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--accent); }
.text-danger { color: var(--danger); }

/* ============================================================================
   STAKING PAGE STYLES
   ============================================================================ */

/* Staking Hero Section */
.staking-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 16px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.staking-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a855f7, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.staking-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Staking Stats */
.staking-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Staking Pools */
.staking-pools {
    margin-bottom: 3rem;
}

.staking-pools h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.pools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pool-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
}

.pool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pool-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pool-apy {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pool-details {
    margin-bottom: 2rem;
}

.pool-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pool-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pool-detail span:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

.pool-detail span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

.btn-stake {
    width: 100%;
    background: rgba(168, 85, 247, 0.9);
    color: white;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.15);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.025em;
    backdrop-filter: blur(10px);
}

.btn-stake:hover {
    background: rgba(168, 85, 247, 1);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.25);
}

/* My Stakes Section */
.my-stakes {
    margin-bottom: 3rem;
}

.my-stakes h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.stakes-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.overview-card {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.overview-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.overview-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Staking Modal */
.stake-form {
    margin-bottom: 1rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group input {
    flex: 1;
    padding: 12px 16px;
    padding-right: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
}

.input-suffix {
    position: absolute;
    right: 16px;
    color: var(--text-secondary);
    font-weight: 600;
    pointer-events: none;
}

.balance-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.btn-max {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-max:hover {
    background: rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.stake-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--primary);
}

.summary-row span:first-child {
    color: var(--text-secondary);
}

.summary-row span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

/* Wallet Selector Professional Styles */
.wallet-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.wallet-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.1);
}

.wallet-option:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.05);
}

.wallet-option img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.btn-disconnect:hover {
    background: rgba(71, 85, 105, 1);
    border-color: rgba(71, 85, 105, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 85, 105, 0.15);
} 