* {
    -webkit-tap-highlight-color: transparent;
}

.pixel-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
}

.pixel-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pixel-glass-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 95%;
    height: 100%;
    background: rgba(9, 19, 53, 0.76);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.pixel-mobile-overlay.active .pixel-glass-container {
    transform: translateX(0);
}

.pixel-menu-header {
    position: relative;
    padding: 20px;
    background: linear-gradient(180deg, #0a1540 0%, #091335 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pixel-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.pixel-header-logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.pixel-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pixel-close-button:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    transform: scale(1.05);
}

.pixel-close-button i {
    color: #94A3B8;
    font-size: 24px;
}

.pixel-close-button:hover i {
    color: #EF4444;
}

.pixel-back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pixel-back-button:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-2px);
}

.pixel-back-button i {
    color: #94A3B8;
    font-size: 24px;
}

.pixel-menu-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.pixel-menu-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pixel-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    padding: 8px 16px 20px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.pixel-menu-panel::-webkit-scrollbar {
    display: none;
}

.pixel-menu-panel.active {
    transform: translateX(0);
    opacity: 1;
}

.pixel-menu-panel.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.pixel-menu-main {
    position: relative;
}

.pixel-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pixel-submenu-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.pixel-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pixel-submenu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 8px 16px 20px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.pixel-submenu-panel::-webkit-scrollbar {
    display: none;
}

.pixel-submenu-panel.active {
    transform: translateX(0);
    opacity: 1;
}

.pixel-submenu-header {
    padding: 16px 4px;
    margin-bottom: 16px;
}

.pixel-submenu-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.pixel-submenu-breadcrumb {
    font-size: 13px;
    color: #64748B;
    font-weight: 400;
}

.pixel-menu-item {
    margin-bottom: 4px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInItem 0.4s forwards;
}

.pixel-menu-item:nth-child(1) { animation-delay: 0.05s; }
.pixel-menu-item:nth-child(2) { animation-delay: 0.1s; }
.pixel-menu-item:nth-child(3) { animation-delay: 0.15s; }
.pixel-menu-item:nth-child(4) { animation-delay: 0.2s; }
.pixel-menu-item:nth-child(5) { animation-delay: 0.25s; }
.pixel-menu-item:nth-child(6) { animation-delay: 0.3s; }
.pixel-menu-item:nth-child(7) { animation-delay: 0.35s; }
.pixel-menu-item:nth-child(8) { animation-delay: 0.4s; }

.pixel-submenu-item {
    margin-bottom: 4px;
    opacity: 0;
    transform: translateX(20px);
    animation: none;
}

.pixel-submenu-item.animated {
    animation: slideInFromRight 0.3s forwards;
}

@keyframes slideInItem {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pixel-menu-link {
    display: flex;
    align-items: center;
    padding: 12px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.pixel-submenu-item .pixel-menu-link {
    padding: 10px 12px;
}

.pixel-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    opacity: 0;
    transition: opacity 0.2s;
    border-radius: 12px;
}

.pixel-menu-link:hover::before,
.pixel-menu-link:active::before {
    opacity: 1;
}

.pixel-menu-link:hover {
    background: rgba(255, 255, 255, 0.03);
}

.pixel-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-shrink: 0;
}

.pixel-menu-link:hover .pixel-item-icon {
    transform: translateX(2px);
}

.pixel-item-icon i {
    color: #94A3B8;
    font-size: 24px;
}

.pixel-menu-link:hover .pixel-item-icon i {
    color: #E2E8F0;
}

.pixel-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pixel-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #E2E8F0;
    letter-spacing: -0.01em;
}

.pixel-submenu-item .pixel-item-title {
    font-size: 15px;
    font-weight: 500;
}

.pixel-item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748B;
    font-weight: 400;
    line-height: 1.4;
}

.pixel-item-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 8px;
}

.pixel-menu-link:hover .pixel-item-arrow {
    transform: translateX(4px);
}

.pixel-item-arrow i {
    color: #64748B;
    font-size: 20px;
}

.pixel-menu-footer {
    padding: 16px;
    background: #0a1540;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pixel-tab-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.pixel-tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pixel-tab-item span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #64748B;
    font-weight: 500;
}

.pixel-tab-item i {
    color: #64748B;
    font-size: 22px;
}

.pixel-tab-item.active {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    border-color: transparent;
}

.pixel-tab-item.active span {
    color: #FFFFFF;
    font-weight: 600;
}

