.links-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nav-btn.active {
    color: #ffffff;
    border-bottom: 2px solid #05979be0;
    padding-bottom: 5px;
}

.links-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
}

.links-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.links-subtitle {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.links-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.link-btn {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #05979be0;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 18px;
}

.link-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.link-main {
    font-size: 16px;
    font-weight: 600;
}

.link-sub {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}
.mobile-tabbar {
    display: none;
}
@media (max-width: 768px) {
    .links-container {
        grid-template-columns: 1fr;
    }
    
    .links-title {
        font-size: 28px;
    }
    
    .links-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .container{
        margin-top: 30px;
    }
    .mobile-nav {
        display: flex;
        justify-content: center;
        margin-top: 10px;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .mobile-nav .nav-buttons {
        display: flex;
        gap: 50px;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-section {
        display: none;
    }
    
    .mobile-section.active {
        display: block;
    }
    
    footer {
        position: relative;
        margin-bottom: 60px;
    }
}