/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    overflow-x: hidden;
}

/* Modal Styling */
.atgNewsAndUpdatesModal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2147483647; /* Maximum z-index value */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Background overlay */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.atgNewsAndUpdatesModal-content {
    width: 600px;
    height: 600px;
    background: url('/sektall-files/atg-assets/atg-mpdl-pmn/images/atg-mn-dsk-mdl-pp.jpg') no-repeat center center / cover; /* Desktop background */
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 20px;
    text-align: center;
    position: relative;
    color: white;
    margin: 20px; /* Adds space around the modal for better visuals */
}

/* Adjustments for Mobile Devices */
@media screen and (max-width: 768px) {
    .atgNewsAndUpdatesModal-content {
        width: 350px;
        height: 350px;
        background: url('/sektall-files/atg-assets/atg-mpdl-pmn/images/atg-mbl-mdl-mn-pp.jpg') no-repeat center center / cover; /* Mobile background */
        margin: 10px; /* Adjusts the margin for smaller screens */
    }
}

/* Modal Header */
.atgNewsAndUpdatesModal-content h2 {
    font-size: 36px;
    margin: 10px 0 20px;
    font-weight: bold;
    color: #ff0000;
}

.atgNewsAndUpdatesModal-content p {
    font-size: 24px;
    margin: 0px 0;
    font-weight: bold;
    line-height: 1.5;
    color: #0F13E8;
}

/* Adjustments for Mobile Devices */
@media screen and (max-width: 768px) {
    /* Modal Header */
    .atgNewsAndUpdatesModal-content h2 {
        font-size: 19px;
        margin: 5px 0 5px;
        font-weight: bold;
        color: #ff0000;
    }
    
    .atgNewsAndUpdatesModal-content p {
        font-size: 15px;
        margin: 5px 0;
        line-height: 1.5;
        color: #0F13E8;
    }
}

/* Close Button */
.closeAtgNewsAndUpdates {
    position: absolute;
    top: -15px;
    right: 15px;
    font-size: 48px;
    color: red; /* Button color */
    cursor: pointer;
    -webkit-text-stroke: 0.1px white; /* Adds white stroke around text */
    text-stroke: 0.1px white; /* Ensures compatibility across browsers */
}


/* "Buy Now" Button */
.atgNewsAndUpdatesModal-content button {
    background-color: #e74c3c;
    color: white;
    padding: 15px 30px;
    font-size: 24px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

/* Adjustments for Mobile Devices */
@media screen and (max-width: 768px) {
    /* "Buy Now" Button */
    .atgNewsAndUpdatesModal-content button {
        background-color: #e74c3c;
        color: white;
        padding: 5px 20px;
        font-size: 20px;
        font-weight: bold;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        margin-top: 5px;
        transition: background-color 0.3s ease;
    }
}


.atgNewsAndUpdatesModal-content button:hover {
    background-color: #c0392b;
}
