.fullscreen-menu-btn-c59f99a1 {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 10px;
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease, fill 0.3s ease;
}

.fullscreen-menu-btn-c59f99a1 svg {
    transition: fill 0.3s ease;
}

.fullscreen-menu-overlay-c59f99a1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.95);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-menu-overlay-c59f99a1.is-active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu-close-c59f99a1 {
    position: fixed;
    top: 30px;
    right: 30px;
    cursor: pointer;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 1000000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, background 0.2s ease;
}

.fullscreen-menu-close-c59f99a1:hover {
    transform: scale(1.1);
    background: #f5f5f5;
}

.fullscreen-menu-nav-c59f99a1 {
    z-index: 5;
    position: relative;
    width: 100%;
}

.fullscreen-menu-nav-c59f99a1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.fullscreen-menu-nav-c59f99a1 li {
    margin: 20px 0;
}

.fullscreen-menu-nav-c59f99a1 a {
    text-decoration: none;
    font-size: 28px;
    color: #333;
    transition: color 0.2s, opacity 0.2s;
    font-weight: 500;
}

.fullscreen-menu-nav-c59f99a1 a:hover {
    opacity: 0.7;
}