/* Подключение шрифтов */
@font-face {
    font-family: 'Hattori Hanzo Light';
    src: url('fonts/HattoriHanzo-Light.eot');
    src: url('fonts/HattoriHanzo-Light.eot?#iefix') format('embedded-opentype'),
         url('fonts/HattoriHanzo-Light.woff') format('woff'),
         url('fonts/HattoriHanzo-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue Bold';
    src: url('fonts/BebasNeueBold.eot');
    src: url('fonts/BebasNeueBold.eot?#iefix') format('embedded-opentype'),
         url('fonts/BebasNeueBold.woff') format('woff'),
         url('fonts/BebasNeueBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue Regular';
    src: url('fonts/BebasNeueRegular.eot');
    src: url('fonts/BebasNeueRegular.eot?#iefix') format('embedded-opentype'),
         url('fonts/BebasNeueRegular.woff') format('woff'),
         url('fonts/BebasNeueRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue Light';
    src: url('fonts/BebasNeueLight.eot');
    src: url('fonts/BebasNeueLight.eot?#iefix') format('embedded-opentype'),
         url('fonts/BebasNeueLight.woff') format('woff'),
         url('fonts/BebasNeueLight.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue Book';
    src: url('fonts/BebasNeueBook.eot');
    src: url('fonts/BebasNeueBook.eot?#iefix') format('embedded-opentype'),
         url('fonts/BebasNeueBook.woff') format('woff'),
         url('fonts/BebasNeueBook.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Остальные стили без изменений */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: #ccc url("images/backs4.jpg") no-repeat center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    position: relative;
    z-index: 100;
    text-align: center;
    min-width: 500px;
    padding: 0;
    margin: 0 auto;
}

.main-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(171, 0, 11, 0.8));
    margin: 0 auto 5px auto;
    display: block;
}

.coming-soon {
    color: white;
    font-family: 'Hattori Hanzo Light', sans-serif;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(171, 0, 11, 0.8);
    margin: 0;
    padding: 0;
    line-height: 1;
    animation: pulse 2s infinite;
    letter-spacing: 1px;
    font-weight: 400;
}

.coming-soon2 {
    color: white;
    font-family: 'Hattori Hanzo Light', sans-serif;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(171, 0, 11, 0.8);
    margin: 0 auto;
    padding: 0;
    line-height: 1;
    animation: pulse 2s infinite;
    letter-spacing: 1px;
    font-weight: 400;
    /* background-color: hsl(0deg 81.25% 6.27%); */
    border-radius: 50px;
    width: 200px;
    text-align: center;
    padding: 5px;
    border: solid;
}

@keyframes pulse {
    0% { opacity: 0.9; }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.9; }
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 30%;
    background-color: #9c9c9c;
    box-shadow: 0 0 5px #AB000B;
    visibility: hidden;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

@media (max-width: 600px) {
    .logo-wrapper {
        min-width: 90vw;
    }
    .coming-soon {
        font-size: 1.4rem;
    }
}

.address {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Bebas Neue Book', sans-serif;
    color: white;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(171, 0, 11, 0.8);
    padding: 10px;
    z-index: 100;
}

/* Адаптивность для адреса */
@media (max-width: 600px) {
    .address {
        font-size: 1rem;
        bottom: 10px;
    }
}