* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a0000 !important;
    background-image: url('./robot_background.jpg') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    color: white;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
}

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #1a0000 !important;
    background-image: url('./robot_background.jpg'), url('robot_background.jpg') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* Particles */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    background: transparent;
}

/* Security Notice */
.security-notice {
    margin: 20px 0;
    animation: securityGlow 3s ease-in-out infinite alternate;
}

.security-notice .alert {
    border: 1px solid rgba(13, 202, 240, 0.3);
    box-shadow: 0 4px 15px rgba(13, 202, 240, 0.1);
    transition: all 0.3s ease;
}

.security-notice .alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 202, 240, 0.2);
}

@keyframes securityGlow {
    0% { box-shadow: 0 0 5px rgba(13, 202, 240, 0.3); }
    100% { box-shadow: 0 0 15px rgba(13, 202, 240, 0.6); }
}

.security-notice .badge {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
}

/* Wallet Dashboard Styles - Enhanced Classy Design */
.wallet-dashboard {
    margin: 15px 0;
    animation: slideInFromTop 0.5s ease-out;
    max-width: 100%;
}

.dashboard-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 
                0 8px 32px rgba(0, 255, 136, 0.1);
    transition: all 0.4s ease;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.6) 20%, 
        rgba(255, 193, 7, 0.6) 50%, 
        rgba(0, 123, 255, 0.6) 80%, 
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 
                0 12px 40px rgba(0, 255, 136, 0.2);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.dashboard-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.5) 50%, 
        transparent 100%);
}

.dashboard-header h3 {
    color: #00ff88;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    letter-spacing: 0.5px;
}

.balance-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.balance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.15), 
        transparent);
    transition: left 0.8s ease;
}

.balance-card:hover::before {
    left: 100%;
}

.balance-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.25),
                0 5px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
}

.balance-card.highlight {
    border-color: rgba(0, 255, 136, 0.6);
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.15) 0%, 
        rgba(255, 193, 7, 0.1) 100%);
    animation: highlightPulse 3s ease-in-out infinite alternate;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

@keyframes highlightPulse {
    0% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }
    100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.6); }
}

.balance-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.balance-info h6 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance-amount {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
    margin: 5px 0;
    word-break: break-all;
}

