html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; 
    position: fixed; 
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #91ddf8; 
    color: #000000;
    user-select: none;
    position: relative;
    z-index: 0;
}

/* Liquid Blob 1 - Blue */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #007bff, #00d2ff); 
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: liquidMorph 12s infinite alternate ease-in-out;
}

/* Liquid Blob 2 - White */
body::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #ffffff, #e0f2fe);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: liquidMorph 10s infinite alternate-reverse ease-in-out;
}

/* Morphing animation for the liquid blobs */
@keyframes liquidMorph {
    0% {
        transform: translate(0, 0) scale(1);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        transform: translate(30px, -50px) scale(1.1);
        border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%;
    }
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%; 
    position: relative;
    z-index: 1;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    width: 90%; 
    max-width: 350px;
    box-sizing: border-box; 
    
    /* --- Glassmorphism Effect --- */
    background: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px); 
    border: 1px solid rgba(255, 255, 255, 0.6); 
    box-shadow: 0 8px 32px 0 rgba(0, 123, 255, 0.15); 
    border-radius: 20px; 
}

.qr-code img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.payment-info {
    margin-top: 20px;
    text-align: center;
}

#qr-text {
    color: #000000; 
    font-size: 1.05rem;
    margin-bottom: 12px;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
    font-weight: 700; 
    letter-spacing: 0.5px;
}

.upi-id-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px; 
}

.payment-info strong {
    color: #000000; 
    font-size: 1.5rem; 
    /* Cursive font for the ID text */
    font-family: "Brush Script MT", "Segoe Print", "Comic Sans MS", cursive, sans-serif;
    font-weight: 700; 
    letter-spacing: 1px;
    user-select: text;
    display: inline-block;
    margin-bottom: 15px;
}

.copy-button {
    display: inline-block;
    padding: 8px 15px;
    /* Deeper, more intense blue */
    background-color: #0044ff; 
    color: white;
    border: none;
    margin-top: 5px;
    border-radius: 8px;
    height: min-content;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600; 
    transition: all 0.3s ease;
}

.copy-button:hover {
    /* Darker intense blue on hover */
    background-color: #002db3; 
    transform: translateY(-2px); 
}

* {
    -webkit-tap-highlight-color: transparent;
}

.upi-icon {
    width: 40px;
    height: auto;
    margin-top: 15px;
}

@keyframes pulse-bounce {
    0% { transform: scale(0.9); }
    50% { transform: scale(1.1); }
    100% { transform: scale(0.9); }
}

.paypal-animate {
    width: 90px; 
    height: auto; 
    margin-top: 15px;
    animation: pulse-bounce 1.5s infinite ease-in-out;
    object-fit: contain;
}

.toggle-payment {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #0044ff; /* Matched the deeper blue for the toggle link */
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

.toggle-payment:hover {
    text-decoration: underline;
}

#watermark::after {
    content: "Made with ❤️ by MyselfNeon";
    position: fixed;
    bottom: 15px;
    right: 15px;
    color: rgba(0, 0, 0, 0.4); 
    font-size: 12px;
    z-index: 9999;
    pointer-events: none;
}