﻿/* HTML styles for the welcome screen */
.welcome-screen {
    position: absolute;
    height: 100%;
    width: 100%;
    background: white;
    font-family: 'Outfit', sans-serif;
    justify-content: center;
    align-items: center;
    display: flex;
    pointer-events: none;
    transition: opacity 200ms;
}

    .welcome-screen.welcome-screen-close {
        opacity: 0;
        pointer-events: none;
    }

/* Light theme styles */
@media (prefers-color-scheme: light) {
    .welcome-screen {
        background: white;
    }

        .welcome-screen h2 {
            color: #1b2a4e;
        }

        .welcome-screen a {
            color: #0D6EFD;
        }
}

/* Dark theme styles */
@media (prefers-color-scheme: dark) {
    .welcome-screen {
        background: #1b2a4e;
    }

        .welcome-screen h2 {
            color: white;
        }

        .welcome-screen a {
            color: white;
        }
}

.welcome-screen a {
    text-decoration: none;
    font-size: 2.5rem;
    display: block;
}

/* Pulse animation for SVG */
.pulse-animation {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Keyframes for SVG pulse */
@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(0.95);
    }
}

@media (max-width: 768px) {
    .pulse-animation {
        width: 300px; /* Уменьшенный размер для планшетов */
        height: 300px;
    }
}

@media (max-width: 480px) {
    .pulse-animation {
        width: 200px; /* Уменьшенный размер для мобильных */
        height: 200px;
    }
}