.balance-card small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.dashboard-actions {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.dashboard-actions .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.dashboard-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contract-info {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contract-info .font-monospace {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading animation for balance refresh */
.balance-loading {
    animation: balanceSpin 1s linear infinite;
}

@keyframes balanceSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .wallet-dashboard {
        margin: 10px 0;
    }
    
    .dashboard-card {
        padding: 12px;
        margin: 0 5px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .dashboard-header h3 {
        font-size: 1.1rem;
    }
    
    .balance-card {
        margin-bottom: 8px;
        padding: 10px;
    }
    
    .balance-amount {
        font-size: 1.0rem;
    }
    
    .balance-info h6 {
        font-size: 0.8rem;
    }
    
    .balance-icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .row.g-3 {
        margin: 0 -5px;
    }
    
    .row.g-3 > * {
        padding: 0 5px;
    }
}

#particles-js canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* CSS Fallback Particles */
.css-particle {
    position: absolute;
    background: #ff4444;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 8s linear infinite;
    pointer-events: none;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.7;
    }
}

.main-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 2;
    background-color: #1a0000 !important;
    background-image: url('./robot_background.jpg'), url('robot_background.jpg') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

/* Left Side - Robot */
.left-side {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: none;
    z-index: -1;
    pointer-events: none;
}

.robot-character {
    width: 100%;
    height: 100%;
    background: none;
}

/* Right Side - Main Content */
.right-side {
    width: 100vw;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    min-height: 100vh;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
    background: transparent;
}

/* Header */
.header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.connect-wallet-btn {
    background: linear-gradient(45deg, #ff4444, #cc2222);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    min-height: 44px; /* Minimum touch target size */
    touch-action: manipulation; /* Improve touch responsiveness */
}

.connect-wallet-btn:hover {
    background: linear-gradient(45deg, #ff6666, #ff4444);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6);
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
}

.disconnect-btn {
    background: linear-gradient(45deg, #ff4444, #cc2222);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(255, 68, 68, 0.4);
    transition: all 0.3s ease;
}

.disconnect-btn:hover {
    background: linear-gradient(45deg, #ff6666, #ff4444);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.6);
}

/* Main Title */
.main-title {
    text-align: center;
    margin: 20px 0;
}

.main-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.main-title p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Buy Section */
.buy-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
}

.buy-section h3 {
    color: white;
    margin-bottom: 24px;
    font-size: 20px;
}

.buy-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.buy-input {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.buy-input label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
}

.token-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.max-button {
    background: linear-gradient(45deg, #ff4444, #cc3333);
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.max-button:hover {
    background: linear-gradient(45deg, #ff6666, #ee4444);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.max-button:active {
    transform: translateY(0);
}

.token-selector {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.token-selector:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 68, 68, 0.5);
}

.token-selector:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff4444;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.2);
}

.token-selector option {
    background: #1a1a1a;
    color: white;
    padding: 8px;
}

.buy-amount {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    outline: none;
}

.buy-amount::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.token-selector {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    outline: none;
}

.token-selector option {
    background: #333;
    color: white;
}

/* How to Sections */
.how-to-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;
}

.how-to-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ff4444;
    width: 100%;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 68, 68, 0.3);
    transform: translateY(-2px);
}

.step-number {
    background: linear-gradient(45deg, #ff4444, #cc2222);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.step-content h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
}

.buy-button, .buy-btn, .swap-button {
    width: 100%;
    background: linear-gradient(45deg, #ff4444, #cc2222);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    min-height: 44px; /* Minimum touch target size */
    touch-action: manipulation; /* Improve touch responsiveness */
    position: relative;
    z-index: 10;
    user-select: none;
}

.buy-button:hover, .buy-btn:hover, .swap-button:hover {
    background: linear-gradient(45deg, #ff6666, #ff4444);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6);
}

.buy-button:active, .buy-btn:active, .swap-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 68, 68, 0.4);
}

/* Swap Section */
.swap-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
}

.swap-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.swap-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.swap-input {
    background: rgba(255, 255, 255, 0.08);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.swap-input label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-bottom: 8px;
}

.balance-info {
    margin-top: 8px;
    text-align: right;
}

.balance-info a {
    color: #ff6b6b !important;
    text-decoration: none;
    font-size: 11px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.balance-info a:hover {
    opacity: 1;
    text-decoration: underline;
}

.token-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.swap-amount {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    outline: none;
}

.swap-amount::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.token-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.token-badge.alai .token-icon {
    color: #ff4444;
}

.token-badge.bnb .token-icon {
    color: #f3ba2f;
}

.address-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 8px;
}

.address-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.swap-fee-info {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin: 16px 0;
    text-align: center;
}

.swap-fee-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 4px 0;
}

.swap-fee-info p:first-child {
    color: #ff4444;
    font-weight: 600;
}

/* Small Holder Priority Swap Section */
.small-holder-swap-section {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(25, 135, 84, 0.3);
    width: 100%;
    max-width: 650px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(25, 135, 84, 0.2);
    position: relative;
}

.small-holder-swap-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #198754, #40a764, #198754);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    animation: pulse-border 2s ease-in-out infinite alternate;
}

