/*
 * UPDATED: July 14, 2025
 * - Logo size increased
 * - Vertical spacing adjusted for better alignment
 */

/* Use a professional font stack */
#launchpad-popup-content {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    /* This rule centers the logo and text horizontally */
    text-align: center;
}

/* Overlay Style */
#launchpad-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out;
}

#launchpad-popup-overlay:not(.launchpad-popup-hidden) {
    opacity: 1;
    visibility: visible;
}

/* Popup Container - Polished Look */
#launchpad-popup-content {
    position: relative;
    background: #ffffff;
    padding: 40px 50px; /* Increased padding for better spacing */
    border-radius: 8px;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.04);
    transform: scale(0.95) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 1);
}

#launchpad-popup-overlay:not(.launchpad-popup-hidden) #launchpad-popup-content {
    transform: scale(1) translateY(0);
}

/* --- MODIFICATIONS START HERE --- */

/* Logo container and image */
.popup-image-container {
    /* Increased space below logo for better balance */
    margin-bottom: 30px;
}

.launchpad-popup-logo {
    /* <-- LOGO MADE BIGGER */
    max-width: 195px;
    height: auto;
}

/* Text Styling */
.popup-text-container {
    color: #333;
}

.popup-main-text {
    font-size: 1.25rem;
    font-weight: 600;
    /* Adjusted bottom margin for better spacing */
    margin: 0 0 12px 0;
}

.popup-sub-text {
    font-size: 1.1rem;
    /* Made color slightly lighter for visual hierarchy */
    color: #666;
    margin: 0;
}

/* --- MODIFICATIONS END HERE --- */


/* Close Button - More Refined */
#launchpad-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    font-weight: 300;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

#launchpad-popup-close:hover {
    color: #333;
}

/* Responsive for smaller screens */
@media (max-width: 480px) {
    #launchpad-popup-content {
        padding: 30px 25px;
    }

    .launchpad-popup-logo {
        /* Adjusted logo size for mobile */
        max-width: 160px;
    }

    .popup-main-text {
        font-size: 1.1rem;
    }

    .popup-sub-text {
        font-size: 1rem;
    }
}