/* Mobile Redirect Page Styles */

#mobile-redirect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0A0E1F;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 24px;
    box-sizing: border-box;
    text-align: center;
}

#mobile-redirect.visible {
    display: flex;
}

.mobile-redirect-logo {
    width: 64px;
    height: auto;
    margin-bottom: 32px;
}

.mobile-redirect-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 48px 0;
    letter-spacing: -0.5px;
}

.mobile-redirect-image {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin-bottom: 48px;
    border-radius: 12px;
}


.mobile-redirect-description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 8px 0;
    line-height: 1.5;
}

.mobile-redirect-url {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #6366F1;
    text-decoration: none;
    margin-bottom: 48px;
}

.mobile-redirect-url:hover {
    text-decoration: underline;
}

.mobile-redirect-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1A1F35;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.mobile-redirect-share-btn:hover {
    background-color: #252B45;
}

.mobile-redirect-share-btn:active {
    transform: scale(0.98);
}

.mobile-redirect-share-icon {
    width: 20px;
    height: 20px;
}

