.cta-block {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    padding: 2px;
    z-index: 1;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: white;
    border-radius: 18px;
    z-index: -1;
}

/* Welcome Popup Styles - Cascaded SCSS-like structure */
.welcome-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;

    &.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .popup-content {
        background: white;
        border-radius: 15px;
        padding: 30px;
        max-width: 500px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        text-align: center;
        position: relative;

        h2 {
            color: var(--color-primary);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .privacy-text {
            text-align: left;
            margin-bottom: 25px;
            line-height: 1.5;

            p {
                margin-bottom: 15px;
                color: var(--color-black);
            }

            ul {
                margin: 10px 0;
                padding-left: 20px;
            }

            li {
                margin-bottom: 8px;
                color: var(--color-black);
            }

            .privacy-link {
                color: var(--color-primary);
                text-decoration: underline;
                font-weight: 600;
                
                &:hover {
                    color: var(--color-secondary);
                    text-decoration: none;
                }
            }
        }

        #agree-button {
            width: 100%;
            margin-top: 10px;
        }
    }
}