/* Mobile Navigation */
.mobile-menu-toggle {
    font-size: 22px;
    cursor: pointer;
    z-index: 1001;
    background: linear-gradient(135deg, rgba(142, 255, 84, 0.2), rgba(142, 255, 84, 0.1));
    color: #8eff54;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 255, 84, 0.2);
}

.mobile-menu-toggle:hover {
    background: #8eff54;
    color: #121212;
    box-shadow: 0 0 15px rgba(142, 255, 84, 0.3);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
    max-width: 90%;
    margin: 0 auto;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 15px 0;
    position: relative;
}

.mobile-nav-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(142, 255, 84, 0.3), transparent);
}

.mobile-nav-close {
    font-size: 20px;
    cursor: pointer;
    color: #8eff54;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(142, 255, 84, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 255, 84, 0.2);
}

.mobile-nav-close:hover {
    background-color: #8eff54;
    color: #121212;
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.mobile-nav-links a {
    font-size: 20px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: 16px;
    background: rgba(25, 25, 25, 0.6);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #8eff54;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav-links a::after {
    content: '→';
    color: rgba(142, 255, 84, 0.6);
    font-weight: bold;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: white;
    background: rgba(35, 35, 35, 0.9);
    border-color: rgba(142, 255, 84, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-nav-links a:hover::before {
    opacity: 1;
}

.mobile-nav-links a:hover::after {
    color: #8eff54;
    transform: translateX(5px);
}

.mobile-nav-decoration {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0.3;
}

.mobile-nav-decoration span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8eff54;
}

.mobile-nav-decoration span:nth-child(2) {
    width: 20px;
    border-radius: 4px;
}