@font-face {
    font-family: 'PricedownRus';
    src: url('fonts/PricedownRus.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none; /* Запрет выделения для всех элементов */
    -webkit-user-select: none; /* Для Safari */
    -moz-user-select: none; /* Для Firefox */
    -ms-user-select: none; /* Для IE/Edge */
}

body {
	background-color: black;
    overflow: hidden;
    cursor: url('assets/mouse.png'), auto;
    font-family: 'PricedownRus', sans-serif;
}

.background-image {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -3;
    object-fit: cover;
}

.header_logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 400px;
    max-width: 40vw;
    z-index: -1;
}

.header_title {
    text-transform: lowercase;
    font-family: PricedownRus;
    color: #ff96ff;
    font-size: 6em;
    text-shadow: -0.12em 0.12em 0 #333;
    z-index: 1;
    position: absolute;
    margin: 0;
    right: 0.25em;
    top: 0.25em;
    font-weight: 400;
    text-align: right;
    cursor: url('assets/mouse.png'), pointer;
}

.menu-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    width: 100%;
    padding: 0;
}

.menu-item {
    color: #ff96ff;
    text-shadow: 4px 3px black;
    font-family: 'PricedownRus', sans-serif;
    font-size: 3em;
    margin: 0.15em 0;
    cursor: url('assets/mouse.png'), pointer;
    position: relative;
    z-index: 2;
    text-decoration: none;
    text-align: center;
}

.text_hover {
    padding: 0;
    margin: 0;
    position: absolute;
    transform: scale(1.1, 1.3);
    transition: 0.1s ease-in-out;
    background: #188746;
    display: none;
    z-index: 1;
}

.easter-egg {
	position: absolute;
    width: 250px;
    height: auto;
    cursor: url('assets/mouse.png'), pointer;
    z-index: 10; /* Выше всех остальных элементов */
    transition: all 0.3s ease;
}

.easter-egg:hover, .easter-egg-2:hover {
    transform: scale(1.1); /* Небольшой эффект при наведении */
}

/* Скрываем <br> на ПК */
br.mobile-only {
    display: none;
}

/* Показываем <br> только на мобильных устройствах */
@media (max-width: 480px) {
    br.mobile-only {
        display: inline;
    }
}

/* Медиа-запросы для всех устройств, отсортированные от меньшего к большему */

/* 1. Очень маленькие экраны (например, iPhone 5/SE) */
@media (max-width: 320px) {
    .menu-item {
        font-size: 1.2em;
        margin: 0.1em 0;
        padding-top: 0.1em;
    }

    .header_logo {
        width: 200px;
        top: 10px;
    }

    .header_title {
        font-size: 3em;
        top: 35px;
    }
}

/* 2. Маленькие экраны (например, iPhone 6/7/8) */
@media (min-width: 321px) and (max-width: 375px) {
    .menu-item {
        font-size: 1.5em;
        margin: 0.15em 0;
        padding-top: 0.15em;
    }

    .header_logo {
        width: 250px;
        top: 15px;
    }

    .header_title {
        font-size: 4em;
        top: 100px;
    }
}

/* 3. Средние экраны (например, iPhone 6/7/8 Plus, Pixel 2 XL) */
@media (min-width: 376px) and (max-width: 414px) {
    .menu-item {
        font-size: 1.8em;
        margin: 0.2em 0;
        padding-top: 0.2em;
    }

    .header_logo {
        width: 300px;
        top: 20px;
    }

    .header_title {
        font-size: 5em;
        top: 40px;
    }
}

/* 4. Большие экраны (например, iPhone X/XS/11 Pro, Pixel 3 XL) */
@media (min-width: 415px) and (max-width: 480px) {
    .menu-item {
        font-size: 2em;
        margin: 0.25em 0;
        padding-top: 0.25em;
    }

    .header_logo {
        width: 350px;
        top: 15px;
    }

    .header_title {
        font-size: 6em;
        top: 60px;
    }
}

/* 5. Планшеты (например, iPad, iPad Mini) */
@media (min-width: 481px) and (max-width: 768px) {
    .menu-item {
        font-size: 2.5em;
        margin: 0.3em 0;
        padding-top: 0.3em;
    }

    .header_logo {
        width: 400px;
        top: 30px;
    }

    .header_title {
        font-size: 7em;
        top: 160px;
    }
}

/* 6. Большие планшеты (например, iPad Pro) */
@media (min-width: 769px) and (max-width: 1024px) {
    .menu-item {
        font-size: 3em;
        margin: 0.35em 0;
        padding-top: 0.35em;
    }

    .header_logo {
        width: 450px;
        top: 35px;
    }

    .header_title {
        font-size: 8em;
        top: 180px;
    }
}

/* 7. Маленькие ноутбуки и большие планшеты в ландшафтном режиме */
@media (min-width: 1025px) and (max-width: 1280px) {
    .menu-item {
        font-size: 3.5em;
        margin: 0.4em 0;
        padding-top: 0.4em;
    }

    .header_logo {
        width: 500px;
        top: 40px;
    }

    .header_title {
        font-size: 9em;
        top: 200px;
    }
}