/* Фиксированная кнопка */
.fixed-btn {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background-color: #CF142B;
    border: none;
    border-top-right-radius: 1px;
    border-bottom-right-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;

}

.fixed-btn:hover {
    background-color: #e60019;
    transform: translateY(-50%) scale(1.05);
}

/* Полноэкранное меню */
.menu {
    position: fixed;
    inset: 0;
    background-color: #18181b;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.menu.open {
    transform: translateX(0);
}

/* Крестик */
.close-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 300;
    color: #CF142B;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-end;
    margin: 24px 24px 0 0;
    border-radius: 36px;
    background: #18181b;
    border: none;
}

.close-btn:hover {
    color: #CF142B;
    transform: rotate(90deg);
}
.close-btn:focus{
    outline: inherit;
}
/* Содержимое */
.menu-content {
    flex: 1;
    display: flex;
  /*  align-items: center;*/
    justify-content: center;
}

.menu-inner {
   /* text-align: center;*/
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.menu-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    color:#d4d4d8;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-nav a {
    color: #d4d4d8;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.menu-nav a:hover {
    color: #a5b4fc;
    transform: translateX(12px);
}

.menu-button {
    margin-top: 20px;
    padding: 16px 40px;
    font-size: 1.1rem;
    background-color: #4f46e5;
    color: white;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-button:hover {
    background-color: #6366f1;
    transform: scale(1.05);
}

.footer {
    padding: 32px;
    text-align: center;
    color: #71717a;
    font-size: 0.9rem;
}