body {
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.googlead-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000B0;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.googlead-content {
    background: #fff;
    border-radius: 0px;
    padding: 0px;
    text-align: center;
    width: 95%;
    max-width: 600px;
    position: relative;
}

.googlead-image {
    width: 100%;
    border-radius: 2px;
}

.googlead-title {
    font-size: 20px;
    margin: 10px 0;
    font-weight: bold;
}

.googlead-logo {
    width: 50px;
    margin: 10px 0;
}

.googlead-details {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.googlead-button {
    display: inline-block;
    padding: 15px 15px;
    background: #00A1E300;
    color: white;
    border-radius: 50%;
    font-size: 40px;
    text-decoration: none;
}

.googlead-close-btn {
    position: absolute;
    top: 0px;
    right: 5px;
    color: #C5C5C5FC;
    cursor: pointer;
    font-size: 30px;
}

.hidden {
    display: none;
}