@keyframes pulse-border {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.small-holder-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.swap-container.small-holder {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.eligibility-check {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(25, 135, 84, 0.2);
}

.eligibility-check h6 {
    color: #fff;
    font-weight: 600;
}

#eligibilityStatus {
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 20px;
}

#eligibilityStatus.eligible {
    background: linear-gradient(45deg, #198754, #40a764) !important;
    color: white;
    animation: glow-green 2s ease-in-out infinite alternate;
}

#eligibilityStatus.not-eligible {
    background: linear-gradient(45deg, #dc3545, #c82333) !important;
    color: white;
}

@keyframes glow-green {
    0% { box-shadow: 0 0 5px rgba(25, 135, 84, 0.5); }
    100% { box-shadow: 0 0 20px rgba(25, 135, 84, 0.8); }
}

.swap-fee-info.small-holder {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border: 1px solid rgba(25, 135, 84, 0.3);
    padding: 20px;
    border-radius: 12px;
}

.fee-comparison {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.fee-comparison.special {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    border: 1px solid rgba(255, 193, 7, 0.4);
    animation: pulse-warning 3s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.fee-comparison h6 {
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fee-comparison p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.swap-progress {
    background: rgba(13, 202, 240, 0.1);
    border: 1px solid rgba(13, 202, 240, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    text-align: center;
}

#smallHolderSwapButton {
    background: linear-gradient(45deg, #198754, #40a764);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.4);
    position: relative;
    overflow: hidden;
}

#smallHolderSwapButton:enabled {
    animation: button-glow 2s ease-in-out infinite alternate;
}

#smallHolderSwapButton:enabled:hover {
    background: linear-gradient(45deg, #40a764, #198754);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.6);
}

#smallHolderSwapButton:disabled {
    background: rgba(108, 117, 125, 0.3);
    cursor: not-allowed;
    animation: none;
}

@keyframes button-glow {
    0% { box-shadow: 0 5px 15px rgba(25, 135, 84, 0.4); }
    100% { box-shadow: 0 5px 25px rgba(25, 135, 84, 0.7); }
}

#smallHolderSwapButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

#smallHolderSwapButton:enabled:hover::before {
    left: 100%;
}

/* Claim Dividends Section */
.dividends-section {
    text-align: center;
    margin: 30px 0;
}

.dividends-section h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.dividends-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.countdown {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.claim-button {
    background: linear-gradient(45deg, #ff4444, #cc2222);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.claim-button:hover {
    background: linear-gradient(45deg, #ff6666, #ff4444);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6);
}

/* Why Buy Now Section */
.why-buy-section {
    margin: 30px 0;
}

.why-buy-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list li:before {
    content: "•";
    color: #ff4444;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Testimonials */
.testimonials-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, 
        rgba(255, 68, 68, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 25%, 
        rgba(255, 68, 68, 0.08) 50%, 
        rgba(255, 255, 255, 0.03) 75%, 
        rgba(255, 68, 68, 0.12) 100%);
    border-radius: 20px;
    filter: blur(8px);
    z-index: -1;
    opacity: 0.7;
}

.testimonial {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 68, 68, 0.5) 50%, 
        transparent 100%);
}

.testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.testimonial:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255, 68, 68, 0.3);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 68, 68, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.testimonial:hover::after {
    left: 100%;
}

/* Testimonial entrance animation */
@keyframes testimonialFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.testimonial {
    animation: testimonialFadeIn 0.6s ease-out;
}

.testimonial:nth-child(1) { animation-delay: 0.1s; }
.testimonial:nth-child(2) { animation-delay: 0.2s; }
.testimonial:nth-child(3) { animation-delay: 0.3s; }

/* Trust & Transparency Section */
.trust-section {
    width: 100%;
    max-width: 1000px;
    margin: 40px 0;
    position: relative;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #ff4444, #ff6666, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 68, 68, 0.3);
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    width: 100%;
}

.trust-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 68, 68, 0.6) 50%, 
        transparent 100%);
}

.trust-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.trust-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 68, 68, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 68, 68, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.trust-card:hover::after {
    left: 100%;
}

.trust-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(255, 68, 68, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.trust-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    color: white;
    font-weight: 700;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 14px;
    position: relative;
    padding-left: 8px;
    transition: all 0.3s ease;
}

.trust-list li:hover {
    color: white;
    transform: translateX(5px);
}

.trust-card.gratitude {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, 
        rgba(255, 68, 68, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 68, 68, 0.12) 100%);
    text-align: center;
}

.gratitude-message p {
    font-size: 16px;
    line-height: 1.8;
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.9);
}

.gratitude-message .highlight {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff4444, #ff6666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 68, 68, 0.3);
}

/* Trust section entrance animation */
@keyframes trustCardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.trust-card {
    animation: trustCardFadeIn 0.8s ease-out;
}