.pixel-tab-item.active i {
    color: #FFFFFF;
}

.pixel-tab-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.pixel-tab-item:hover:not(.active) span {
    color: #94A3B8;
}

.pixel-tab-item:hover:not(.active) i {
    color: #94A3B8;
}

.ripple-effect {
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.pixel-menu-divider {
    height: 1px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 20%,
    rgba(255, 255, 255, 0.05) 80%,
    transparent 100%);
    margin: 16px 0;
}

@media (max-width: 768px) {
    .pixel-mobile-overlay {
        display: block;
    }
}

@media (min-width: 769px) {
    .pixel-mobile-overlay {
        display: none !important;
    }
}

@media (max-width: 400px) {
    .pixel-glass-container {
        width: 100%;
    }

    .pixel-item-icon {
        width: 40px;
        height: 40px;
    }

    .pixel-item-title {
        font-size: 15px;
    }

    .pixel-menu-link {
        padding: 10px;
    }
}

@media (max-height: 600px) {
    .pixel-menu-header {
        padding: 12px 16px;
    }

    .pixel-header-content {
        margin-top: 30px;
    }

    .pixel-header-logo {
        font-size: 24px;
    }
}

@media (min-width: 480px) {
    .pixel-glass-container {
        max-width: 400px;
        box-shadow: 2px 0 40px rgba(0, 0, 0, 0.5);
    }
}

.pixel-glass-container .fa-solid {
    color: white;
}

.pixel-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0px;
    max-width: 100px;
    margin: auto;
}
.zrf-animated-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    background: #091335;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.zrf-animated-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.zrf-animated-toggle:hover::before {
    width: 100px;
    height: 100px;
}

.zrf-animated-toggle:hover {
    transform: scale(1.05);
    background: #0a1540;
    box-shadow: 0 8px 25px rgba(9, 19, 53, 0.4);
}

.zrf-animated-toggle:active {
    transform: scale(0.95);
}

.zrf-toggle-box {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.zrf-toggle-line {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    left: 0;
}

.zrf-toggle-line:nth-child(1) {
    top: 0;
}

.zrf-toggle-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.zrf-toggle-line:nth-child(3) {
    bottom: 0;
}

.zrf-animated-toggle.menu-open .zrf-toggle-line:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    transform-origin: center;
    margin-top: -1.5px;
}

.zrf-animated-toggle.menu-open .zrf-toggle-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.zrf-animated-toggle.menu-open .zrf-toggle-line:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    transform-origin: center;
    margin-bottom: -1.5px;
}

.zrf-animated-toggle.menu-open {
    background: #ef4444;
    animation: pulse 0.5s ease;
}

.zrf-animated-toggle.menu-open:hover {
    background: #dc2626;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}
.zrf-menu-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 999998;
    border: none !important;
    background: none !important;
}

.zrf-menu-toggle-box {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    margin-top: -17px;
    margin-left: -17px;
}

.zrf-menu-toggle-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.zrf-menu-toggle-inner,
.zrf-menu-toggle-inner::before,
.zrf-menu-toggle-inner::after {
    width: 34px;
    height: 3px;
    background-color: #091335;
    border-radius: 3px;
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    opacity 0.4s ease;
}

.zrf-menu-toggle-inner::before,
.zrf-menu-toggle-inner::after {
    content: "";
    display: block;
}

.zrf-menu-toggle-inner::before {
    top: -10px;
}

.zrf-menu-toggle-inner::after {
    bottom: -10px;
}

.zrf-menu-toggle.is-active .zrf-menu-toggle-inner {
    transform: rotate(45deg);
}

.zrf-menu-toggle.is-active .zrf-menu-toggle-inner::before {
    top: 0;
    opacity: 0;
}

.zrf-menu-toggle.is-active .zrf-menu-toggle-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

.zrf-menu-toggle:hover .zrf-menu-toggle-inner,
.zrf-menu-toggle:hover .zrf-menu-toggle-inner::before,
.zrf-menu-toggle:hover .zrf-menu-toggle-inner::after {
    background-color: #0a1540;
}

.zrf-menu-toggle.is-active:hover .zrf-menu-toggle-inner,
.zrf-menu-toggle.is-active:hover .zrf-menu-toggle-inner::before,
.zrf-menu-toggle.is-active:hover .zrf-menu-toggle-inner::after {
    background-color: #ef4444;
}

@media (min-width: 769px) {
    .zrf-menu-toggle {
        display: none;
    }
}