/* Global Body */
body {
    background-color: #dce2f6;
    background-image: radial-gradient(#5a779b 1px, transparent 1px);
    background-size: 18px 18px;
    font-family: 'Inter', sans-serif;
}

/* Bubble Cards */
.bubble {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #0f0f0f;
    border-radius: 2rem;
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: 0.15s ease-in-out;
}

.bubble:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
}

/* Messenger Icon → Bottom Right (Permanent Fixed) */
.messenger-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    position: fixed;
    right: 20px;
    bottom: 130px;

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    z-index: 9999;

    transition: transform 0.15s ease;
}

.messenger-icon:hover {
    transform: scale(1.10);
}


/* Bottom CTA Area */
.bottom-button {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;

    background: linear-gradient(180deg, rgba(27, 0, 41, 0) 0%, #1b0029 30.73%);
    padding-top: 30px;
    z-index: 9998;

    display: flex;
    justify-content: center;
}

.cta-container {
    margin: 0 20px 20px;
    width: 100%;
    max-width: 500px;
}

/* Download Button Styling */
.cta-container button {
    width: 100%;
    height: 50px;

    border-radius: 8px;
    background: linear-gradient(180deg, #00d047 0%, #00a040 100%);
    border: none;

    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;

    box-shadow: 0 4px 12px -5px rgba(40, 153, 83, 0.25);
    text-shadow: 0 1px 4px rgba(0,0,0,0.12);

    transition: transform 0.2s ease;
}

.cta-container button:hover {
    transform: scale(1.05);
}