.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.2s; }
.trust-card:nth-child(3) { animation-delay: 0.3s; }
.trust-card:nth-child(4) { animation-delay: 0.4s; }
.trust-card:nth-child(5) { animation-delay: 0.5s; }

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff4444, #cc2222);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 
        0 4px 12px rgba(255, 68, 68, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial:hover .avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 6px 16px rgba(255, 68, 68, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.username {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    position: relative;
}

.username::before {
    content: '@';
    color: rgba(255, 68, 68, 0.8);
    margin-right: 2px;
}

.testimonial p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 15px;
    position: relative;
    z-index: 2;
    margin: 0;
    font-style: italic;
}

/* Roadmap */
.roadmap-section {
    margin: 40px 0;
}

.roadmap-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.roadmap-items {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.roadmap-item {
    flex: 1;
    text-align: center;
}

.roadmap-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.roadmap-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .left-side {
        position: relative;
        width: 100%;
        height: 40vh;
    }
    
    .right-side {
        width: 100%;
        padding: 20px;
        min-height: 60vh;
        justify-content: flex-start;
        padding-top: 80px;
    }
    
    .header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        padding: 15px 20px;
        justify-content: flex-end;
        z-index: 100;
    }
    
    .main-title h1 {
        font-size: 2.5rem;
    }
}

