/* desktop-message.ejs page styles */

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('/app/backgrounds/onscomplex-bg1.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: white;
}

.message-container {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.message {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.3;
}

.note {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 400;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .message-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }

    .message {
        font-size: 1.5rem;
    }

    .note {
        font-size: 0.9rem;
    }
}
