/* ============================================================
   MOBILE WELCOME SCREEN STYLES
   ============================================================ */

.m-welcome-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background-color: #FFFFFF;
    z-index: 99999; /* Over everything */
    overflow-y: auto;
    overflow-x: hidden;
    font-family: var(--m-font-family);
}

/* Decorative Blobs */
.m-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.m-blob-1 {
    width: 200px; height: 200px;
    background: radial-gradient(#FFDAB9, transparent);
    top: -50px; right: -50px;
    opacity: 0.6;
    filter: blur(40px);
}
.m-blob-2 {
    width: 220px; height: 220px;
    background: radial-gradient(#EDE9FE, transparent);
    bottom: 100px; left: -60px;
    opacity: 0.7;
    filter: blur(40px);
}

/* Content Container */
.m-welcome-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 200px; /* Space for fixed buttons */
}

/* Top Section */
.m-welcome-top {
    padding-top: 56px;
    display: flex;
    justify-content: center;
}
.m-paw-circle {
    width: 56px; height: 56px;
    border: 2px solid var(--m-primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.m-paw-circle svg {
    width: 24px; height: 24px;
    stroke: var(--m-primary-purple);
}

/* Center Illustration */
.m-welcome-illustration {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}
.m-welcome-illustration img {
    width: 85%;
    max-width: 340px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Heading Block */
.m-welcome-heading {
    margin-top: 28px;
    text-align: center;
    padding: 0 20px;
}
.m-welcome-heading .line-1 {
    font-size: 32px;
    font-weight: 700;
    color: #1F1F3D;
    line-height: 1.2;
    margin: 0;
}
.m-welcome-heading .line-2 {
    font-size: 42px;
    font-weight: 900;
    color: #1F1F3D;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}
.m-welcome-heading .line-3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--m-text-gray);
    margin-top: 8px;
    margin-bottom: 0;
}

/* Buttons Block */
.m-welcome-buttons {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 24px 24px 40px 24px;
    background: linear-gradient(transparent, white 30%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    z-index: 10;
}

.m-btn {
    width: 100%;
    height: 56px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.1s, opacity 0.2s;
}
.m-btn:active {
    transform: scale(0.98);
}
.m-btn-primary {
    background: var(--m-primary-purple);
    color: white;
    border: none;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}
.m-btn-outline {
    background: transparent;
    color: var(--m-primary-purple);
    border: 2px solid var(--m-primary-purple);
    font-size: 17px;
    font-weight: 600;
}

/* Split Button (Google / Skip) */
.m-welcome-split-btn {
    width: 100%;
    height: 56px;
    border-radius: 50px;
    border: 1px solid var(--m-primary-purple);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: white;
}
.m-welcome-split-btn button {
    flex: 1;
    height: 100%;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--m-primary-purple);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.m-welcome-split-btn button:active {
    background: rgba(124, 58, 237, 0.05);
}
.m-split-divider {
    width: 1px;
    height: 24px;
    background: rgba(124, 58, 237, 0.2);
}