/* Enhanced Mobile Layout - Full Width & Centered */
@media (max-width: 768px) {
    body {
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }
    
    .main-container {
        flex-direction: column;
        min-height: 100vh;
        width: 100vw;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    .left-side {
        display: none;
    }
    
    body {
        background-attachment: scroll !important;
    }
    
    .left-side::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }
    
    .right-side {
        width: 100%;
        padding: 20px;
        gap: 30px;
        min-height: 70vh;
        align-items: center;
        justify-content: flex-start;
        order: 2;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
    
    .header {
        position: relative;
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
    
    .main-title {
        text-align: center;
        width: 100%;
        margin: 20px 0;
    }
    
    .main-title h1 {
        font-size: 2.4rem;
        margin: 0;
        text-align: center;
    }
    
    .dividends-section h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .how-to-section, .buy-section, .swap-section {
        padding: 32px 24px;
        max-width: 100%;
        width: 100%;
        margin: 0 0 30px 0;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
    }
    
    .trust-section {
        max-width: 100%;
        width: 100%;
        margin: 40px 0;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .trust-section h2 {
        font-size: 2.4rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .trust-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
    }
    
    .trust-card {
        padding: 28px 24px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .trust-icon {
        font-size: 3rem;
        margin-bottom: 16px;
    }
    
    .testimonials-section {
        gap: 20px;
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .twitter-card {
        padding: 24px 20px;
        margin: 16px 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .roadmap-section {
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .roadmap-items {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .roadmap-item {
        padding: 24px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    
    .roadmap-phase {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .roadmap-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .roadmap-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Enhanced Input and Button Styling for Mobile */
    .buy-input-container {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 15px;
    }
    
    .token-input, .eth-input, .buy-amount, .swap-amount {
        padding: 20px 24px;
        border-radius: 12px;
        font-size: 16px;
        min-height: 52px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: white;
        margin: 8px 0;
    }
    
    .buy-button, .buy-btn, .swap-button, .connect-button {
        padding: 20px 32px;
        font-size: 17px;
        min-height: 56px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        margin: 15px 0;
        box-sizing: border-box;
        font-weight: 600;
    }
    
    .max-button {
        width: 100%;
        padding: 16px;
        min-height: 48px;
        margin: 10px 0;
        font-size: 15px;
        border-radius: 10px;
    }
    
    .token-badge {
        justify-content: center;
        padding: 16px;
        min-height: 48px;
        width: 100%;
        margin: 8px 0;
        font-size: 15px;
    }
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .left-side {
        height: 30vh;
    }
    
    .header {
        padding: 10px 15px;
    }
    
    .connect-wallet-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Responsive token input rows */
    .token-input-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .buy-amount, .swap-amount {
        min-width: 150px;
        flex: 1;
    }
    
    .token-badge {
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .max-button {
        order: -1;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .right-side {
        padding: 16px;
        gap: 25px;
        padding-top: 90px;
    }
    
    .main-title h1 {
        font-size: 1.8rem;
    }
    
    .main-title p {
        font-size: 1rem;
    }
    
    .how-to-section {
        padding: 24px;
        margin: 0 auto 20px;
    }
    
    .buy-section {
        padding: 24px;
        margin: 0 auto 20px;
    }
    
    .swap-section {
        padding: 24px;
        margin: 0 auto 20px;
    }
    
    .testimonial {
        padding: 20px;
        margin: 0 auto;
    }
    
    .trust-section h2 {
        font-size: 1.8rem;
    }
    
    .trust-card {
        padding: 22px 18px;
        margin: 0 auto;
    }
    
    .trust-icon {
        font-size: 2.2rem;
    }
    
    .trust-list li {
        font-size: 14px;
        padding: 12px 0;
        line-height: 1.6;
    }
    
    .gratitude-message p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .gratitude-message .highlight {
        font-size: 17px;
    }
    
    .left-side {
        height: 25vh;
    }
    
    .header {
        padding: 12px 16px;
    }
    
    .connect-wallet-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 140px;
    }
    
    /* More aggressive mobile fixes */
    .token-input-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .buy-amount, .swap-amount {
        width: 100%;
        margin-bottom: 10px;
        padding: 16px;
        font-size: 16px;
        min-height: 50px;
        border-radius: 8px;
    }
    
    .token-badge {
        justify-content: center;
        padding: 12px;
        min-height: 44px;
    }
    
    .max-button {
        width: 100%;
        margin-bottom: 10px;
        order: 0;
        padding: 12px;
        min-height: 44px;
    }
    
    .swap-fee-info {
        font-size: 13px;
        padding: 16px;
        margin: 20px 0;
    }
    
    .buy-button, .buy-btn, .swap-button {
        padding: 18px;
        font-size: 16px;
        min-height: 52px;
    }
    
    /* Larger input labels and better spacing */
    .buy-input label, .swap-input label {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .buy-input, .swap-input {
        padding: 18px;
        margin-bottom: 16px;
    }
}

/* WalletConnect Modal Styles */
#walletconnect-wrapper {
    z-index: 99999 !important;
}

#walletconnect-modal {
    max-width: 90vw !important;
    max-height: 90vh !important;
}

#walletconnect-qrcode {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    #walletconnect-modal {
        max-width: 95vw !important;
        margin: 5vh auto !important;
        border-radius: 12px !important;
    }
    
    #walletconnect-qrcode {
        max-width: 250px !important;
    }
    
    .walletconnect-modal__mobile__toggle {
        margin-top: 20px !important;
    }
}

/* Web3Modal Custom Styles - Enhanced Mobile Support */
div[data-testid="web3modal"] {
    z-index: 99999 !important;
}

.web3modal-modal-card {
    border-radius: 12px !important;
    max-width: 90vw !important;
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 68, 68, 0.3) !important;
}

/* Web3Modal overlay for mobile */
.web3modal-modal-lightbox {
    z-index: 99998 !important;
    background: rgba(0, 0, 0, 0.85) !important;
}

/* Web3Modal provider buttons */
.web3modal-provider-wrapper {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.web3modal-provider-wrapper:hover {
    background: rgba(255, 68, 68, 0.1) !important;
    border-color: rgba(255, 68, 68, 0.3) !important;
    transform: translateY(-2px) !important;
}

.web3modal-provider-name {
    color: white !important;
    font-weight: 600 !important;
}

.web3modal-provider-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .web3modal-modal-card {
        max-width: 95vw !important;
        margin: 10px !important;
        min-height: auto !important;
    }
    
    .web3modal-provider-container {
        padding: 15px !important;
        gap: 12px !important;
    }
    
    .web3modal-provider-wrapper {
        padding: 16px !important;
        min-height: 60px !important;
    }
    
    .web3modal-provider-name {
        font-size: 16px !important;
    }
    
    .web3modal-provider-description {
        font-size: 14px !important;
    }
    
    /* Fix for mobile wallet connection modal */
    .web3modal-modal-lightbox {
        padding: 10px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Ensure modal is properly visible on mobile */
    .web3modal-modal-container {
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
}

/* Enhanced WalletConnect QR code styling for mobile */
.walletconnect-qr__base {
    background: white !important;
    border-radius: 12px !important;
    padding: 20px !important;
}

@media (max-width: 480px) {
    .web3modal-modal-card {
        max-width: 98vw !important;
        margin: 5px !important;
        border-radius: 8px !important;
    }
    
    .web3modal-provider-wrapper {
        padding: 12px !important;
        margin-bottom: 8px !important;
    }
    
    .web3modal-provider-name {
        font-size: 15px !important;
    }
}

/* Beautiful SweetAlert2 Custom Styles */
.swal2-popup {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    border: 1px solid rgba(255, 68, 68, 0.3) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 68, 68, 0.1) !important;
    color: white !important;
    backdrop-filter: blur(10px) !important;
}

.swal2-title {
    color: #ff4444 !important;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.swal2-content {
    color: #e0e0e0 !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

.swal2-confirm {
    background: linear-gradient(45deg, #ff4444, #cc3333) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.swal2-confirm:hover {
    background: linear-gradient(45deg, #ff6666, #ee4444) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 68, 68, 0.6) !important;
}

.swal2-cancel {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    color: #ccc !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.swal2-cancel:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: white !important;
}

.swal2-icon {
    border: none !important;
    margin: 20px auto 10px !important;
}

.swal2-icon.swal2-success {
    color: #4CAF50 !important;
}

.swal2-icon.swal2-error {
    color: #ff4444 !important;
}

/* Wallet Installation Button Styles */
.wallet-install-btn {
    padding: 12px 20px !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-align: center !important;
    text-decoration: none !important;
    display: block !important;
}

.wallet-install-btn.metamask {
    background: linear-gradient(45deg, #f6851b, #e2761b) !important;
    color: white !important;
}

.wallet-install-btn.metamask:hover {
    background: linear-gradient(45deg, #ff9533, #f6851b) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(246, 133, 27, 0.4) !important;
}

/* Mobile Background Fixes */
@media (max-width: 768px) {
    /* Mobile layout handled above */
}

@media (max-width: 480px) {
    .left-side {
        height: 30vh !important;
        margin-left: calc(-50vw + 50%) !important;
    }
}

/* Desktop Background Enhancement */
@media (min-width: 769px) {
    .left-side {
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-image: url('./robot_background.jpg') !important;
        background-position: center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        z-index: -1 !important;
    }
    
    .robot-character {
        width: 100% !important;
        height: 100% !important;
        background: none !important;
    }
    
    /* Ensure no gaps or margins */
    .main-container {
        margin: 0 !important;
        padding: 0 !important;
        width: 100vw !important;
        min-height: 100vh !important;
    }
    
    .right-side {
        width: 100vw !important;
        margin: 0 !important;
        padding-left: 0 !important;
    }
}

.wallet-install-btn.binance {
    background: linear-gradient(45deg, #f0b90b, #d9a441) !important;
    color: #000 !important;
}

.wallet-install-btn.binance:hover {
    background: linear-gradient(45deg, #ffc73c, #f0b90b) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(240, 185, 11, 0.4) !important;
}

.wallet-install-btn.trust {
    background: linear-gradient(45deg, #3375bb, #2e5c8a) !important;
    color: white !important;
}

.wallet-install-btn.trust:hover {
    background: linear-gradient(45deg, #4a8dd6, #3375bb) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(51, 117, 187, 0.4) !important;
}

.wallet-install-btn.walletconnect {
    background: linear-gradient(45deg, #3b99fc, #1e88e5) !important;
    color: white !important;
}

.wallet-install-btn.walletconnect:hover {
    background: linear-gradient(45deg, #5ba8ff, #3b99fc) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(59, 153, 252, 0.4) !important;
}

.swal2-icon.swal2-warning {
    color: #ff9800 !important;
}

.swal2-icon.swal2-info {
    color: #2196F3 !important;
}

.swal2-backdrop {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(5px) !important;
}

/* Loading Animation */
.swal2-loading .swal2-confirm {
    background: linear-gradient(45deg, #666, #999) !important;
    animation: pulse 2s infinite !important;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}

/* Custom wallet installation buttons */
.wallet-install-btn {
    display: inline-block !important;
    width: 100% !important;
    padding: 15px !important;
    margin: 8px 0 !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.wallet-install-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

.wallet-install-btn.metamask {
    background: linear-gradient(45deg, #f6851b, #e2761b) !important;
    color: white !important;
}

.wallet-install-btn.binance {
    background: linear-gradient(45deg, #f0b90b, #d4a309) !important;
    color: black !important;
}

.wallet-install-btn.trust {
    background: linear-gradient(45deg, #3375bb, #2e6aa0) !important;
    color: white !important;
}

.wallet-install-btn.walletconnect {
    background: linear-gradient(45deg, #3b99fc, #2980e9) !important;
    color: white !important;
}

/* Footer Section Styles */
.footer-section {
    margin-top: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

/* Bootstrap Integration Enhancements */
.btn {
    border-radius: 15px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff5252) !important;
    border: 1px solid rgba(255, 107, 107, 0.3) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5252, #ff4444) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6) !important;
}

.btn-success {
    background: linear-gradient(135deg, #ff6b6b, #ff5252) !important;
    border: 1px solid rgba(255, 107, 107, 0.3) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-success:hover {
    background: linear-gradient(135deg, #ff5252, #ff4444) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6) !important;
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: white !important;
}

.btn-outline-primary {
    background: rgba(255, 107, 107, 0.1) !important;
    border: 1px solid rgba(255, 107, 107, 0.3) !important;
    color: #ff6b6b !important;
}

.btn-outline-primary:hover {
    background: rgba(255, 107, 107, 0.2) !important;
    border-color: #ff6b6b !important;
    color: white !important;
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    backdrop-filter: blur(10px);
    border-radius: 10px !important;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ff6b6b !important;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.3) !important;
    color: white !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-label {
    color: white !important;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.badge {
    font-size: 0.9rem !important;
    padding: 0.5rem 1rem !important;
}

.text-primary {
    color: #ff6b6b !important;
}

.text-warning {
    color: #ffd700 !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Enhanced Icon Styles */
.fas, .fab {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Glassmorphism Card Enhancement */
.buy-section, .swap-section, .how-to-section {
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.social-links h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1) rotate(5deg);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d95e8, #1a91da);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
    border: 1px solid rgba(29, 161, 242, 0.3);
}

.social-link.twitter:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 161, 242, 0.6);
    background: linear-gradient(135deg, #0d95e8, #1da1f2, #0a7bc4);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #006699, #0077bb);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.social-link.telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 136, 204, 0.6);
    background: linear-gradient(135deg, #006699, #0088cc, #005577);
}

.social-link:hover {
    color: white;
    text-decoration: none;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.social-icon {
    font-size: 1.2rem;
}

.footer-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .footer-section {
        margin-top: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .social-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .footer-info {
        font-size: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .social-buttons {
        gap: 0.5rem;
    }
    
    .social-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        min-width: 130px;
    }
}

/* ========================
   ENHANCED DASHBOARD STYLING
   ======================== */

/* Enhanced quick actions styling */
.quick-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-custom {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.8) 0%, 
        rgba(0, 255, 136, 0.6) 100%);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    text-align: center;
}

.btn-custom:hover {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 1) 0%, 
        rgba(0, 255, 136, 0.8) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
    color: #000;
}

.btn-custom:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Dashboard card entrance animation */
.dashboard-card {
    animation: bounceIn 0.8s ease-out;
}

.balance-card:nth-child(1) { animation-delay: 0.1s; }
.balance-card:nth-child(2) { animation-delay: 0.2s; }
.balance-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive dashboard adjustments */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 10px;
        gap: 15px;
    }
    
    .dashboard-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .balance-card {
        padding: 12px;
    }
    
    .balance-card h3 {
        font-size: 0.9rem;
    }
    
    .balance-card .amount {
        font-size: 1.1rem;
    }
    
    .quick-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-custom {
        width: 100%;
        margin: 0;
    }
    
    /* Compact mobile dashboard */
    .wallet-dashboard {
        margin: 10px 0;
    }
    
    .dashboard-card {
        padding: 15px;
        border-radius: 15px;
    }
    
    .dashboard-header h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .row.g-3 {
        gap: 8px !important;
    }
    
    .balance-card {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    .balance-card h6 {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .balance-amount {
        font-size: 1rem !important;
    }
    
    .dashboard-actions .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

/* Mobile Responsiveness for Small Holder Swap Section */
@media (max-width: 768px) {
    .small-holder-swap-section {
        padding: 20px 15px;
        margin: 20px auto;
        max-width: 100%;
    }
    
    .small-holder-header h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .swap-container.small-holder {
        padding: 20px 15px;
    }
    
    .eligibility-check {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .eligibility-check .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }
    
    .eligibility-check h6 {
        font-size: 0.9rem;
    }
    
    #eligibilityStatus {
        font-size: 0.8rem;
        padding: 6px 10px;
        width: 100%;
        text-align: center;
    }
    
    .swap-fee-info.small-holder .row.g-2 {
        gap: 15px !important;
    }
    
    .fee-comparison {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .fee-comparison h6 {
        font-size: 0.8rem;
    }
    
    .fee-comparison p {
        font-size: 0.9rem;
    }
    
    .alert.alert-warning {
        padding: 15px;
        margin-top: 15px;
    }
    
    .alert.alert-warning div {
        font-size: 0.8rem;
    }
    
    #smallHolderSwapButton {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .swap-progress {
        padding: 12px;
        margin: 10px 0;
    }
    
    .swap-progress span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .small-holder-swap-section {
        padding: 15px 10px;
        margin: 15px 5px;
    }
    
    .small-holder-header h3 {
        font-size: 1rem;
        text-align: center;
    }
    
    .alert.alert-success {
        padding: 12px;
    }
    
    .alert.alert-success .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .badge {
        font-size: 0.7rem;
        margin: 2px;
        display: inline-block;
    }
    
    .swap-container.small-holder {
        padding: 15px 10px;
    }
    
    .eligibility-check {
        padding: 12px;
    }
    
    .swap-input label {
        font-size: 0.9rem;
    }
    
    .token-input-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .swap-amount {
        font-size: 0.9rem !important;
        padding: 10px !important;
    }
    
    .max-button {
        font-size: 0.8rem !important;
        padding: 8px 12px !important;
    }
    
    .token-badge {
        font-size: 0.8rem !important;
        padding: 8px 12px !important;
    }
    
    .fee-comparison {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    .fee-comparison h6 {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .fee-comparison p {
        font-size: 0.8rem;
        margin: 0;
    }
    
    .alert.alert-warning {
        padding: 12px;
    }
    
    .alert.alert-warning strong {
        font-size: 0.8rem;
    }
    
    .alert.alert-warning div {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    #smallHolderSwapButton {
        padding: 10px 15px;
        font-size: 0.8rem;
        width: 100%;
        margin-top: 12px;
    }
    
    .swap-progress {
        padding: 10px;
        margin: 8px 0;
    }
    
    .swap-progress .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .swap-progress span {
        font-size: 0.8rem;
    }
    
    .spinner-border-sm {
        width: 1rem !important;
        height: 1rem !important;
    }
}

/* Enhanced Mobile Touch Targets */
@media (max-width: 480px) {
    button, .btn {
        min-height: 44px; /* Apple's recommended minimum touch target */
        min-width: 44px;
    }
    
    input[type="number"] {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .max-button {
        min-height: 44px !important;
        min-width: 60px !important;
    }
    
    /* Small Holder Specific Mobile Enhancements */
    .small-holder-swap-section input[type="number"] {
        font-size: 16px !important;
        padding: 12px !important;
        border-radius: 8px;
    }
    
    .small-holder-swap-section .btn {
        font-size: 14px !important;
        padding: 12px 16px !important;
        border-radius: 8px;
    }
    
    .small-holder-swap-section .badge {
        font-size: 0.7rem !important;
        padding: 4px 8px !important;
        margin: 2px !important;
    }
    
    /* Improved text readability on small screens */
    .small-holder-swap-section p, 
    .small-holder-swap-section small {
        line-height: 1.4 !important;
    }
    
    /* Better spacing for mobile */
    .small-holder-swap-section .alert {
        margin: 10px 0 !important;
    }
    
    .small-holder-swap-section .mt-3 {
        margin-top: 1rem !important;
    }
    
    .small-holder-swap-section .mb-4 {
        margin-bottom: 1.5rem !important;
    }
}
