/* Хедер */
        header {
            background: var(--bg-header);
            padding: 15px 40px;
            box-shadow: 0 0 20px rgba(255, 94, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-light);
        }

        .header-menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Логотип */
        .wrap_logo {
            flex-shrink: 0;
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            color: var(--neon);
            text-decoration: none;
            text-shadow: 0 0 15px rgba(255, 94, 0, 0.7);
            transition: all 0.3s ease;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .logo:hover {
            color: var(--ink);
            text-shadow: 0 0 20px var(--neon), 0 0 40px var(--neon);
        }

        /* Меню */
        .menu {
            display: flex;
            gap: 35px;
            margin: 0 40px;
        }

        .menu a {
            color: var(--ink);
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
            position: relative;
        }

        .menu a:hover {
            color: var(--neon);
        }

        .menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--neon);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .menu a:hover::after {
            width: 80%;
        }

        /* Контакты */
        .contacts {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-right: 30px;
        }

        .contacts div {
            cursor: pointer;
            font-size: 15px;
            color: var(--ink);
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 94, 0, 0.1);
        }

        .contacts div:hover {
            color: var(--neon);
            background: rgba(255, 94, 0, 0.2);
            box-shadow: 0 0 15px rgba(255, 94, 0, 0.3);
        }

        /* Кнопка */
        .enter_wrapper {
            flex-shrink: 0;
        }

        .btn {
            font-size: 16px;
            cursor: pointer;
            background: linear-gradient(45deg, var(--neon), #ff8c00);
            border: none;
            border-radius: 12px;
            height: 45px;
            width: 160px;
            text-align: center;
            font-weight: bold;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(255, 94, 0, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px var(--neon), 0 0 40px rgba(255, 94, 0, 0.5);
            background: linear-gradient(45deg, #ff7733, var(--neon));
        }

        /* Всплывающее уведомление */
        .z-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--neon);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    font-size: 16px;
    font-weight: 500;
    z-index: 10000;
    pointer-events: none;
    max-width: 400px;
    word-wrap: break-word;
    text-align: center;
}

.z-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Адаптивность для toast */
@media (max-width: 768px) {
    .z-toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .z-toast {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 12px 20px;
        font-size: 14px;
    }
}