.kw-home-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    display: none; /* hidden by default, shown by JS */
    justify-content: center;
    align-items: center;
}
.kw-home-popup-modal {
    background: #fff;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-radius: 4px; 
}
.kw-home-popup-close {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: #ff0000;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    z-index: 10001;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    padding: 0;
}
.kw-home-popup-close:hover {
    background-color: #cc0000;
}
.kw-home-popup-top {
    background-color: #791bd5; /* Purple background */
    padding: 50px 20px;
    text-align: center;
    color: white;
    position: relative;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    overflow: hidden;
}
/* Subtle horizontal bands pattern */
.kw-home-popup-top::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        rgba(0, 0, 0, 0.05) 20px,
        rgba(0, 0, 0, 0.05) 40px
    );
    z-index: 1;
}
.kw-home-popup-top > * {
    position: relative;
    z-index: 2;
}

/* Starburst elements */
.kw-starburst-icon {
    position: absolute;
    z-index: 2;
    font-size: 24px;
    line-height: 1;
}
.starburst-top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
}
.starburst-bottom-left {
    bottom: 20px;
    left: 40px;
    color: #ffea00;
}
.starburst-bottom-right {
    bottom: 20px;
    right: 40px;
    color: #ffea00;
}

/* Typography styles matching the look */
.kw-home-popup-title {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0;
    color: transparent;
    -webkit-text-stroke: 1.5px white;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
}
.kw-home-popup-highlight {
    font-size: 78px;
    font-weight: 900;
    color: #ffea00; /* vibrant yellow */
    margin: 10px 0;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    font-family: Arial, sans-serif;
    line-height: 1;
}
.kw-home-popup-email {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0;
    letter-spacing: 1px;
    color: white;
}
.kw-home-popup-note {
    font-size: 14px;
    font-style: italic;
    margin: 15px 0 0 0;
    opacity: 0.9;
    color: white;
}
.kw-home-popup-bottom {
    background: white;
    padding: 25px 20px;
    text-align: center;
    color: #222;
    font-weight: bold;
    font-size: 16px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
