html, body {
    background-color: black;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 20px;
    color: rgb(255, 255, 255);
}

.nav-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    z-index: 1000;
    top: 0;
}

.nav-item a.active {
    color: #4ade80;
}

.nav-item a:hover {
    color: #4ade80;
}

.nav-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    z-index:
     5; 
}
.nav-logo-text {
    font-size: 22px;
    font-weight: 600;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
}
.nav-logo-icon svg {
    width: 100%;
    height: 100%;
    stroke: #4ade80;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 30px;
}

.nav-link {
    display: block;
    padding: 10px 16px; 
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem; 
    font-weight: 500;
    transition: color 0.2s ease;
    border-radius: 4px;
}

.nav-link:hover {
    color: #4ade80;
}

.nav-auth {
    display: flex;
    align-items: center;
}

.nav-auth-link {
    margin-left: 10px;
    padding: 10px 12px; 
    font-size: 1.25rem; 
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-login {
    color: #4ade80;
    border: 1px solid #4ade80;
}

.nav-login:hover {
    background-color: rgba(74, 222, 128, 0.1);
}

.nav-signup {
    background-color: #4ade80;
    color: #000000;
    border: 1px solid #4ade80;
}

.nav-signup:hover {
    background-color: #22c55e;
    border-color: #22c55e;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1020;
}

.hamburger-lines {
    display: block;
    height: 24px;
    width: 30px;
    position: relative;
}

.hamburger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    background: #ffffff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-lines .line1 {
    top: 0;
}

.hamburger-lines .line2 {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-lines .line3 {
    bottom: 0;
}

.nav-toggle.active .line1 {
    transform: rotate(45deg);
    top: 11px;
    background-color: #4ade80;
}

.nav-toggle.active .line2 {
    opacity: 0;
}

.nav-toggle.active .line3 {
    transform: rotate(-45deg);
    bottom: 11px;
    background-color: #4ade80;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.show {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -580px; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 90px 30px 30px;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    width: 250px;
}

.mobile-menu.show {
    right: 0; 
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin: 10px 0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: calc(var(--item-index) * 0.05s);
}

.mobile-menu.show .mobile-nav-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-link {
    display: block;
    padding: 14px 0;  
    color: #ffffff;
    text-decoration: none;
    font-size: 20px; 
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: #4ade80;
}

@media (max-width: 1024px) {
    .nav-menu, .nav-auth {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
}

.logo {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding-left: 0.5rem;
}

.nav_links_right_sub {
    display: none;
}

.menu_container {
    display: none;
}

.icon_container {
    display: flex;
    gap: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    justify-content: center;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.icon_bg {
    background-color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    border: 1px solid gray;
}

.icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke:rgb(255, 255, 255);
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-item a {
    font-size: 1.25rem;
    color: #ffffff;
    text-decoration: none;
}

p {
    margin: 0;
}

.footer-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    margin-right: 10px;
}

.brand-logo {
    width: 32px;
    height: 32px;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
}

.brand-description {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #4ade80;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #4ade80;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mobile-menu-text {
    font-size: 20px;
    
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #ffffff;
    transition: all 0.2s ease;
    border-radius: 50%;
}

.social-link:hover {
    color: #4ade80;
}

.social-icon {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #a0a0a0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .copyright {
        margin-top: 10px;
    }
}

@media (min-width: 1025px) {
    .mobile-menu {
        display: none;
    }
}