.start-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
}

.fullscreen-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.background-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.0), rgba(0,40,60,0.0));
}

.center-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-top: -50px; /* Смещение вверх */
}

.loading-container {
    position: relative;
    text-align: center;
    margin-top: 400px; /* Опускаем кнопку ниже */
}







.start-button {
    position: relative;
    padding: 25px 0px;
    font-size: 1.8em;
    
    border: none;
    border-radius: 1px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.button-loader {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.progress-bar {
 width: 200px;
 height: 2px;
 background: rgba(255,255,255,0.2);
 margin: 20px auto 0;
}

.progress-fill {
 height: 100%;
 background: #fff;
 transition: width 0.3s ease;
}

.progress-text {
 color: #fff;
 font-size: 1.1em;
 margin-top: 10px;
 display: block;
 text-align: center;
}



/* Анимации */
@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.start-button.loading {
    padding-right: 80px;
    cursor: progress;
}

.start-button.loading.button-loader {
    display: block;
}

.link {
    text-decoration:none;
    font-size: 30px;
    font-family: 'stalker_font1';
    -webkit-tap-highlight-color: transparent;
}

@font-face {
font-family: 'stalker_font1';
src: url('../style/stalker_font1.woff') format('woff');
font-style: normal;
}

.progress-fill {
    transition: width 0.5s linear;
    background: linear-gradient(90deg, 
        #3c4d22 0%, 
        #6d4c41 50%, 
        #d9d055 100%);
    box-shadow: 0 0 10px rgba(217, 208, 85, 0.3);
}

.loading {
    position: relative;
    opacity: 0.7;
    cursor: not-allowed;
}

.loading:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0,0,0,0.3) 10px,
        rgba(0,0,0,0.3) 20px
    );
}