/* Splash Screen Modal Stylesheet */

.splashscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.splashscreen-dialog {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.splashscreen-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.splashscreen-title-graphic {
    width: 100%;
    height: 80px;
    background-image: url('images/splashscreen-title.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin-bottom: 15px;
}

.splashscreen-divider {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    margin-bottom: 20px;
}

.splashscreen-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.65rem;
    line-height: 1.4;
    color: #555;
    margin-bottom: 12px;
    text-align: justify;
    width: 100%;
}

.splashscreen-illustration-graphic {
    width: 100%;
    height: 100px;
    background-image: url('images/splashscreen-pictures.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin: 20px 0;
}

.splashscreen-continue-button {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.splashscreen-continue-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.splashscreen-continue-button:active {
    transform: translateY(0);
}

.splashscreen-version {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.85rem;
    color: #999;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.splashscreen-copyright {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
}

/* Mobile/Phone Responsive Layout */
@media (max-width: 600px) {
    .splashscreen-overlay {
        align-items: flex-start;
    }

    .splashscreen-dialog {
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        max-height: none;
        border-radius: 0;
        overflow-y: auto;
        justify-content: center;
    }

    .splashscreen-content {
        padding: 25px 20px;
    }

    .splashscreen-title-graphic {
        height: 60px;
        margin-bottom: 12px;
    }

    .splashscreen-illustration-graphic {
        height: 80px;
        margin: 15px 0;
    }

    .splashscreen-text {
        font-size: 0.6rem;
        margin-bottom: 10px;
    }

    .splashscreen-version {
        font-size: 0.8rem;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .splashscreen-copyright {
        font-size: 0.7rem;
        margin-top: 12px;
    }

    .splashscreen-continue-button {
        padding: 14px 20px;
        font-size: 1.05rem;
        min-height: 48px;
    }
}
