        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            min-height: 100vh;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
            transition: background 0.5s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: black;
        }
        
        /* Animasi Partikel */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        .scroll-container {
            max-width: 700px; /* The container width is increased */
            width: 100%;
            padding: 20px;
        }
        
        .container {
            background: rgba(19, 15, 64, 0.85);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 30px;
        }
        
        .container.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .processing-container {
            display: none;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 50px 40px; /* Padding is enlarged */
            background: rgba(19, 15, 64, 0.9);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 30px;
            max-width: 700px; /* Width increased */
            width: 100%;
        }
        
        .processing-container.show {
            display: flex;
            opacity: 1;
            transform: scale(1);
        }
        
        .header {
            background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
            padding: 40px 30px; /* Padding is enlarged */
            text-align: center;
            position: relative;
        }
        
        .logo {
            width: 100px; /* Logo enlarged */
            height: 100px;
            background: linear-gradient(45deg, #ff9a9e, #fad0c4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px; /* Margin enlarged */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .logo i {
            font-size: 50px; /* Icon enlarged */
            color: #fff;
        }
        
        .header h1 {
            color: white;
            font-size: 32px; /* Font enlarged */
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px; /* Font enlarged */
            max-width: 600px;
            margin: 0 auto;
        }
        
        .content {
            padding: 40px; /* Padding enlarged */
            display: grid;
            grid-template-columns: 1fr 1fr; /* Layout grid */
            gap: 30px; /* Jarak antar kolom */
        }
        
        .left-column, .right-column {
            display: flex;
            flex-direction: column;
        }
        
        .form-group {
            margin-bottom: 30px; /* Margin enlarged */
        }
        
        .form-group label {
            display: block;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 12px; /* Margin enlarged */
            font-size: 16px; /* Font enlarged */
            font-weight: 500;
        }
        
        .select-wrapper {
            position: relative;
        }
        
        .select-wrapper::after {
            content: "▼";
            position: absolute;
            top: 50%;
            right: 20px; /* Posisi enlarged */
            transform: translateY(-50%);
            color: #fff;
            font-size: 14px; /* Font enlarged */
            pointer-events: none;
        }
        
        .coin-select {
            width: 100%;
            padding: 18px 25px; /* Padding enlarged */
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 15px; /* Border radius enlarged */
            color: white;
            font-size: 17px; /* Font enlarged */
            appearance: none;
            outline: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .coin-select:focus {
            background: rgba(255, 255, 255, 0.18);
            border-color: #4d8dfc;
            box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.25);
        }
        
        .input-with-icon {
            position: relative;
        }
        
        .input-with-icon i {
            position: absolute;
            left: 20px; /* Posisi enlarged */
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 22px; /* Font enlarged */
        }
        
        .amount-input {
            width: 100%;
            padding: 18px 25px 18px 60px; /* Padding enlarged */
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 15px; /* Border radius enlarged */
            color: white;
            font-size: 17px; /* Font enlarged */
            outline: none;
        }
        
        .amount-input:focus {
            background: rgba(255, 255, 255, 0.18);
            border-color: #4d8dfc;
            box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.25);
        }
        
        .wallet-address {
            background: rgba(0, 0, 0, 0.35);
            border-radius: 15px; /* Border radius enlarged */
            padding: 25px; /* Padding enlarged */
            position: relative;
            margin-top: 20px;
        }
        
        .address-label {
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 18px; /* Margin enlarged */
            font-size: 18px; /* Font enlarged */
        }
        
        .address-label i {
            margin-right: 12px; /* Margin enlarged */
            color: #4d8dfc;
            font-size: 24px; /* Font enlarged */
        }
        
        .address-text {
            background: rgba(255, 255, 255, 0.08);
            border: 1px dashed rgba(255, 255, 255, 0.3);
            border-radius: 12px; /* Border radius enlarged */
            padding: 18px; /* Padding enlarged */
            font-size: 16px; /* Font enlarged */
            color: rgba(255, 255, 255, 0.8);
            word-break: break-all;
            margin-bottom: 25px; /* Margin enlarged */
            position: relative;
            line-height: 1.6;
        }
        
        .btn {
            display: block;
            width: 100%;
            padding: 18px; /* Padding enlarged */
            border: none;
            border-radius: 15px; /* Border radius enlarged */
            font-size: 18px; /* Font enlarged */
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-top: 15px; /* Margin enlarged */
        }
        
        .copy-btn {
            background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(37, 117, 252, 0.3);
        }
        
        .done-btn {
            background: linear-gradient(90deg, #00b09b, #96c93d);
            color: white;
            margin-top: 25px; /* Margin enlarged */
            box-shadow: 0 5px 15px rgba(0, 180, 155, 0.3);
        }
        
        .btn:hover {
            transform: translateY(-5px); /* Efek hover enlarged */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        
        .btn:active {
            transform: translateY(2px);
        }
        
        .btn::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
        }
        
        .btn:active::after {
            width: 400px; /* Efek ripple enlarged */
            height: 400px;
        }
        
        .qr-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 20px 0;
            background: rgba(0, 0, 0, 0.25);
            border-radius: 20px;
            padding: 25px; /* Padding enlarged */
        }
        
        .qr-code {
            width: 220px; /* QR code enlarged */
            height: 220px;
            background: white;
            padding: 15px; /* Padding enlarged */
            border-radius: 15px; /* Border radius enlarged */
            margin-bottom: 20px; /* Margin enlarged */
            display: flex;
            align-items: center;
            justify-content: center;
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from { box-shadow: 0 0 8px rgba(37, 117, 252, 0.6); }
            to { box-shadow: 0 0 25px rgba(37, 117, 252, 0.9); }
        }
        
        .qr-code img {
            max-width: 100%;
            height: auto;
        }
        
        .qr-note {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px; /* Font enlarged */
            text-align: center;
            max-width: 350px; /* Lebar enlarged */
            line-height: 1.6;
            padding: 0 15px;
        }
        
        .notification {
            position: fixed;
            bottom: 30px; /* Posisi enlarged */
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #2ecc71;
            color: white;
            padding: 18px 30px; /* Padding enlarged */
            border-radius: 60px; /* Border radius enlarged */
            font-weight: 500;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 1000;
            font-size: 17px; /* Font enlarged */
        }
        
        .notification.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            margin: 30px 0; /* Margin enlarged */
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
        }
        
        .step:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 25px; /* Posisi enlarged */
            right: -15px; /* Posisi enlarged */
            width: 30px; /* Lebar enlarged */
            height: 3px; /* Tinggi enlarged */
            background: rgba(255, 255, 255, 0.3);
        }
        
        .step-icon {
            width: 50px; /* Lebar enlarged */
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px; /* Margin enlarged */
            color: #4d8dfc;
            font-size: 22px; /* Font enlarged */
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .step-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px; /* Font enlarged */
            text-align: center;
            max-width: 100px; /* Lebar enlarged */
            line-height: 1.5;
            font-weight: 500;
        }
        
        .footer {
            text-align: center;
            padding: 25px; /* Padding enlarged */
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px; /* Font enlarged */
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .footer a {
            color: #4d8dfc;
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Halaman Proses */
        .processing-icon {
            width: 120px; /* Lebar enlarged */
            height: 120px;
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 35px; /* Margin enlarged */
            position: relative;
            box-shadow: 0 8px 25px rgba(37, 117, 252, 0.5);
        }
        
        .processing-icon i {
            font-size: 60px; /* Font enlarged */
            color: white;
            animation: spin 2s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .processing-title {
            color: white;
            font-size: 32px; /* Font enlarged */
            margin-bottom: 25px; /* Margin enlarged */
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .processing-subtitle {
            color: rgba(255, 255, 255, 0.85);
            font-size: 20px; /* Font enlarged */
            margin-bottom: 40px; /* Margin enlarged */
            max-width: 500px; /* Lebar enlarged */
            line-height: 1.6;
        }
        
        .progress-bar {
            width: 100%;
            height: 12px; /* Tinggi enlarged */
            background: rgba(255, 255, 255, 0.15);
            border-radius: 6px; /* Border radius enlarged */
            margin: 35px 0; /* Margin enlarged */
            overflow: hidden;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .progress {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #00b09b, #96c93d);
            border-radius: 6px; /* Border radius enlarged */
            transition: width 0.5s ease;
            box-shadow: 0 0 15px rgba(0, 180, 155, 0.4);
        }
        
        .processing-steps {
            display: flex;
            flex-direction: column;
            width: 100%;
            margin-top: 30px; /* Margin enlarged */
        }
        
        .processing-step {
            display: flex;
            align-items: center;
            padding: 20px; /* Padding enlarged */
            margin: 8px 0; /* Margin enlarged */
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px; /* Border radius enlarged */
            transition: all 0.3s ease;
        }
        
        .processing-step i {
            margin-right: 20px; /* Margin enlarged */
            font-size: 24px; /* Font enlarged */
            width: 40px; /* Lebar enlarged */
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            color: #4d8dfc;
        }
        
        .processing-step.active {
            background: rgba(37, 117, 252, 0.2);
            border-left: 4px solid #4d8dfc; /* Border enlarged */
        }
        
        .processing-step.completed i {
            background: #2ecc71;
            color: white;
        }
        
        .processing-step-text {
            color: rgba(255, 255, 255, 0.95);
            font-size: 17px; /* Font enlarged */
            font-weight: 500;
        }
        
        .processing-timer {
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px; /* Font enlarged */
            margin-top: 30px; /* Margin enlarged */
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 30px; /* Padding enlarged */
            border-radius: 50px;
            font-weight: 600;
        }
        
        .back-btn {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            margin-top: 35px; /* Margin enlarged */
            width: auto;
            padding: 15px 35px; /* Padding enlarged */
            font-size: 17px; /* Font enlarged */
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .back-btn:hover {
            background: rgba(255, 255, 255, 0.25);
        }
        
        @media (max-width: 768px) {
            .content {
                grid-template-columns: 1fr;
                padding: 30px 20px;
            }
            
            .header {
                padding: 30px 20px;
            }
            
            .header h1 {
                font-size: 28px;
            }
            
            .header p {
                font-size: 16px;
            }
            
            .logo {
                width: 80px;
                height: 80px;
            }
            
            .logo i {
                font-size: 40px;
            }
            
            .qr-code {
                width: 200px;
                height: 200px;
            }
            
            .processing-container {
                padding: 40px 25px;
            }
            
            .processing-title {
                font-size: 28px;
            }
            
            .processing-subtitle {
                font-size: 18px;
            }
        }
        
        @media (max-width: 480px) {
            .scroll-container {
                padding: 10px;
            }
            
            .header {
                padding: 25px 15px;
            }
            
            .header h1 {
                font-size: 24px;
            }
            
            .content {
                padding: 25px 15px;
            }
            
            .qr-code {
                width: 180px;
                height: 180px;
            }
            
            .processing-container {
                padding: 30px 20px;
            }
            
            .processing-title {
                font-size: 24px;
            }
            
            .processing-subtitle {
                font-size: 16px;
            }
        }
        
        /* Make all payment details white */
#bankSection, 
#zelleSection, 
#cashappSection, 
#paypalSection {
    color: #fff;
}

#bankSection p, 
#zelleSection p, 
#cashappSection p, 
#paypalSection p {
    color: #fff;
}
/* White Paid Button */
.paid-btn {
    background-color: white;
    color: #000; /* Black text for contrast */
    border: 2px solid #000; /* Optional: adds a border */
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.paid-btn:hover {
    background-color: #f0f0f0; /* Slightly darker on hover */
}

    