        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #010101;
            overflow: hidden; /* Prevent scrollbars from background animation */
        }
        
        /* Animated Background */
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 15% 20%, rgba(254, 44, 85, 0.2), transparent 40%),
                        radial-gradient(circle at 85% 70%, rgba(37, 244, 238, 0.2), transparent 40%);
            animation: background-pan 20s linear infinite;
            z-index: -1;
        }

        @keyframes background-pan {
            0% { background-position: 0% 50%, 50% 100%; }
            50% { background-position: 100% 50%, 0% 0%; }
            100% { background-position: 0% 50%, 50% 100%; }
        }

        .tiktok-blue { color: #25F4EE; }
        .tiktok-pink { color: #FE2C55; }
        .bg-tiktok-blue { background-color: #25F4EE; }
        .bg-tiktok-pink { background-color: #FE2C55; }
        .border-tiktok-blue { border-color: #25F4EE; }
        .border-tiktok-pink { border-color: #FE2C55; }
        
        /* Enhanced Glitch Effect */
        .glitch-effect {
            animation: glitch 2s linear infinite;
        }

        @keyframes glitch{
          0%, 100% { text-shadow: -1.5px -1.5px 0 #FE2C55, 1.5px 1.5px 0 #25F4EE; }
          25% { text-shadow: 1.5px 1.5px 0 #FE2C55, -1.5px -1.5px 0 #25F4EE; }
          50% { text-shadow: 1.5px -1.5px 0 #FE2C55, -1.5px 1.5px 0 #25F4EE; }
          75% { text-shadow: -1.5px 1.5px 0 #FE2C55, 1.5px -1.5px 0 #25F4EE; }
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in-out forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px) scale(0.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        
        .fade-out {
            animation: fadeOut 0.5s ease-in-out forwards;
        }

        @keyframes fadeOut {
            from { opacity: 1; transform: translateY(0); }
            to { opacity: 0; transform: translateY(-20px); display: none; }
        }

        .input-field {
            background-color: #121212;
            border: 1px solid #222;
            transition: all 0.3s ease;
        }
        .input-field:focus {
            background-color: #181818;
            border-color: #FE2C55;
            box-shadow: 0 0 15px rgba(254, 44, 85, 0.3);
        }

        /* Improved Button Style */
        .cta-button {
            position: relative;
            background: linear-gradient(to right, #25F4EE, #FE2C55);
            padding: 2px; /* This creates the border thickness */
            border-radius: 0.8rem; /* Slightly larger than inner radius */
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            border: none;
            color: white;
            z-index: 1;
        }
        .cta-button-inner {
            background-color: #121212;
            width: 100%;
            height: 100%;
            border-radius: 0.75rem; /* The inner radius */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        .cta-button:not(:disabled):hover {
            transform: translateY(-2px);
            box-shadow: 0 0 20px rgba(37, 244, 238, 0.5), 0 0 20px rgba(254, 44, 85, 0.5);
        }
        .cta-button:not(:disabled):hover .cta-button-inner {
            background-color: transparent;
        }
        .cta-button:disabled {
            filter: grayscale(80%);
            cursor: not-allowed;
            opacity: 0.5;
        }
        
        .amount-card {
            background-color: #121212;
            border: 1px solid #222;
            transition: all 0.3s ease;
        }
        .amount-card.selected, .amount-card:hover {
            transform: translateY(-5px);
            border-color: #FE2C55;
            background: linear-gradient(45deg, rgba(37, 244, 238, 0.1), rgba(254, 44, 85, 0.1));
        }

        #console-output {
            height: 150px;
            background-color: #000;
            border: 1px solid #333;
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.8rem;
            line-height: 1.5;
            overflow-y: auto;
            color: #00ff00;
        }
        #console-output p {
            margin: 0;
            padding: 0 10px;
        }
        .blinking-cursor {
            animation: blink 1s step-end infinite;
        }
        @keyframes blink {
            50% { opacity: 0; }
        }