/* Complete Sniper-specific styles */
    .sniper-heading {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #3b82f6, #8b5cf6, #d97706);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: bold;
        animation: titleGlow 3s ease-in-out infinite alternate;
    }

    @keyframes titleGlow {
        0% { filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5)); }
        100% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8)); }
    }

    .subtitle {
        text-align: center;
        color: #94a3b8;
        font-size: 1.2rem;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

    .subtitle:hover {
        opacity: 1;
        color: #cbd5e1;
    }

    .form-container {
        background: rgba(30, 41, 59, 0.9);
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.3),
            0 0 50px rgba(59, 130, 246, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        animation: fadeInUp 0.6s ease;
        position: relative;
        overflow: hidden;
    }

    .form-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
        transition: left 2s ease;
    }

    .form-container:hover::before {
        left: 100%;
    }

    .form-container:hover {
        transform: translateY(-5px);
        box-shadow: 
            0 25px 60px rgba(0, 0, 0, 0.4),
            0 0 80px rgba(59, 130, 246, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    .form-row {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .form-group label {
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #e2e8f0;
        transition: color 0.3s ease;
    }

    .form-group:hover label {
        color: #60a5fa;
    }

    .required {
        color: #ef4444;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }

    input[type="text"],
    input[type="number"],
    select {
        width: 100%;
        padding: 1rem;
        background: rgba(15, 23, 42, 0.8);
        border: 2px solid rgba(51, 65, 85, 0.5);
        border-radius: 8px;
        color: white;
        font-size: 16px;
        transition: all 0.3s ease;
        position: relative;
    }

    input[type="text"]:hover,
    input[type="number"]:hover,
    select:hover {
        border-color: rgba(59, 130, 246, 0.7);
        background: rgba(15, 23, 42, 0.9);
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
    }

    input:focus,
    select:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 
            0 0 0 3px rgba(59, 130, 246, 0.1),
            0 0 20px rgba(59, 130, 246, 0.3);
        background: rgba(15, 23, 42, 1);
    }

    select {
        cursor: pointer;
    }

    select option {
        background: #1e293b;
        color: white;
    }

    .token-validation {
        margin-top: 0.5rem;
        padding: 0.5rem;
        border-radius: 6px;
        font-size: 12px;
        display: none;
        transition: all 0.3s ease;
    }

    .token-validation.valid {
        background: rgba(16, 185, 129, 0.1);
        color: #10b981;
        border: 1px solid rgba(16, 185, 129, 0.3);
        animation: validPulse 1s ease;
    }

    .token-validation.invalid {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
        border: 1px solid rgba(239, 68, 68, 0.3);
        animation: invalidShake 0.5s ease;
    }

    @keyframes validPulse {
        0% { transform: scale(0.95); opacity: 0; }
        100% { transform: scale(1); opacity: 1; }
    }

    @keyframes invalidShake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }

    #customSlippage {
        display: none;
        margin-top: 0.5rem;
    }

    .speed-explanation {
        margin-top: 0.5rem;
        padding: 0.75rem;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(59, 130, 246, 0.3);
        transition: all 0.3s ease;
    }
    
    .speed-explanation small {
        color: #cbd5e1;
        font-size: 13px;
        line-height: 1.4;
    }

    .speed-explanation.economy {
        background: rgba(34, 197, 94, 0.1);
        border-color: rgba(34, 197, 94, 0.3);
    }

    .speed-explanation.slow {
        background: rgba(168, 85, 247, 0.1);
        border-color: rgba(168, 85, 247, 0.3);
    }

    .speed-explanation.fast {
        background: rgba(249, 115, 22, 0.1);
        border-color: rgba(249, 115, 22, 0.3);
    }

    .speed-explanation.turbo {
        background: rgba(236, 72, 153, 0.1);
        border-color: rgba(236, 72, 153, 0.3);
    }

    .fee-explanation-box {
        background: rgba(16, 185, 129, 0.1);
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border: 1px solid rgba(16, 185, 129, 0.3);
        border-left: 4px solid #10b981;
    }

    .fee-explanation-box h4 {
        color: #10b981;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .fee-explanation p {
        margin: 0.5rem 0;
        font-size: 14px;
        color: #cbd5e1;
    }

    .fee-settings-section {
        background: rgba(59, 130, 246, 0.05);
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .fee-settings-section h4 {
        color: #60a5fa;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .fee-range {
        font-size: 12px;
        color: #94a3b8;
        font-weight: normal;
        display: block;
        margin-top: 2px;
    }

    .info-icon {
        display: inline-block;
        margin-left: 5px;
        cursor: help;
        color: #60a5fa;
        font-size: 14px;
    }

    .fee-presets {
        display: flex;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .preset-btn {
        background: rgba(59, 130, 246, 0.1);
        color: #60a5fa;
        border: 1px solid rgba(59, 130, 246, 0.3);
        padding: 0.25rem 0.75rem;
        border-radius: 6px;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .preset-btn:hover {
        background: rgba(59, 130, 246, 0.2);
        transform: translateY(-1px);
    }

    .safety-note {
        margin-top: 0.5rem;
        padding: 0.5rem;
        background: rgba(16, 185, 129, 0.1);
        border-radius: 6px;
        border: 1px solid rgba(16, 185, 129, 0.3);
    }

    .safety-note small {
        color: #10b981;
        font-weight: 500;
    }

    .sniper-settings {
        background: rgba(15, 23, 42, 0.6);
        border-radius: 12px;
        padding: 2rem;
        margin: 2rem 0;
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-left: 4px solid #3b82f6;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .sniper-settings::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sniper-settings:hover {
        background: rgba(15, 23, 42, 0.8);
        border-color: rgba(59, 130, 246, 0.5);
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
        transform: translateY(-2px);
    }

    .sniper-settings:hover::before {
        opacity: 1;
    }

    .sniper-settings h3 {
        color: #3b82f6;
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-align: center;
        text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }

    .checkbox-group {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

    .checkbox-group:hover {
        transform: translateX(5px);
    }

    .checkbox-group input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: #3b82f6;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

    .checkbox-group input[type="checkbox"]:hover {
        transform: scale(1.1);
    }

    .checkbox-group label {
        margin: 0;
        cursor: pointer;
        user-select: none;
        transition: color 0.3s ease;
    }

    .checkbox-group:hover label {
        color: #60a5fa;
    }

    .fee-breakdown {
        background: rgba(15, 23, 42, 0.6);
        border-radius: 12px;
        padding: 2rem;
        margin: 2rem 0;
        border: 1px solid rgba(16, 185, 129, 0.3);
        border-left: 4px solid #10b981;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .fee-breakdown::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at top left, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .fee-breakdown:hover {
        background: rgba(15, 23, 42, 0.8);
        border-color: rgba(16, 185, 129, 0.5);
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
        transform: translateY(-2px);
    }

    .fee-breakdown:hover::before {
        opacity: 1;
    }

    .fee-breakdown h3 {
        color: #10b981;
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-align: center;
        text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }

    .fee-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .fee-item {
        display: flex;
        align-items: center;
        padding: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .fee-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .fee-item:hover::before {
        left: 100%;
    }

    .fee-item:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .base-fee {
        background: linear-gradient(135deg, rgba(75, 85, 99, 0.1), rgba(75, 85, 99, 0.05));
        border: 1px solid rgba(75, 85, 99, 0.3);
    }

    .base-fee:hover {
        background: linear-gradient(135deg, rgba(75, 85, 99, 0.2), rgba(75, 85, 99, 0.1));
        box-shadow: 0 8px 25px rgba(75, 85, 99, 0.2);
    }

    .platform-fee {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
        border: 1px solid rgba(16, 185, 129, 0.3);
    }

    .platform-fee:hover {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
    }

    .priority-fee {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
        border: 1px solid rgba(59, 130, 246, 0.3);
    }

    .priority-fee:hover {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    }

    .total-fee {
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
        border: 2px solid rgba(255, 193, 7, 0.5);
        font-weight: bold;
    }

    .total-fee:hover {
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    }

    .fee-icon {
        font-size: 2rem;
        margin-right: 1rem;
        filter: drop-shadow(0 0 5px currentColor);
    }

    .fee-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .fee-label {
        font-size: 14px;
        opacity: 0.9;
        margin-bottom: 0.25rem;
    }

    .fee-value {
        font-size: 16px;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .fee-item:hover .fee-value {
        transform: scale(1.05);
        text-shadow: 0 0 10px currentColor;
    }

    .fee-summary {
        text-align: center;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .fee-usd {
        font-size: 18px;
        font-weight: bold;
        color: #fbbf24;
        margin-bottom: 0.5rem;
        text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
        transition: all 0.3s ease;
    }

    .fee-usd:hover {
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
    }

    .fee-note {
        font-size: 14px;
        color: #cbd5e1;
        margin-top: 1rem;
        text-align: center;
        background: rgba(255, 193, 7, 0.1);
        padding: 0.75rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 193, 7, 0.3);
    }

    .price-note {
        font-size: 12px;
        color: #94a3b8;
        margin-top: 0.5rem;
        text-align: center;
        font-style: italic;
    }

    .status-section {
        background: rgba(15, 23, 42, 0.6);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 2rem 0;
        border: 1px solid rgba(16, 185, 129, 0.3);
        border-left: 4px solid #10b981;
        transition: all 0.3s ease;
    }

    .status-section:hover {
        background: rgba(15, 23, 42, 0.8);
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.2);
        transform: translateY(-2px);
    }

    .status-section h3 {
        color: #10b981;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        text-align: center;
        text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    }

    .status-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .status-item {
        display: flex;
        align-items: center;
        padding: 1rem;
        background: rgba(30, 41, 59, 0.8);
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .status-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .status-item:hover {
        background: rgba(30, 41, 59, 1);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .status-item:hover::before {
        left: 100%;
    }

    .status-icon {
        font-size: 1.5rem;
        margin-right: 0.75rem;
        filter: drop-shadow(0 0 5px currentColor);
    }

    .status-content {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .status-label {
        font-size: 13px;
        opacity: 0.8;
        margin-bottom: 0.25rem;
    }

    .status-value {
        font-size: 14px;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .status-item:hover .status-value {
        transform: scale(1.05);
        text-shadow: 0 0 8px currentColor;
    }

    .snipe-progress {
        display: none;
        margin-top: 1.5rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
        border-radius: 12px;
        border: 1px solid rgba(59, 130, 246, 0.3);
        animation: progressGlow 2s ease-in-out infinite alternate;
    }

    @keyframes progressGlow {
        0% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
        100% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.4); }
    }

    .progress-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    .progress-header h4 {
        margin: 0;
        color: #3b82f6;
        font-size: 1.1rem;
    }

    .progress-percentage {
        font-weight: bold;
        color: #8b5cf6;
        font-size: 1.2rem;
    }

    .progress-bar {
        width: 100%;
        height: 12px;
        background: rgba(59, 130, 246, 0.2);
        border-radius: 6px;
        overflow: hidden;
        margin-bottom: 0.75rem;
        position: relative;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
        width: 0%;
        transition: width 0.5s ease;
        position: relative;
        overflow: hidden;
    }

    .progress-fill::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: progressShine 1.5s infinite;
    }

    @keyframes progressShine {
        0% { left: -100%; }
        100% { left: 100%; }
    }

    .progress-text {
        text-align: center;
        font-size: 14px;
        color: #cbd5e1;
        font-style: italic;
    }

    .action-buttons {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .snipe-btn, .secondary-btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 18px 36px;
        font-size: 18px;
        font-weight: 600;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        min-width: 200px;
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .snipe-btn {
        background: linear-gradient(135deg, #1e3a8a, #3b82f6, #8b5cf6, #d97706);
        color: white;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .snipe-btn:hover:not(:disabled) {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 
            0 8px 25px rgba(59, 130, 246, 0.4),
            0 0 40px rgba(139, 92, 246, 0.3);
    }

    .secondary-btn {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
        color: #ef4444;
        border: 2px solid rgba(239, 68, 68, 0.3);
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
    }

    .secondary-btn:hover:not(:disabled) {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.3));
        transform: translateY(-3px) scale(1.05);
        box-shadow: 
            0 8px 25px rgba(239, 68, 68, 0.4),
            0 0 40px rgba(239, 68, 68, 0.3);
    }

    .btn-glow {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }

    .snipe-btn:hover .btn-glow,
    .secondary-btn:hover .btn-glow {
        transform: translateX(100%);
    }

    .btn-icon {
        font-size: 1.2rem;
        filter: drop-shadow(0 0 5px currentColor);
    }

    .btn-text {
        font-weight: bold;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .snipe-btn:disabled,
    .secondary-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .number-animate {
        animation: numberPulse 0.3s ease;
    }

    @keyframes numberPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .sniper-heading {
            font-size: 2rem;
        }

        .form-container {
            padding: 1.5rem;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .fee-grid {
            grid-template-columns: 1fr;
        }

        .status-grid {
            grid-template-columns: 1fr;
        }

        .action-buttons {
            flex-direction: column;
            align-items: center;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .snipe-btn {
    pointer-events: auto !important;
    cursor: pointer !important;
}

.snipe-btn.disabled {
    pointer-events: none !important;
    cursor: not-allowed !important;
}
