#closeBtn {
                                position: absolute;
                                top: 15px;
                                right: 15px;
                                background-color: red;
                                border: none;
                                color: white;
                                font-size: 1.2rem;
                                cursor: pointer;
                                z-index: 1010;
                                width: 35px;
                                height: 35px;
                                border-radius: 50%;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                transition: background-color 0.3s ease, transform 0.2s ease;
                            }

                            #closeBtn:hover {
                                background-color: black;
                                transform: scale(1.1);
                            }

                            .pay-btn {
                                position: relative;
                                padding: 12px 24px;
                                font-size: 16px;
                                background: #1a1a1a;
                                color: white;
                                border: none;
                                border-radius: 8px;
                                cursor: pointer;
                                display: flex;
                                align-items: center;
                                gap: 10px;
                                transition: all 0.3s ease;
                            }

                            .pay-btn:hover {
                                transform: translateY(-2px);
                                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
                            }

                            .icon-container {
                                position: relative;
                                width: 24px;
                                height: 24px;
                            }

                            .icon {
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 24px;
                                height: 24px;
                                color: #22c55e;
                                opacity: 0;
                                visibility: hidden;
                            }

                            .default-icon {
                                opacity: 1;
                                visibility: visible;
                            }

                            .pay-btn:hover .icon {
                                animation: none;
                            }

                            .pay-btn:hover .wallet-icon {
                                opacity: 0;
                                visibility: hidden;
                            }

                            .pay-btn:hover .card-icon {
                                animation: iconRotate 2.5s infinite;
                                animation-delay: 0s;
                            }

                            .pay-btn:hover .payment-icon {
                                animation: iconRotate 2.5s infinite;
                                animation-delay: 0.5s;
                            }

                            .pay-btn:hover .dollar-icon {
                                animation: iconRotate 2.5s infinite;
                                animation-delay: 1s;
                            }

                            .pay-btn:hover .check-icon {
                                animation: iconRotate 2.5s infinite;
                                animation-delay: 1.5s;
                            }

                            .pay-btn:active .icon {
                                animation: none;
                                opacity: 0;
                                visibility: hidden;
                                transition: all 0.3s ease;
                            }

                            .pay-btn:active .check-icon {
                                animation: checkmarkAppear 0.6s ease forwards;
                                visibility: visible;
                            }

                            .btn-text {
                                font-weight: 600;
                                font-family:
                                    system-ui,
                                    -apple-system,
                                    sans-serif;
                            }

                            @keyframes iconRotate {
                                0% {
                                    opacity: 0;
                                    visibility: hidden;
                                    transform: translateY(10px) scale(0.5);
                                }

                                5% {
                                    opacity: 1;
                                    visibility: visible;
                                    transform: translateY(0) scale(1);
                                }

                                15% {
                                    opacity: 1;
                                    visibility: visible;
                                    transform: translateY(0) scale(1);
                                }

                                20% {
                                    opacity: 0;
                                    visibility: hidden;
                                    transform: translateY(-10px) scale(0.5);
                                }

                                100% {
                                    opacity: 0;
                                    visibility: hidden;
                                    transform: translateY(-10px) scale(0.5);
                                }
                            }

                            @keyframes checkmarkAppear {
                                0% {
                                    opacity: 0;
                                    transform: scale(0.5) rotate(-45deg);
                                }

                                50% {
                                    opacity: 0.5;
                                    transform: scale(1.2) rotate(0deg);
                                }

                                100% {
                                    opacity: 1;
                                    transform: scale(1) rotate(0deg);
                                }
                            }

.text-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

/* Main brand */
.logo-main {
    font-size: 28px;
    font-weight: 800;
    color: #1D1852;
    letter-spacing: 1px;
    position: relative;
}
s
/* Tagline */
.logo-sub {
    font-size: 14px;
    font-weight: 600;
    color: #3F6F63;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.creator {
    font-size: 14px;
    opacity: 0.8;
}
.creator a {
    color: #F7941D;
    font-weight: 500;
}

:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --accent-color: #00d4ff;
}

.glass-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px); /* Blurs the background website */
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.glass-modal {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: #ffffff;
    position: relative;
    animation: fadeIn 0.4s ease-out;
}

.modal-body {
    display: flex;
    gap: 30px;
    align-items: center;
}

.modal-visual i {
    font-size: 80px;
    background: linear-gradient(45deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}

.modal-text h2 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff !important;
}

.description {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 25px;
    color: #fff !important;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 4px;
    color: #fff !important;
}

.value {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff !important;
}

.close-glass {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    color: #fff; font-size: 30px;
    cursor: pointer; opacity: 0.5;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .modal-body { flex-direction: column; text-align: center; }
}
