.buy {
    text-align: center;
    margin-top: 20px;
    margin-top: 50px;
    border-top: 1px solid gray;
    padding: 20px;
}

.titer2{
    padding: 5px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #490549;
    display: flex;
    justify-content: center;
}
.logo{
    display: flex;
    align-items: center;
    gap: 5px;
}
.logo img {
    width: 250px;
}
.welcom{
    text-align: left;
    width: 400px;
    padding: 0px;
}

/* زر الإغلاق */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 1px solid gray;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, transform 0.2s;
}


.buy-btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.buy-btn:hover {
    background-color: #0056b3;
}

/* الخلفية المظللة */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* شفافية الخلفية */
    display: none;
    z-index: 999; /* طبقة أعلى */
}

/* الواجهة المخفية */
.hidden-gateway {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 8px;
    display: none;
    z-index: 10000; /* فوق الخلفية */
    width: 90%;
    max-width: 80%;
    text-align: center;
}

.hidden-gateway h2 {
    margin-bottom: 20px;
    color: #333;
}

.hidden-gateway input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.hidden-gateway button[type="button"], button[type="email"] {
    background-color: #490549;
    color: white;
    font-size: 1.2em;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.hidden-gateway button[type="button"]:hover, button[type="email"]:hover {
    background-color: green;
}        
#purchaseForm{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}  
.sponsor{
   
    text-align: center;
    width: 40%;
    padding: 30px;
    margin-top: 20px;
} 
.find{
    width: 40%;
    padding: 30px;
} 
 
@media (max-width: 768px) {
    
    .hidden-gateway {
        width: 95%;
        max-width: 95%;
        overflow-y: auto;
        height: 85vh;
    }
    .logo img {
       width: 150px;
    }
    .welcom{
        text-align: left;
        width: 150px;
        padding: 0px;
    }
    #purchaseForm{
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 10px;
   }  
   .sponsor, .find{
        width: 90%;
        padding: 10px;
        margin-bottom: 10px;
   }
}