/* Launch Modal Styles - Positioning handled in styles.css */

#launch-modal > div.modal-content {
    background: linear-gradient(135deg, #1a1a28 0%, #0f0f18 100%) !important;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 0 40px rgba(139, 92, 246, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Platform selection cards with hover effects */
#launch-modal input[type="radio"]:checked + div {
    border-color: currentColor !important;
    box-shadow: 0 0 20px currentColor;
}

/* Image upload area hover glow */
#launch-modal .border-dashed:hover {
    border-color: rgba(139, 92, 246, 0.6) !important;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

