body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Vinque Rg Regular', sans-serif;
    color: white;
    overflow: hidden;
    position: relative;
}

.message {
    text-align: center;
    font-family: 'Vinque Rg Regular', sans-serif;
    font-size: 6vw;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px white, 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 2;
}


.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.go-home-btn {
    position: absolute;
    bottom: 15vh;
    left: 50%;
    transform: translateX(-50%);
    padding: 1.2vh 3vw;
    font-size: 1.8vw;
    text-shadow: 0 0 10px white, 0 0 20px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px white, 0 0 20px rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    background: transparent;
    color: white;
    font-family: 'Vinque Rg Regular', sans-serif;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    display: none;
    white-space: nowrap;
}

.go-home-btn:hover {
    background-color: white;
    text-shadow: 0 0 10px black, 0 0 20px rgba(0, 0, 0, 0.5);
    color: black;
}

.go-home-btn.show {
    display: block;
    animation: fadeIn 0.6s ease forwards;
}

/* Адаптивное уменьшение на маленьких экранах */
@media (max-width: 768px) {
    .go-home-btn {
        font-size: 4vw;
        padding: 1.5vh 6vw;
    }
}

@media (max-width: 480px) {
    .go-home-btn {
        font-size: 5vw;
        padding: 2vh 8vw;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

@font-face {
    font-family: 'Vinque Rg Regular';
    src: url('../resources/Vinque_Rg.ttf') format('truetype');
}


