
    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

    :root {
        --primary: #f39c12;
        --primary-glow: rgba(243, 156, 18, 0.4);
        --bg-deep: #050505;
        --card-bg: rgba(20, 20, 20, 0.7);
        --input-inner: rgba(255, 255, 255, 0.04);
        --border-color: rgba(255, 255, 255, 0.08);
        --text-bright: #ffffff;
        --text-muted: #888e96;
    }
    
    
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

 
input[type=number] {
  -moz-appearance: textfield;
}

    .swap-page-container {
        background-color: var(--bg-deep);
        background-image: 
            radial-gradient(circle at 10% 20%, rgba(243, 156, 18, 0.05) 0%, transparent 40%),
            radial-gradient(circle at 90% 80%, rgba(230, 126, 34, 0.05) 0%, transparent 40%);
        min-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Outfit', sans-serif;
        padding: 20px;
    }

    .retro-swap-card {
        background: var(--card-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--border-color);
        border-radius: 32px;
        width: 100%;
        max-width: 460px;
        padding: 30px;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
        position: relative;
    }

    
    .retro-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        color: var(--text-bright);
        font-weight: 700;
        font-size: 22px;
        letter-spacing: -0.5px;
    }

    .retro-title::after {
        content: "Avalanche C-Chain";
        font-size: 11px;
        background: rgba(243, 156, 18, 0.1);
        color: var(--primary);
        padding: 4px 12px;
        border-radius: 100px;
        border: 1px solid rgba(243, 156, 18, 0.2);
    }

 
    .wallet-status-badge {
        background: var(--input-inner);
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 15px;
        margin-bottom: 20px;
        display: none;
    }

    .wallet-address {
        font-size: 13px;
        color: var(--text-muted);
        letter-spacing: 0.5px;
    }

   
    .input-box {
        background: var(--input-inner);
        border: 1px solid var(--border-color);
        border-radius: 24px;
        padding: 20px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .input-box:focus-within {
        border-color: var(--primary);
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 0 20px rgba(243, 156, 18, 0.1);
    }

    .input-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 500;
    }

    .input-box input {
        background: transparent;
        border: none;
        color: var(--text-bright);
        font-size: 28px;
        width: 100%;
        text-align: right;
        outline: none;
        font-weight: 600;
        padding: 0;
        font-family: 'Outfit', sans-serif;
    }

    
    .token-select-display {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.05);
        padding: 6px 14px;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        font-weight: 600;
        color: #fff;
    }

   
    .switch-btn {
        background: #1a1a1a;
        color: var(--text-bright);
        border: 4px solid var(--bg-deep);
        border-radius: 14px;
        width: 44px;
        height: 44px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -22px auto;
        z-index: 5;
        position: relative;
        transition: 0.3s;
        font-size: 20px;
    }

    .switch-btn:hover {
        background: var(--primary);
        transform: rotate(180deg) scale(1.1);
        color: #000;
    }

    
    .percent-group {
        display: flex;
        gap: 8px;
        margin-top: 15px;
    }

    .percent-btn {
        flex: 1;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-color);
        color: var(--text-muted);
        font-size: 11px;
        padding: 6px 0;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.2s;
        text-align: center;
    }

    .percent-btn:hover, .percent-btn.active {
        background: rgba(243, 156, 18, 0.1);
        border-color: var(--primary);
        color: var(--primary);
    }

  
    .btn-action {
        background: var(--primary);
        color: #000;
        width: 100%;
        border: none;
        padding: 20px;
        border-radius: 24px;
        font-weight: 700;
        font-size: 18px;
        cursor: pointer;
        margin-top: 25px;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-action:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px var(--primary-glow);
    }

    .btn-action:disabled {
        background: #252525;
        color: #555;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

   
    #custom-alert {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: #ff4757;
        color: white;
        padding: 10px 25px;
        border-radius: 12px;
        font-size: 14px;
        white-space: nowrap;
        display: none;
        z-index: 100;
        box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
        font-weight: 600;
    }

    .add-metamask-btn {
        background: none;
        border: none;
        color: var(--text-muted);
        font-size: 13px;
        margin-top: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        transition: 0.3s;
    }

    .add-metamask-btn:hover { color: var(--text-bright); }

    #status {
        font-size: 10px;
        color: #444;
        text-align: center;
        margin-top: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
   
.input-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;  
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    gap: 10px;  
}

 
#status {
    display: flex !important;  
}

.liquidity-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 10px;
}

.liquidity-status span {
    font-size: 16px;
    font-weight: 800;
    color: #FA52A0; /* Sushi Pembe */
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(250, 82, 160, 0.2);
}

.sushi-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(250, 82, 160, 0.5));
}


 
@media (max-width: 480px) {
    .token-select-display {
        padding: 4px 10px;
        font-size: 12px;
        gap: 6px;
    }

    .token-select-display div {
        width: 16px !important;  
        height: 16px !important;
    }

    .input-box input {
        font-size: 24px; 
    }

     
    #sell-bal-display, #buy-bal-display {
        font-size: 11px;
        white-space: nowrap;
        opacity: 0.8;
    }
    
      #sell-bal-display, #buy-bal-display {
    white-space: nowrap;
    font-size: 11px;
    margin-left: auto; 
}
}


 
        #nav-connect-btn {
            transition: all 0.3s ease;
            min-width: 180px;
            font-weight: 700;
        }
        
     
        #communityAccordion .accordion-button:not(.collapsed) {
            background-color: rgb(108, 114, 147);
            color: #fff;
            box-shadow: none;
        }

        .lunzy-img {
            width: 100%; height: 250px;
            object-fit: contain; background-color: #000;
        }

        @media (max-width: 768px) {
            .lunzy-img { height: 200px; }
            #nav-connect-btn { margin-top: 15px; width: 100%; }
        }
        
        
        
        
     