#first-visit-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 24px 28px 28px 28px;
    border-radius: 12px;
    box-shadow: none; /* Remove popup shadow */
    z-index: 1001;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: visible; /* Remove vertical scrollbar */
    overflow-x: visible; /* Remove horizontal scrollbar */
}

/* Hide scrollbars for all browsers */
#first-visit-popup::-webkit-scrollbar,
.popup-content::-webkit-scrollbar {
    display: none;
}
#first-visit-popup,
.popup-content {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
}

.popup-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: transparent; /* No shadow/overlay at all */
    z-index: 1000;
    pointer-events: auto;
}

.popup-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: none; /* Remove inner shadow */
    padding: 0;
    position: relative;
    color: #222;
    filter: none !important;
    -webkit-filter: none !important;
}

.close-button {
    position: absolute;
    top: 14px;
    right: 18px;
    cursor: pointer;
    font-size: 22px;
    color: #888;
    background: #f5f5f5;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    transition: background 0.2s, color 0.2s;
    border: none;
}
.close-button:hover {
    background: #e0e0e0;
    color: #222;
}

#first-visit-popup h2 {
    color: #2d7a2d;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.5em;
    text-align: center;
    background: none;
    filter: none !important;
}
#first-visit-popup p {
    color: #333;
    text-align: center;
    margin-bottom: 18px;
    background: none;
    filter: none !important;
}
#first-visit-popup button#popup-gotit-btn {
    display: block;
    margin: 0 auto;
    background: #2d7a2d;
    color: #fff;
    border: none;
    padding: 10px 32px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
    filter: none !important;
}
#first-visit-popup button#popup-gotit-btn:hover {
    background: #256325;
}
#first-visit-popup video {
    display: block;
    margin: 0 auto 18px auto;
    max-width: 100%;
    border-radius: 8px;
    background: #fafafa;
    box-shadow: none; /* Remove video shadow */
    filter: none !important;
    -webkit-filter: none !important;
}
    filter: none !important;
    -webkit-filter: none !important;
}
