#home-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
}

.popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.popup-content {
    position: relative;
    background: #fff;
    margin: 100px auto;
    padding: 10px;
    border-radius: 5px;
    width: 90%;
    box-shadow: 0 0 20px #000;
}

.close-popup {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #fff;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    border: 2px solid #333;
    z-index: 10;
}

.popup-text {
    padding: 15px;
    text-align: center;
}